From 066544444959836a68463a6886a0376f4d92d76c Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Tue, 4 May 2021 16:14:05 +0500 Subject: [PATCH 01/44] docs: add schema for token metadata --- docs/api/tokens/fungible-token.schema.json | 25 + .../api/tokens/non-fungible-token.schema.json | 25 + docs/generated.d.ts | 40 + docs/index.d.ts | 2891 +++++++++++++++++ 4 files changed, 2981 insertions(+) create mode 100644 docs/api/tokens/fungible-token.schema.json create mode 100644 docs/api/tokens/non-fungible-token.schema.json diff --git a/docs/api/tokens/fungible-token.schema.json b/docs/api/tokens/fungible-token.schema.json new file mode 100644 index 0000000000..ce8a5270bc --- /dev/null +++ b/docs/api/tokens/fungible-token.schema.json @@ -0,0 +1,25 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "$id": "fungible-token-metadata", + "title": "FTMetadataResponse", + "type": "object", + "required": ["name","description", "image_uri", "image_canonical_uri" ], + "properties": { + "name": { + "type": "string", + "description": "Identifies the asset to which this token represents" + }, + "description": { + "type": "string", + "description": "Describes the asset to which this token represents" + }, + "image_uri": { + "type": "string", + "description": "A URI pointing to a resource with mime type image/* representing the asset to which this token represents. The API may provide a URI to a cached resource, dependending on configuration. Otherwise, this can be the same value as the canonical image URI." + }, + "image_canonical_uri": { + "type": "string", + "description": "The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive." + } + } +} diff --git a/docs/api/tokens/non-fungible-token.schema.json b/docs/api/tokens/non-fungible-token.schema.json new file mode 100644 index 0000000000..da48cb88c2 --- /dev/null +++ b/docs/api/tokens/non-fungible-token.schema.json @@ -0,0 +1,25 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema", + "$id": "non-fungible-token-metadata", + "title": "NFTMetadataResponse", + "type": "object", + "required": ["name","description", "image_uri", "image_canonical_uri" ], + "properties": { + "name": { + "type": "string", + "description": "Identifies the asset to which this token represents" + }, + "description": { + "type": "string", + "description": "Describes the asset to which this token represents" + }, + "image_uri": { + "type": "string", + "description": "A URI pointing to a resource with mime type image/* representing the asset to which this token represents. The API may provide a URI to a cached resource, dependending on configuration. Otherwise, this can be the same value as the canonical image URI." + }, + "image_canonical_uri": { + "type": "string", + "description": "The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive." + } + } +} diff --git a/docs/generated.d.ts b/docs/generated.d.ts index 11b244d171..b00b018ca2 100644 --- a/docs/generated.d.ts +++ b/docs/generated.d.ts @@ -77,6 +77,8 @@ export type SchemaMergeRootStub = | RosettaNetworkOptionsResponse | RosettaStatusRequest | RosettaNetworkStatusResponse + | FTMetadataResponse + | NFTMetadataResponse | MempoolTransactionListResponse | GetRawTransactionResult | TransactionResults @@ -2670,6 +2672,44 @@ export interface RosettaPeers { }; [k: string]: unknown | undefined; } +export interface FTMetadataResponse { + /** + * Identifies the asset to which this token represents + */ + name: string; + /** + * Describes the asset to which this token represents + */ + description: string; + /** + * A URI pointing to a resource with mime type image/* representing the asset to which this token represents. The API may provide a URI to a cached resource, dependending on configuration. Otherwise, this can be the same value as the canonical image URI. + */ + image_uri: string; + /** + * The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive. + */ + image_canonical_uri: string; + [k: string]: unknown | undefined; +} +export interface NFTMetadataResponse { + /** + * Identifies the asset to which this token represents + */ + name: string; + /** + * Describes the asset to which this token represents + */ + description: string; + /** + * A URI pointing to a resource with mime type image/* representing the asset to which this token represents. The API may provide a URI to a cached resource, dependending on configuration. Otherwise, this can be the same value as the canonical image URI. + */ + image_uri: string; + /** + * The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive. + */ + image_canonical_uri: string; + [k: string]: unknown | undefined; +} /** * GET request that returns transactions */ diff --git a/docs/index.d.ts b/docs/index.d.ts index e30278bad6..39cc83ba68 100644 --- a/docs/index.d.ts +++ b/docs/index.d.ts @@ -1,2 +1,2893 @@ +<<<<<<< HEAD export * from './generated'; export * from './socket-io'; +======= +/** + This file is generated automatically. **DO NOT MODIFY THIS FILE DIRECTLY** + Updates are made by editing the JSON Schema files in the 'docs/' directory, + then running the 'yarn build' script. +*/ + +/** + * GET request that returns address assets + */ +export interface AddressAssetsListResponse { + limit: number; + offset: number; + total: number; + results: TransactionEvent[]; +} + +/** + * GET request that returns address balances + */ +export interface AddressBalanceResponse { + /** + * StxBalance + */ + stx: { + balance: string; + total_sent: string; + total_received: string; + total_fees_sent: string; + total_miner_rewards_received: string; + /** + * The transaction where the lock event occurred. Empty if no tokens are locked. + */ + lock_tx_id: string; + /** + * The amount of locked STX, as string quoted micro-STX. Zero if no tokens are locked. + */ + locked: string; + /** + * The STX chain block height of when the lock event occurred. Zero if no tokens are locked. + */ + lock_height: number; + /** + * The burnchain block height of when the lock event occurred. Zero if no tokens are locked. + */ + burnchain_lock_height: number; + /** + * The burnchain block height of when the tokens unlock. Zero if no tokens are locked. + */ + burnchain_unlock_height: number; + }; + fungible_tokens: { + /** + * FtBalance + * + * This interface was referenced by `undefined`'s JSON-Schema definition + * via the `patternProperty` "*". + */ + [k: string]: { + balance: string; + total_sent: string; + total_received: string; + }; + }; + non_fungible_tokens: { + /** + * NftBalance + * + * This interface was referenced by `undefined`'s JSON-Schema definition + * via the `patternProperty` "*". + */ + [k: string]: { + count: string; + total_sent: string; + total_received: string; + }; + }; + token_offering_locked?: AddressTokenOfferingLocked; +} + +export interface AddressNftListResponse { + limit: number; + offset: number; + total: number; + nft_events: NftEvent[]; +} + +/** + * GET request that returns address balances + */ +export interface AddressStxBalanceResponse { + balance: string; + total_sent: string; + total_received: string; + total_fees_sent: string; + total_miner_rewards_received: string; + /** + * The transaction where the lock event occurred. Empty if no tokens are locked. + */ + lock_tx_id: string; + /** + * The amount of locked STX, as string quoted micro-STX. Zero if no tokens are locked. + */ + locked: string; + /** + * The STX chain block height of when the lock event occurred. Zero if no tokens are locked. + */ + lock_height: number; + /** + * The burnchain block height of when the lock event occurred. Zero if no tokens are locked. + */ + burnchain_lock_height: number; + /** + * The burnchain block height of when the tokens unlock. Zero if no tokens are locked. + */ + burnchain_unlock_height: number; + token_offering_locked?: AddressTokenOfferingLocked; +} + +/** + * GET request that returns a list of inbound STX transfers with a memo + */ +export interface AddressStxInboundListResponse { + limit: number; + offset: number; + total: number; + results: InboundStxTransfer[]; +} + +/** + * GET request that returns account transactions + */ +export interface AddressTransactionsWithTransfersListResponse { + limit: number; + offset: number; + total: number; + results: AddressTransactionWithTransfers[]; +} + +/** + * GET request that returns account transactions + */ +export interface AddressTransactionsListResponse { + limit: number; + offset: number; + total: number; + results: (MempoolTransaction | Transaction)[]; +} + +/** + * GET request that returns blocks + */ +export interface BlockListResponse { + /** + * The number of blocks to return + */ + limit: number; + /** + * The number to blocks to skip (starting at `0`) + */ + offset: number; + /** + * The number of blocks available + */ + total: number; + results: Block[]; +} + +/** + * Error + */ +export interface BnsError { + error?: string; +} + +/** + * Fetch a user’s raw zone file. This only works for RFC-compliant zone files. This method returns an error for names that have non-standard zone files. + */ +export type BnsFetchFileZoneResponse = + | { + zonefile?: string; + [k: string]: unknown | undefined; + } + | { + error?: string; + [k: string]: unknown | undefined; + }; + +/** + * Fetch a list of all names known to the node. + */ +export type BnsGetAllNamesResponse = string[]; + +/** + * Fetch a list of all subdomains known to the node. + */ +export type BnsGetAllSubdomainsResponse = string[]; + +/** + * Fetches the historical zonefile specified by the username and zone hash. + */ +export type BnsFetchHistoricalZoneFileResponse = + | { + zonefile?: string; + [k: string]: unknown | undefined; + } + | { + error?: string; + [k: string]: unknown | undefined; + }; + +/** + * Get a history of all blockchain records of a registered name. + */ +export interface BnsGetNameHistoryResponse { + /** + * This interface was referenced by `BnsGetNameHistoryResponse`'s JSON-Schema definition + * via the `patternProperty` "^[0-9]+". + */ + [k: string]: { + address?: string; + base?: number; + buckets?: number[] | null; + block_number?: number; + coeff?: number | null; + consensus_hash?: string | null; + domain?: string; + fee?: number; + first_registered?: number; + history_snapshot?: boolean; + importer?: string | null; + importer_address?: string | null; + last_renewed?: number; + name?: string; + op?: string; + op_fee?: number; + opcode?: string; + revoked?: boolean; + sender?: string; + sender_pubkey?: string | null; + sequence?: number; + recipient?: string | null; + recipient_address?: string | null; + recipient_pubkey?: string | null; + txid: string; + value_hash?: string | null; + vtxindex: number; + [k: string]: unknown | undefined; + }[]; +} + +/** + * Get name details + */ +export interface BnsGetNameInfoResponse { + address: string; + blockchain: string; + expire_block?: number; + grace_period?: number; + last_txid: string; + resolver?: string; + status: string; + zonefile: string; + zonefile_hash: string; +} + +/** + * Fetch price for name. + */ +export interface BnsGetNamePriceResponse { + units: string; + amount: string; +} + +/** + * Retrieves a list of names owned by the address provided. + */ +export interface BnsNamesOwnByAddressResponse { + names?: string[]; +} + +/** + * Fetches the list of subdomain operations processed by a given transaction. The returned array includes subdomain operations that have not yet been accepted as part of any subdomain’s history (checkable via the accepted field). If the given transaction ID does not correspond to a Blockstack transaction that introduced new subdomain operations, and empty array will be returned. + */ +export type BnsGetSubdomainAtTx = { + accepted?: number; + block_height?: number; + domain?: string; + fully_qualified_subdomain?: string; + missing?: string; + owner?: string; + parent_zonefile_hash?: string; + parent_zonefile_index?: number; + resolver?: string; + sequence?: number; + signature?: string; + txid?: string; + zonefile_hash?: string; + zonefile_offset?: number; + [k: string]: unknown | undefined; +}[]; + +/** + * Fetch a list of names from the namespace. + */ +export type BnsGetAllNamespacesNamesResponse = string[]; + +/** + * Fetch a list of all namespaces known to the node. + */ +export interface BnsGetAllNamespacesResponse { + namespaces: string[]; +} + +/** + * Fetch price for namespace. + */ +export interface BnsGetNamespacePriceResponse { + units: string; + amount: string; +} + +/** + * GET request that returns reward slot holders + */ +export interface BurnchainRewardSlotHolderListResponse { + /** + * The number of items to return + */ + limit: number; + /** + * The number of items to skip (starting at `0`) + */ + offset: number; + /** + * Total number of available items + */ + total: number; + results: BurnchainRewardSlotHolder[]; +} + +/** + * GET request that returns blocks + */ +export interface BurnchainRewardListResponse { + /** + * The number of burnchain rewards to return + */ + limit: number; + /** + * The number to burnchain rewards to skip (starting at `0`) + */ + offset: number; + results: BurnchainReward[]; +} + +/** + * GET request to get contract source + */ +export interface ReadOnlyFunctionSuccessResponse { + okay: boolean; + result?: string; + cause?: string; +} + +/** + * GET request for account data + */ +export interface AccountDataResponse { + balance: string; + locked: string; + unlock_height: number; + nonce: number; + balance_proof: string; + nonce_proof: string; +} + +/** + * Response of get data map entry request + */ +export interface MapEntryResponse { + /** + * Hex-encoded string of clarity value. It is always an optional tuple. + */ + data: string; + /** + * Hex-encoded string of the MARF proof for the data + */ + proof?: string; +} + +/** + * GET request to get contract interface + */ +export interface ContractInterfaceResponse { + /** + * List of defined methods + */ + functions: { + [k: string]: unknown | undefined; + }[]; + /** + * List of defined variables + */ + variables: { + [k: string]: unknown | undefined; + }[]; + /** + * List of defined data-maps + */ + maps: { + [k: string]: unknown | undefined; + }[]; + /** + * List of fungible tokens in the contract + */ + fungible_tokens: { + [k: string]: unknown | undefined; + }[]; + /** + * List of non-fungible tokens in the contract + */ + non_fungible_tokens: { + [k: string]: unknown | undefined; + }[]; +} + +/** + * GET request to get contract source + */ +export interface ContractSourceResponse { + source: string; + publish_height: number; + proof: string; +} + +/** + * GET fee estimates + */ +export type CoreNodeFeeResponse = string; + +/** + * GET request that core node information + */ +export interface CoreNodeInfoResponse { + /** + * identifies the version number for the networking communication, this should not change while a node is running, and will only change if there's an upgrade + */ + peer_version: number; + /** + * is a hash used to identify the burnchain view for a node. it incorporates bitcoin chain information and PoX information. nodes that disagree on this value will appear to each other as forks. this value will change after every block + */ + pox_consensus: string; + /** + * latest bitcoin chain height + */ + burn_block_height: number; + /** + * same as burn_consensus, but evaluated at stable_burn_block_height + */ + stable_pox_consensus: string; + /** + * leftover from stacks 1.0, basically always burn_block_height - 1 + */ + stable_burn_block_height: number; + /** + * is a version descriptor + */ + server_version: string; + /** + * is similar to peer_version and will be used to differentiate between different testnets. this value will be different between mainnet and testnet. once launched, this value will not change + */ + network_id: number; + /** + * same as network_id, but for bitcoin + */ + parent_network_id: number; + /** + * the latest Stacks chain height. Stacks forks can occur independent of the Bitcoin chain, that height doesn't increase 1-to-1 with the Bitcoin height + */ + stacks_tip_height: number; + /** + * the best known block hash for the Stack chain (not including any pending microblocks) + */ + stacks_tip: string; + /** + * the burn chain (i.e., bitcoin) consensus hash at the time that stacks_tip was mined + */ + stacks_tip_consensus_hash: string; + /** + * the latest microblock hash if any microblocks were processed. if no microblock has been processed for the current block, a 000.., hex array is returned + */ + unanchored_tip: string; + /** + * the block height at which the testnet network will be reset. not applicable for mainnet + */ + exit_at_block_height: number; +} + +/** + * Get Proof of Transfer (PoX) information + */ +export interface CoreNodePoxResponse { + contract_id: string; + first_burnchain_block_height: number; + min_amount_ustx: number; + registration_window_length: number; + rejection_fraction: number; + reward_cycle_id: number; + reward_cycle_length: number; + rejection_votes_left_required: number; + total_liquid_supply_ustx: number; +} + +/** + * POST request that runs the faucet + */ +export interface RunFaucetResponse { + /** + * Indicates if the faucet call was successful + */ + success: boolean; + /** + * The transaction ID for the faucet call + */ + txId?: string; + /** + * Raw transaction in hex string representation + */ + txRaw?: string; +} + +/** + * GET request that target block time for a given network + */ +export interface NetworkBlockTimeResponse { + target_block_time: number; +} + +/** + * GET request that returns network target block times + */ +export interface NetworkBlockTimesResponse { + /** + * TargetBlockTime + */ + mainnet: { + target_block_time: number; + }; + /** + * TargetBlockTime + */ + testnet: { + target_block_time: number; + }; +} + +/** + * GET request that returns network target block times + */ +export type GetStxCirculatingSupplyPlainResponse = string; + +/** + * GET request that returns network target block times + */ +export interface GetStxSupplyLegacyFormatResponse { + /** + * String quoted decimal number of the percentage of STX that have unlocked + */ + unlockedPercent: string; + /** + * String quoted decimal number of the total possible number of STX + */ + totalStacks: string; + /** + * Same as `totalStacks` but formatted with comma thousands separators + */ + totalStacksFormatted: string; + /** + * String quoted decimal number of the STX that have been mined or unlocked + */ + unlockedSupply: string; + /** + * Same as `unlockedSupply` but formatted with comma thousands separators + */ + unlockedSupplyFormatted: string; + /** + * The block height at which this information was queried + */ + blockHeight: string; +} + +/** + * GET request that returns network target block times + */ +export type GetStxTotalSupplyPlainResponse = string; + +/** + * GET request that returns network target block times + */ +export interface GetStxSupplyResponse { + /** + * String quoted decimal number of the percentage of STX that have unlocked + */ + unlocked_percent: string; + /** + * String quoted decimal number of the total possible number of STX + */ + total_stx: string; + /** + * String quoted decimal number of the STX that have been mined or unlocked + */ + unlocked_stx: string; + /** + * The block height at which this information was queried + */ + block_height: number; +} + +/** + * An AccountBalanceRequest is utilized to make a balance request on the /account/balance endpoint. If the block_identifier is populated, a historical balance query should be performed. + */ +export interface RosettaAccountBalanceRequest { + network_identifier: NetworkIdentifier; + account_identifier: RosettaAccount; + block_identifier?: RosettaPartialBlockIdentifier; +} + +/** + * An AccountBalanceResponse is returned on the /account/balance endpoint. If an account has a balance for each AccountIdentifier describing it (ex: an ERC-20 token balance on a few smart contracts), an account balance request must be made with each AccountIdentifier. + */ +export interface RosettaAccountBalanceResponse { + block_identifier: RosettaBlockIdentifier; + /** + * A single account balance may have multiple currencies + */ + balances: RosettaAmount[]; + /** + * If a blockchain is UTXO-based, all unspent Coins owned by an account_identifier should be returned alongside the balance. It is highly recommended to populate this field so that users of the Rosetta API implementation don't need to maintain their own indexer to track their UTXOs. + */ + coins?: RosettaCoin[]; + /** + * Account-based blockchains that utilize a nonce or sequence number should include that number in the metadata. This number could be unique to the identifier or global across the account address. + */ + metadata?: { + sequence_number: number; + [k: string]: unknown | undefined; + }; +} + +/** + * A BlockRequest is utilized to make a block request on the /block endpoint. + */ +export interface RosettaBlockRequest { + network_identifier: NetworkIdentifier; + block_identifier: RosettaPartialBlockIdentifier; +} + +/** + * A BlockResponse includes a fully-populated block or a partially-populated block with a list of other transactions to fetch (other_transactions). As a result of the consensus algorithm of some blockchains, blocks can be omitted (i.e. certain block indexes can be skipped). If a query for one of these omitted indexes is made, the response should not include a Block object. It is VERY important to note that blocks MUST still form a canonical, connected chain of blocks where each block has a unique index. In other words, the PartialBlockIdentifier of a block after an omitted block should reference the last non-omitted block. + */ +export interface RosettaBlockResponse { + block?: RosettaBlock; + /** + * Some blockchains may require additional transactions to be fetched that weren't returned in the block response (ex: block only returns transaction hashes). For blockchains with a lot of transactions in each block, this can be very useful as consumers can concurrently fetch all transactions returned. + */ + other_transactions?: OtherTransactionIdentifier[]; +} + +/** + * A BlockTransactionRequest is used to fetch a Transaction included in a block that is not returned in a BlockResponse. + */ +export interface RosettaBlockTransactionRequest { + network_identifier: NetworkIdentifier; + block_identifier: RosettaBlockIdentifier; + transaction_identifier: TransactionIdentifier; +} + +/** + * A BlockTransactionResponse contains information about a block transaction. + */ +export interface RosettaBlockTransactionResponse { + transaction: RosettaTransaction; +} + +/** + * RosettaConstructionCombineRequest is the input to the /construction/combine endpoint. It contains the unsigned transaction blob returned by /construction/payloads and all required signatures to create a network transaction. + */ +export interface RosettaConstructionCombineRequest { + network_identifier: NetworkIdentifier; + unsigned_transaction: string; + signatures: RosettaSignature[]; +} + +/** + * RosettaConstructionCombineResponse is returned by /construction/combine. The network payload will be sent directly to the construction/submit endpoint. + */ +export interface RosettaConstructionCombineResponse { + /** + * Signed transaction bytes in hex + */ + signed_transaction: string; +} + +/** + * Network is provided in the request because some blockchains have different address formats for different networks + */ +export interface RosettaConstructionDeriveRequest { + network_identifier: NetworkIdentifier; + public_key: RosettaPublicKey; + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * ConstructionDeriveResponse is returned by the /construction/derive endpoint. + */ +export interface RosettaConstructionDeriveResponse { + /** + * [DEPRECATED by account_identifier in v1.4.4] Address in network-specific format. + */ + address?: string; + account_identifier?: RosettaAccountIdentifier; + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * TransactionHash returns the network-specific transaction hash for a signed transaction. + */ +export interface RosettaConstructionHashRequest { + network_identifier: NetworkIdentifier; + /** + * Signed transaction + */ + signed_transaction: string; +} + +/** + * TransactionIdentifier contains the transaction_identifier of a transaction that was submitted to either /construction/hash or /construction/submit. + */ +export interface RosettaConstructionHashResponse { + transaction_identifier: TransactionIdentifier; + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * A ConstructionMetadataRequest is utilized to get information required to construct a transaction. The Options object used to specify which metadata to return is left purposely unstructured to allow flexibility for implementers. Optionally, the request can also include an array of PublicKeys associated with the AccountIdentifiers returned in ConstructionPreprocessResponse. + */ +export interface RosettaConstructionMetadataRequest { + network_identifier: NetworkIdentifier; + options: RosettaOptions; + public_keys?: RosettaPublicKey[]; +} + +/** + * The ConstructionMetadataResponse returns network-specific metadata used for transaction construction. Optionally, the implementer can return the suggested fee associated with the transaction being constructed. The caller may use this info to adjust the intent of the transaction or to create a transaction with a different account that can pay the suggested fee. Suggested fee is an array in case fee payment must occur in multiple currencies. + */ +export interface RosettaConstructionMetadataResponse { + metadata: { + account_sequence?: number; + recent_block_hash?: string; + [k: string]: unknown | undefined; + }; + suggested_fee?: RosettaAmount[]; +} + +/** + * Parse is called on both unsigned and signed transactions to understand the intent of the formulated transaction. This is run as a sanity check before signing (after /construction/payloads) and before broadcast (after /construction/combine). + */ +export interface RosettaConstructionParseRequest { + network_identifier: NetworkIdentifier; + /** + * Signed is a boolean indicating whether the transaction is signed. + */ + signed: boolean; + /** + * This must be either the unsigned transaction blob returned by /construction/payloads or the signed transaction blob returned by /construction/combine. + */ + transaction: string; +} + +/** + * RosettaConstructionParseResponse contains an array of operations that occur in a transaction blob. This should match the array of operations provided to /construction/preprocess and /construction/payloads. + */ +export interface RosettaConstructionParseResponse { + operations: RosettaOperation[]; + /** + * [DEPRECATED by account_identifier_signers in v1.4.4] All signers (addresses) of a particular transaction. If the transaction is unsigned, it should be empty. + */ + signers?: string[]; + account_identifier_signers?: RosettaAccountIdentifier[]; + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * ConstructionPayloadsRequest is the request to /construction/payloads. It contains the network, a slice of operations, and arbitrary metadata that was returned by the call to /construction/metadata. Optionally, the request can also include an array of PublicKeys associated with the AccountIdentifiers returned in ConstructionPreprocessResponse. + */ +export interface RosettaConstructionPayloadsRequest { + network_identifier: NetworkIdentifier; + operations: RosettaOperation[]; + public_keys?: RosettaPublicKey[]; + metadata?: { + account_sequence?: number; + recent_block_hash?: string; + [k: string]: unknown | undefined; + }; +} + +/** + * RosettaConstructionPayloadResponse is returned by /construction/payloads. It contains an unsigned transaction blob (that is usually needed to construct the a network transaction from a collection of signatures) and an array of payloads that must be signed by the caller. + */ +export interface RosettaConstructionPayloadResponse { + /** + * This is an unsigned transaction blob (that is usually needed to construct the a network transaction from a collection of signatures) + */ + unsigned_transaction: string; + /** + * An array of payloads that must be signed by the caller + */ + payloads: SigningPayload[]; +} + +/** + * ConstructionPreprocessRequest is passed to the /construction/preprocess endpoint so that a Rosetta implementation can determine which metadata it needs to request for construction + */ +export interface RosettaConstructionPreprocessRequest { + network_identifier: NetworkIdentifier; + operations: RosettaOperation[]; + metadata?: { + [k: string]: unknown | undefined; + }; + max_fee?: RosettaMaxFeeAmount[]; + /** + * The caller can also provide a suggested fee multiplier to indicate that the suggested fee should be scaled. This may be used to set higher fees for urgent transactions or to pay lower fees when there is less urgency. It is assumed that providing a very low multiplier (like 0.0001) will never lead to a transaction being created with a fee less than the minimum network fee (if applicable). In the case that the caller provides both a max fee and a suggested fee multiplier, the max fee will set an upper bound on the suggested fee (regardless of the multiplier provided). + */ + suggested_fee_multiplier?: number; +} + +/** + * RosettaConstructionPreprocessResponse contains options that will be sent unmodified to /construction/metadata. If it is not necessary to make a request to /construction/metadata, options should be omitted. Some blockchains require the PublicKey of particular AccountIdentifiers to construct a valid transaction. To fetch these PublicKeys, populate required_public_keys with the AccountIdentifiers associated with the desired PublicKeys. If it is not necessary to retrieve any PublicKeys for construction, required_public_keys should be omitted. + */ +export interface RosettaConstructionPreprocessResponse { + options?: RosettaOptions; + required_public_keys?: RosettaAccount[]; +} + +/** + * Submit the transaction in blockchain + */ +export interface RosettaConstructionSubmitRequest { + network_identifier: NetworkIdentifier; + /** + * Signed transaction + */ + signed_transaction: string; +} + +/** + * TransactionIdentifier contains the transaction_identifier of a transaction that was submitted to either /construction/submit. + */ +export interface RosettaConstructionSubmitResponse { + transaction_identifier: TransactionIdentifier; + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * Get all Transaction Identifiers in the mempool + */ +export interface RosettaMempoolRequest { + network_identifier: NetworkIdentifier; + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * A MempoolResponse contains all transaction identifiers in the mempool for a particular network_identifier. + */ +export interface RosettaMempoolResponse { + transaction_identifiers: TransactionIdentifier[]; + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * A MempoolTransactionRequest is utilized to retrieve a transaction from the mempool. + */ +export interface RosettaMempoolTransactionRequest { + network_identifier: NetworkIdentifier; + transaction_identifier: TransactionIdentifier; +} + +/** + * A MempoolTransactionResponse contains an estimate of a mempool transaction. It may not be possible to know the full impact of a transaction in the mempool (ex: fee paid). + */ +export interface RosettaMempoolTransactionResponse { + transaction: RosettaTransaction; + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * This endpoint returns a list of NetworkIdentifiers that the Rosetta server supports. + */ +export interface RosettaNetworkListRequest { + /** + * A MetadataRequest is utilized in any request where the only argument is optional metadata. + */ + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * A NetworkListResponse contains all NetworkIdentifiers that the node can serve information for. + */ +export interface RosettaNetworkListResponse { + /** + * The network_identifier specifies which network a particular object is associated with. + */ + network_identifiers: NetworkIdentifier[]; +} + +/** + * This endpoint returns the version information and allowed network-specific types for a NetworkIdentifier. Any NetworkIdentifier returned by /network/list should be accessible here. Because options are retrievable in the context of a NetworkIdentifier, it is possible to define unique options for each network. + */ +export interface RosettaOptionsRequest { + network_identifier: NetworkIdentifier; + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * NetworkOptionsResponse contains information about the versioning of the node and the allowed operation statuses, operation types, and errors. + */ +export interface RosettaNetworkOptionsResponse { + /** + * The Version object is utilized to inform the client of the versions of different components of the Rosetta implementation. + */ + version: { + /** + * The rosetta_version is the version of the Rosetta interface the implementation adheres to. This can be useful for clients looking to reliably parse responses. + */ + rosetta_version: string; + /** + * The node_version is the canonical version of the node runtime. This can help clients manage deployments. + */ + node_version: string; + /** + * When a middleware server is used to adhere to the Rosetta interface, it should return its version here. This can help clients manage deployments. + */ + middleware_version?: string; + /** + * Any other information that may be useful about versioning of dependent services should be returned here. + */ + metadata?: { + [k: string]: unknown | undefined; + }; + [k: string]: unknown | undefined; + }; + /** + * Allow specifies supported Operation status, Operation types, and all possible error statuses. This Allow object is used by clients to validate the correctness of a Rosetta Server implementation. It is expected that these clients will error if they receive some response that contains any of the above information that is not specified here. + */ + allow: { + /** + * All Operation.Status this implementation supports. Any status that is returned during parsing that is not listed here will cause client validation to error. + */ + operation_statuses: RosettaOperationStatus[]; + /** + * All Operation.Type this implementation supports. Any type that is returned during parsing that is not listed here will cause client validation to error. + */ + operation_types: string[]; + /** + * All Errors that this implementation could return. Any error that is returned during parsing that is not listed here will cause client validation to error. + */ + errors: RosettaError[]; + /** + * Any Rosetta implementation that supports querying the balance of an account at any height in the past should set this to true. + */ + historical_balance_lookup: boolean; + [k: string]: unknown | undefined; + }; +} + +/** + * This endpoint returns the current status of the network requested. Any NetworkIdentifier returned by /network/list should be accessible here. + */ +export interface RosettaStatusRequest { + network_identifier: NetworkIdentifier; + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * NetworkStatusResponse contains basic information about the node's view of a blockchain network. It is assumed that any BlockIdentifier.Index less than or equal to CurrentBlockIdentifier.Index can be queried. If a Rosetta implementation prunes historical state, it should populate the optional oldest_block_identifier field with the oldest block available to query. If this is not populated, it is assumed that the genesis_block_identifier is the oldest queryable block. If a Rosetta implementation performs some pre-sync before it is possible to query blocks, sync_status should be populated so that clients can still monitor healthiness. Without this field, it may appear that the implementation is stuck syncing and needs to be terminated. + */ +export interface RosettaNetworkStatusResponse { + current_block_identifier: RosettaBlockIdentifier; + /** + * The timestamp of the block in milliseconds since the Unix Epoch. The timestamp is stored in milliseconds because some blockchains produce blocks more often than once a second. + */ + current_block_timestamp: number; + genesis_block_identifier: RosettaGenesisBlockIdentifier; + oldest_block_identifier?: RosettaOldestBlockIdentifier; + sync_status?: RosettaSyncStatus; + /** + * Peers information + */ + peers: RosettaPeers[]; +} + +export interface FTMetadataResponse { + /** + * Identifies the asset to which this token represents + */ + name: string; + /** + * Describes the asset to which this token represents + */ + description: string; + /** + * A URI pointing to a resource with mime type image/* representing the asset to which this token represents. The API may provide a URI to a cached resource, dependending on configuration. Otherwise, this can be the same value as the canonical image URI. + */ + image_uri: string; + /** + * The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive. + */ + image_canonical_uri: string; +} + +export interface NFTMetadataResponse { + /** + * Identifies the asset to which this token represents + */ + name: string; + /** + * Describes the asset to which this token represents + */ + description: string; + /** + * A URI pointing to a resource with mime type image/* representing the asset to which this token represents. The API may provide a URI to a cached resource, dependending on configuration. Otherwise, this can be the same value as the canonical image URI. + */ + image_uri: string; + /** + * The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive. + */ + image_canonical_uri: string; +} + +/** + * GET request that returns transactions + */ +export interface MempoolTransactionListResponse { + limit: number; + offset: number; + total: number; + results: MempoolTransaction[]; +} + +/** + * GET raw transaction + */ +export interface GetRawTransactionResult { + /** + * A hex encoded serialized transaction + */ + raw_tx: string; +} + +/** + * GET request that returns transactions + */ +export interface TransactionResults { + /** + * The number of transactions to return + */ + limit: number; + /** + * The number to transactions to skip (starting at `0`) + */ + offset: number; + /** + * The number of transactions available + */ + total: number; + results: Transaction[]; +} + +/** + * GET request that returns transactions + */ +export interface PostCoreNodeTransactionsError { + /** + * The error + */ + error: string; + /** + * The reason for the error + */ + reason: string; + /** + * More details about the reason + */ + reason_data: { + [k: string]: unknown | undefined; + }; + /** + * The relevant transaction id + */ + txid: string; +} + +/** + * Token Offering Locked + */ +export interface AddressTokenOfferingLocked { + /** + * Micro-STX amount still locked at current block height. + */ + total_locked: string; + /** + * Micro-STX amount unlocked at current block height. + */ + total_unlocked: string; + unlock_schedule: AddressUnlockSchedule[]; +} + +/** + * Transaction with STX transfers for a given address + */ +export interface AddressTransactionWithTransfers { + tx: Transaction; + /** + * Total sent from the given address, including the tx fee, in micro-STX as an integer string. + */ + stx_sent: string; + /** + * Total received by the given address in micro-STX as an integer string. + */ + stx_received: string; + stx_transfers: { + /** + * Amount transferred in micro-STX as an integer string. + */ + amount: string; + /** + * Principal that sent STX. This is unspecified if the STX were minted. + */ + sender?: string; + /** + * Principal that received STX. This is unspecified if the STX were burned. + */ + recipient?: string; + }[]; +} + +/** + * Unlock schedule amount and block height + */ +export interface AddressUnlockSchedule { + /** + * Micro-STX amount locked at this block height. + */ + amount: string; + block_height: number; +} + +/** + * A block + */ +export interface Block { + /** + * Set to `true` if block corresponds to the canonical chain tip + */ + canonical: boolean; + /** + * Height of the block + */ + height: number; + /** + * Hash representing the block + */ + hash: string; + /** + * Hash of the parent block + */ + parent_block_hash: string; + /** + * Unix timestamp (in seconds) indicating when this block was mined. + */ + burn_block_time: number; + /** + * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) indicating when this block was mined. + */ + burn_block_time_iso: string; + /** + * Hash of the anchor chain block + */ + burn_block_hash: string; + /** + * Height of the anchor chain block + */ + burn_block_height: number; + /** + * Anchor chain transaction ID + */ + miner_txid: string; + /** + * List of transactions included in the block + */ + txs: string[]; +} + +/** + * Reward slot holder on the burnchain + */ +export interface BurnchainRewardSlotHolder { + /** + * Set to `true` if block corresponds to the canonical burchchain tip + */ + canonical: boolean; + /** + * The hash representing the burnchain block + */ + burn_block_hash: string; + /** + * Height of the burnchain block + */ + burn_block_height: number; + /** + * The recipient address that validly received PoX commitments, in the format native to the burnchain (e.g. B58 encoded for Bitcoin) + */ + address: string; + /** + * The index position of the reward entry, useful for ordering when there's more than one slot per burnchain block + */ + slot_index: number; +} + +/** + * Reward payment made on the burnchain + */ +export interface BurnchainReward { + /** + * Set to `true` if block corresponds to the canonical burchchain tip + */ + canonical: boolean; + /** + * The hash representing the burnchain block + */ + burn_block_hash: string; + /** + * Height of the burnchain block + */ + burn_block_height: number; + /** + * The total amount of burnchain tokens burned for this burnchain block, in the smallest unit (e.g. satoshis for Bitcoin) + */ + burn_amount: string; + /** + * The recipient address that received the burnchain rewards, in the format native to the burnchain (e.g. B58 encoded for Bitcoin) + */ + reward_recipient: string; + /** + * The amount of burnchain tokens rewarded to the recipient, in the smallest unit (e.g. satoshis for Bitcoin) + */ + reward_amount: string; + /** + * The index position of the reward entry, useful for ordering when there's more than one recipient per burnchain block + */ + reward_index: number; +} + +/** + * Total burnchain rewards made to a recipient + */ +export interface BurnchainRewardsTotal { + /** + * The recipient address that received the burnchain rewards, in the format native to the burnchain (e.g. B58 encoded for Bitcoin) + */ + reward_recipient: string; + /** + * The total amount of burnchain tokens rewarded to the recipient, in the smallest unit (e.g. satoshis for Bitcoin) + */ + reward_amount: string; +} + +/** + * Describes representation of a Type-0 Stacks 2.0 transaction. https://github.com/blockstack/stacks-blockchain/blob/master/sip/sip-005-blocks-and-transactions.md#type-0-transferring-an-asset + */ +export interface ReadOnlyFunctionArgs { + /** + * The simulated tx-sender + */ + sender: string; + /** + * An array of hex serialized Clarity values + */ + arguments: string[]; +} + +/** + * Describes representation of a Type-0 Stacks 2.0 transaction. https://github.com/blockstack/stacks-blockchain/blob/master/sip/sip-005-blocks-and-transactions.md#type-0-transferring-an-asset + */ +export interface MempoolTokenTransferTransaction { + tx_id: string; + tx_status: MempoolTransactionStatus; + tx_result?: { + hex: string; + repr: string; + }; + /** + * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. + */ + nonce: number; + /** + * Integer string (64-bit unsigned integer). + */ + fee_rate: string; + sender_address: string; + /** + * Denotes whether the originating account is the same as the paying account + */ + sponsored: boolean; + sponsor_address?: string; + post_condition_mode: PostConditionMode; + /** + * A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. + */ + receipt_time: number; + /** + * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. + */ + receipt_time_iso: string; + tx_type: "token_transfer"; + token_transfer: { + recipient_address: string; + /** + * Integer string (64-bit unsigned integer) + */ + amount: string; + /** + * Hex encoded arbitrary message, up to 34 bytes length (should try decoding to an ASCII string) + */ + memo: string; + }; +} + +/** + * Describes representation of a Type-1 Stacks 2.0 transaction. https://github.com/blockstack/stacks-blockchain/blob/master/sip/sip-005-blocks-and-transactions.md#type-1-instantiating-a-smart-contract + */ +export interface MempoolSmartContractTransaction { + tx_id: string; + tx_status: MempoolTransactionStatus; + tx_result?: { + hex: string; + repr: string; + }; + /** + * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. + */ + nonce: number; + /** + * Integer string (64-bit unsigned integer). + */ + fee_rate: string; + sender_address: string; + /** + * Denotes whether the originating account is the same as the paying account + */ + sponsored: boolean; + sponsor_address?: string; + post_condition_mode: PostConditionMode; + /** + * A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. + */ + receipt_time: number; + /** + * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. + */ + receipt_time_iso: string; + tx_type: "smart_contract"; + smart_contract: { + contract_id: string; + /** + * Clarity code of the smart contract being deployed + */ + source_code: string; + }; + post_conditions?: PostCondition[]; +} + +/** + * Describes representation of a Type 2 Stacks 2.0 transaction: Contract Call + */ +export interface MempoolContractCallTransaction { + tx_id: string; + tx_status: MempoolTransactionStatus; + tx_result?: { + hex: string; + repr: string; + }; + /** + * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. + */ + nonce: number; + /** + * Integer string (64-bit unsigned integer). + */ + fee_rate: string; + sender_address: string; + /** + * Denotes whether the originating account is the same as the paying account + */ + sponsored: boolean; + sponsor_address?: string; + post_condition_mode: PostConditionMode; + /** + * A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. + */ + receipt_time: number; + /** + * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. + */ + receipt_time_iso: string; + tx_type: "contract_call"; + contract_call: { + contract_id: string; + /** + * Name of the Clarity function to be invoked + */ + function_name: string; + }; + post_conditions: PostCondition[]; +} + +/** + * Describes representation of a Type 3 Stacks 2.0 transaction: Poison Microblock + */ +export interface MempoolPoisonMicroblockTransaction { + tx_id: string; + tx_status: MempoolTransactionStatus; + tx_result?: { + hex: string; + repr: string; + }; + /** + * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. + */ + nonce: number; + /** + * Integer string (64-bit unsigned integer). + */ + fee_rate: string; + sender_address: string; + /** + * Denotes whether the originating account is the same as the paying account + */ + sponsored: boolean; + sponsor_address?: string; + post_condition_mode: PostConditionMode; + /** + * A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. + */ + receipt_time: number; + /** + * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. + */ + receipt_time_iso: string; + tx_type: "poison_microblock"; + poison_microblock: { + /** + * Hex encoded microblock header + */ + microblock_header_1: string; + /** + * Hex encoded microblock header + */ + microblock_header_2: string; + }; +} + +/** + * Describes representation of a Type 3 Stacks 2.0 transaction: Poison Microblock + */ +export interface MempoolCoinbaseTransaction { + tx_id: string; + tx_status: MempoolTransactionStatus; + tx_result?: { + hex: string; + repr: string; + }; + /** + * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. + */ + nonce: number; + /** + * Integer string (64-bit unsigned integer). + */ + fee_rate: string; + sender_address: string; + /** + * Denotes whether the originating account is the same as the paying account + */ + sponsored: boolean; + sponsor_address?: string; + post_condition_mode: PostConditionMode; + /** + * A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. + */ + receipt_time: number; + /** + * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. + */ + receipt_time_iso: string; + tx_type: "coinbase"; + coinbase_payload: { + /** + * Hex encoded 32-byte scratch space for block leader's use + */ + data: string; + }; +} + +/** + * Status of the transaction + */ +export type MempoolTransactionStatus = + | "pending" + | "dropped_replace_by_fee" + | "dropped_replace_across_fork" + | "dropped_too_expensive" + | "dropped_stale_garbage_collect"; + +/** + * Describes all transaction types on Stacks 2.0 blockchain + */ +export type MempoolTransaction = + | MempoolTokenTransferTransaction + | MempoolSmartContractTransaction + | MempoolContractCallTransaction + | MempoolPoisonMicroblockTransaction + | MempoolCoinbaseTransaction; + +export interface NftEvent { + sender: string; + recipient: string; + asset_identifier: string; + /** + * Identifier of the NFT + */ + value: { + /** + * Hex string representing the identifier of the NFT + */ + hex: string; + /** + * Readable string of the NFT identifier + */ + repr: string; + }; + tx_id: string; + block_height: number; +} + +export interface PostConditionStx { + principal: PostConditionPrincipal; + condition_code: PostConditionFungibleConditionCode; + amount: string; + type: "stx"; +} + +export interface PostConditionFungible { + principal: PostConditionPrincipal; + condition_code: PostConditionFungibleConditionCode; + type: "fungible"; + amount: string; + asset: { + asset_name: string; + contract_address: string; + contract_name: string; + }; +} + +export interface PostConditionNonFungible { + principal: PostConditionPrincipal; + condition_code: PostConditionNonFungibleConditionCode; + type: "non_fungible"; + asset_value: { + hex: string; + repr: string; + }; + asset: { + asset_name: string; + contract_address: string; + contract_name: string; + }; +} + +/** + * A fungible condition code encodes a statement being made for either STX or a fungible token, with respect to the originating account. + */ +export type PostConditionFungibleConditionCode = + | "sent_equal_to" + | "sent_greater_than" + | "sent_greater_than_or_equal_to" + | "sent_less_than" + | "sent_less_than_or_equal_to"; + +export type PostConditionMode = "allow" | "deny"; + +/** + * A non-fungible condition code encodes a statement being made about a non-fungible token, with respect to whether or not the particular non-fungible token is owned by the account. + */ +export type PostConditionNonFungibleConditionCode = "sent" | "not_sent"; + +export type PostConditionPrincipalType = "principal_origin" | "principal_standard" | "principal_contract"; + +export type PostConditionPrincipal = + | { + /** + * String literal of type `PostConditionPrincipalType` + */ + type_id: "principal_origin"; + } + | { + /** + * String literal of type `PostConditionPrincipalType` + */ + type_id: "principal_standard"; + address: string; + } + | { + /** + * String literal of type `PostConditionPrincipalType` + */ + type_id: "principal_contract"; + address: string; + contract_name: string; + }; + +export type PostConditionType = "stx" | "non_fungible" | "fungible"; + +/** + * Post-conditionscan limit the damage done to a user's assets + */ +export type PostCondition = PostConditionStx | PostConditionFungible | PostConditionNonFungible; + +/** + * The account_identifier uniquely identifies an account within a network. All fields in the account_identifier are utilized to determine this uniqueness (including the metadata field, if populated). + */ +export interface RosettaAccountIdentifier { + /** + * The address may be a cryptographic public key (or some encoding of it) or a provided username. + */ + address: string; + sub_account?: RosettaSubAccount; + /** + * Blockchains that utilize a username model (where the address is not a derivative of a cryptographic public key) should specify the public key(s) owned by the address in metadata. + */ + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * The account_identifier uniquely identifies an account within a network. All fields in the account_identifier are utilized to determine this uniqueness (including the metadata field, if populated). + */ +export interface RosettaAccount { + /** + * The address may be a cryptographic public key (or some encoding of it) or a provided username. + */ + address: string; + sub_account?: RosettaSubAccount; + /** + * Blockchains that utilize a username model (where the address is not a derivative of a cryptographic public key) should specify the public key(s) owned by the address in metadata. + */ + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * Amount is some Value of a Currency. It is considered invalid to specify a Value without a Currency. + */ +export interface RosettaMaxFeeAmount { + /** + * Value of the transaction in atomic units represented as an arbitrary-sized signed integer. For example, 1 BTC would be represented by a value of 100000000. + */ + value: string; + currency: RosettaCurrency; + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * Amount is some Value of a Currency. It is considered invalid to specify a Value without a Currency. + */ +export interface RosettaAmount { + /** + * Value of the transaction in atomic units represented as an arbitrary-sized signed integer. For example, 1 BTC would be represented by a value of 100000000. + */ + value: string; + currency: RosettaCurrency; + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * This is also known as the block hash. + */ +export interface RosettaBlockIdentifierHash { + /** + * This is also known as the block hash. + */ + hash?: string; +} + +/** + * This is also known as the block height. + */ +export interface RosettaBlockIdentifierHeight { + /** + * This is also known as the block height. + */ + index?: number; +} + +/** + * The block_identifier uniquely identifies a block in a particular network. + */ +export interface RosettaBlockIdentifier { + /** + * This is also known as the block hash. + */ + hash: string; + /** + * This is also known as the block height. + */ + index: number; +} + +/** + * Blocks contain an array of Transactions that occurred at a particular BlockIdentifier. A hard requirement for blocks returned by Rosetta implementations is that they MUST be inalterable: once a client has requested and received a block identified by a specific BlockIndentifier, all future calls for that same BlockIdentifier must return the same block contents. + */ +export interface RosettaBlock { + block_identifier: RosettaBlockIdentifier; + parent_block_identifier: RosettaParentBlockIdentifier; + /** + * The timestamp of the block in milliseconds since the Unix Epoch. The timestamp is stored in milliseconds because some blockchains produce blocks more often than once a second. + */ + timestamp: number; + /** + * All the transactions in the block + */ + transactions: RosettaTransaction[]; + /** + * meta data + */ + metadata?: { + transactions_root: string; + difficulty: string; + [k: string]: unknown | undefined; + }; +} + +/** + * CoinChange is used to represent a change in state of a some coin identified by a coin_identifier. This object is part of the Operation model and must be populated for UTXO-based blockchains. Coincidentally, this abstraction of UTXOs allows for supporting both account-based transfers and UTXO-based transfers on the same blockchain (when a transfer is account-based, don't populate this model). + */ +export interface RosettaCoinChange { + /** + * CoinIdentifier uniquely identifies a Coin. + */ + coin_identifier: { + /** + * Identifier should be populated with a globally unique identifier of a Coin. In Bitcoin, this identifier would be transaction_hash:index. + */ + identifier: string; + [k: string]: unknown | undefined; + }; + /** + * CoinActions are different state changes that a Coin can undergo. When a Coin is created, it is coin_created. When a Coin is spent, it is coin_spent. It is assumed that a single Coin cannot be created or spent more than once. + */ + coin_action: "coin_created" | "coin_spent"; +} + +/** + * If a blockchain is UTXO-based, all unspent Coins owned by an account_identifier should be returned alongside the balance. It is highly recommended to populate this field so that users of the Rosetta API implementation don't need to maintain their own indexer to track their UTXOs. + */ +export interface RosettaCoin { + /** + * CoinIdentifier uniquely identifies a Coin. + */ + coin_identifier: { + /** + * Identifier should be populated with a globally unique identifier of a Coin. In Bitcoin, this identifier would be transaction_hash:index. + */ + identifier: string; + [k: string]: unknown | undefined; + }; + amount: RosettaAmount; +} + +/** + * The options that will be sent directly to /construction/metadata by the caller. + */ +export interface RosettaOptions { + /** + * sender's address + */ + sender_address?: string; + /** + * Type of operation e.g transfer + */ + type?: string; + /** + * This value indicates the state of the operations + */ + status?: string | null; + /** + * Recipient's address + */ + token_transfer_recipient_address?: string; + /** + * Amount to be transfered. + */ + amount?: string; + /** + * Currency symbol e.g STX + */ + symbol?: string; + /** + * Number of decimal places + */ + decimals?: number; + /** + * Maximum price a user is willing to pay. + */ + gas_limit?: number; + /** + * Cost necessary to perform a transaction on the network + */ + gas_price?: number; + /** + * A suggested fee multiplier to indicate that the suggested fee should be scaled. This may be used to set higher fees for urgent transactions or to pay lower fees when there is less urgency. + */ + suggested_fee_multiplier?: number; + /** + * Maximum fee user is willing to pay + */ + max_fee?: string; + /** + * Fee for this transaction + */ + fee?: string; + /** + * Transaction approximative size (used to calculate total fee). + */ + size?: number; + /** + * Number of cycles when stacking. + */ + number_of_cycles?: number; + /** + * Address of the contract to call. + */ + contract_address?: string; + /** + * Name of the contract to call. + */ + contract_name?: string; + /** + * Set the burnchain (BTC) block for stacking lock to start. + */ + burn_block_height?: number; +} + +/** + * Currency is composed of a canonical Symbol and Decimals. This Decimals value is used to convert an Amount.Value from atomic units (Satoshis) to standard units (Bitcoins). + */ +export interface RosettaCurrency { + /** + * Canonical symbol associated with a currency. + */ + symbol: string; + /** + * Number of decimal places in the standard unit representation of the amount. For example, BTC has 8 decimals. Note that it is not possible to represent the value of some currency in atomic units that is not base 10. + */ + decimals: number; + /** + * Any additional information related to the currency itself. For example, it would be useful to populate this object with the contract address of an ERC-20 token. + */ + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * Instead of utilizing HTTP status codes to describe node errors (which often do not have a good analog), rich errors are returned using this object. Both the code and message fields can be individually used to correctly identify an error. Implementations MUST use unique values for both fields. + */ +export interface RosettaError { + /** + * Code is a network-specific error code. If desired, this code can be equivalent to an HTTP status code. + */ + code: number; + /** + * Message is a network-specific error message. The message MUST NOT change for a given code. In particular, this means that any contextual information should be included in the details field. + */ + message: string; + /** + * An error is retriable if the same request may succeed if submitted again. + */ + retriable: boolean; + /** + * Often times it is useful to return context specific to the request that caused the error (i.e. a sample of the stack trace or impacted account) in addition to the standard error message. + */ + details?: { + address?: string; + error?: string; + [k: string]: unknown | undefined; + }; +} + +/** + * The block_identifier uniquely identifies a block in a particular network. + */ +export interface RosettaGenesisBlockIdentifier { + /** + * This is also known as the block height. + */ + index: number; + /** + * Block hash + */ + hash: string; +} + +/** + * The network_identifier specifies which network a particular object is associated with. + */ +export interface NetworkIdentifier { + /** + * Blockchain name + */ + blockchain: string; + /** + * If a blockchain has a specific chain-id or network identifier, it should go in this field. It is up to the client to determine which network-specific identifier is mainnet or testnet. + */ + network: string; + /** + * In blockchains with sharded state, the SubNetworkIdentifier is required to query some object on a specific shard. This identifier is optional for all non-sharded blockchains. + */ + sub_network_identifier?: { + /** + * Network name + */ + network: string; + /** + * Meta data from subnetwork identifier + */ + metadata?: { + /** + * producer + */ + producer: string; + [k: string]: unknown | undefined; + }; + [k: string]: unknown | undefined; + }; +} + +/** + * A Peer is a representation of a node's peer. + */ +export interface RosettaPeers { + /** + * peer id + */ + peer_id: string; + /** + * meta data + */ + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * The block_identifier uniquely identifies a block in a particular network. + */ +export interface RosettaOldestBlockIdentifier { + /** + * This is also known as the block height. + */ + index: number; + /** + * Block hash + */ + hash: string; +} + +/** + * The operation_identifier uniquely identifies an operation within a transaction. + */ +export interface RosettaOperationIdentifier { + /** + * The operation index is used to ensure each operation has a unique identifier within a transaction. This index is only relative to the transaction and NOT GLOBAL. The operations in each transaction should start from index 0. To clarify, there may not be any notion of an operation index in the blockchain being described. + */ + index: number; + /** + * Some blockchains specify an operation index that is essential for client use. For example, Bitcoin uses a network_index to identify which UTXO was used in a transaction. network_index should not be populated if there is no notion of an operation index in a blockchain (typically most account-based blockchains). + */ + network_index?: number; +} + +/** + * OperationStatus is utilized to indicate which Operation status are considered successful. + */ +export interface RosettaOperationStatus { + /** + * The status is the network-specific status of the operation. + */ + status: string; + /** + * An Operation is considered successful if the Operation.Amount should affect the Operation.Account. Some blockchains (like Bitcoin) only include successful operations in blocks but other blockchains (like Ethereum) include unsuccessful operations that incur a fee. To reconcile the computed balance from the stream of Operations, it is critical to understand which Operation.Status indicate an Operation is successful and should affect an Account. + */ + successful: boolean; +} + +/** + * Operations contain all balance-changing information within a transaction. They are always one-sided (only affect 1 AccountIdentifier) and can succeed or fail independently from a Transaction. + */ +export interface RosettaOperation { + operation_identifier: RosettaOperationIdentifier; + /** + * Restrict referenced related_operations to identifier indexes < the current operation_identifier.index. This ensures there exists a clear DAG-structure of relations. Since operations are one-sided, one could imagine relating operations in a single transfer or linking operations in a call tree. + */ + related_operations?: RosettaRelatedOperation[]; + /** + * The network-specific type of the operation. Ensure that any type that can be returned here is also specified in the NetworkStatus. This can be very useful to downstream consumers that parse all block data. + */ + type: string; + /** + * The network-specific status of the operation. Status is not defined on the transaction object because blockchains with smart contracts may have transactions that partially apply. Blockchains with atomic transactions (all operations succeed or all operations fail) will have the same status for each operation. + */ + status?: string; + account?: RosettaAccount; + amount?: RosettaAmount; + coin_change?: RosettaCoinChange; + /** + * Operations Meta Data + */ + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * The transaction_identifier uniquely identifies a transaction in a particular network and block or in the mempool. + */ +export interface OtherTransactionIdentifier { + /** + * Any transactions that are attributable only to a block (ex: a block event) should use the hash of the block as the identifier. + */ + hash: string; +} + +/** + * The block_identifier uniquely identifies a block in a particular network. + */ +export interface RosettaParentBlockIdentifier { + /** + * This is also known as the block height. + */ + index: number; + /** + * Block hash + */ + hash: string; +} + +/** + * When fetching data by BlockIdentifier, it may be possible to only specify the index or hash. If neither property is specified, it is assumed that the client is making a request at the current block. + */ +export type RosettaPartialBlockIdentifier = RosettaBlockIdentifierHash | RosettaBlockIdentifierHeight; + +/** + * PublicKey contains a public key byte array for a particular CurveType encoded in hex. Note that there is no PrivateKey struct as this is NEVER the concern of an implementation. + */ +export interface RosettaPublicKey { + /** + * Hex-encoded public key bytes in the format specified by the CurveType. + */ + hex_bytes: string; + /** + * CurveType is the type of cryptographic curve associated with a PublicKey. + */ + curve_type: "secp256k1" | "edwards25519"; +} + +/** + * Restrict referenced related_operations to identifier indexes < the current operation_identifier.index. This ensures there exists a clear DAG-structure of relations. Since operations are one-sided, one could imagine relating operations in a single transfer or linking operations in a call tree. + */ +export interface RosettaRelatedOperation { + /** + * Describes the index of related operation. + */ + index: number; + /** + * Some blockchains specify an operation index that is essential for client use. network_index should not be populated if there is no notion of an operation index in a blockchain (typically most account-based blockchains). + */ + network_index?: number; +} + +/** + * Signature contains the payload that was signed, the public keys of the keypairs used to produce the signature, the signature (encoded in hex), and the SignatureType. PublicKey is often times not known during construction of the signing payloads but may be needed to combine signatures properly. + */ +export interface RosettaSignature { + signing_payload: SigningPayload; + public_key: RosettaPublicKey; + /** + * SignatureType is the type of a cryptographic signature. + */ + signature_type: "ecdsa" | "ecdsa_recovery" | "ed25519" | "schnorr_1" | "schnorr_poseidon"; + hex_bytes: string; +} + +/** + * SigningPayload is signed by the client with the keypair associated with an address using the specified SignatureType. SignatureType can be optionally populated if there is a restriction on the signature scheme that can be used to sign the payload. + */ +export interface SigningPayload { + /** + * [DEPRECATED by account_identifier in v1.4.4] The network-specific address of the account that should sign the payload. + */ + address?: string; + account_identifier?: RosettaAccount; + hex_bytes: string; + /** + * SignatureType is the type of a cryptographic signature. + */ + signature_type?: "ecdsa" | "ecdsa_recovery" | "ed25519" | "schnorr_1" | "schnorr_poseidon"; +} + +/** + * An account may have state specific to a contract address (ERC-20 token) and/or a stake (delegated balance). The sub_account_identifier should specify which state (if applicable) an account instantiation refers to. + */ +export interface RosettaSubAccount { + /** + * The address may be a cryptographic public key (or some encoding of it) or a provided username. + */ + address: string; + /** + * If the SubAccount address is not sufficient to uniquely specify a SubAccount, any other identifying information can be stored here. It is important to note that two SubAccounts with identical addresses but differing metadata will not be considered equal by clients. + */ + metadata?: { + [k: string]: unknown | undefined; + }; +} + +/** + * SyncStatus is used to provide additional context about an implementation's sync status. It is often used to indicate that an implementation is healthy when it cannot be queried until some sync phase occurs. If an implementation is immediately queryable, this model is often not populated. + */ +export interface RosettaSyncStatus { + /** + * CurrentIndex is the index of the last synced block in the current stage. + */ + current_index: number; + /** + * TargetIndex is the index of the block that the implementation is attempting to sync to in the current stage. + */ + target_index?: number; + /** + * Stage is the phase of the sync process. + */ + stage?: string; + /** + * Synced indicates if an implementation has synced up to the most recent block. + */ + synced?: boolean; +} + +/** + * The transaction_identifier uniquely identifies a transaction in a particular network and block or in the mempool. + */ +export interface TransactionIdentifier { + /** + * Any transactions that are attributable only to a block (ex: a block event) should use the hash of the block as the identifier. + */ + hash: string; +} + +/** + * Transactions contain an array of Operations that are attributable to the same TransactionIdentifier. + */ +export interface RosettaTransaction { + transaction_identifier: TransactionIdentifier; + /** + * List of operations + */ + operations: RosettaOperation[]; + /** + * Transactions that are related to other transactions (like a cross-shard transaction) should include the tranaction_identifier of these transactions in the metadata. + */ + metadata?: { + /** + * The Size + */ + size: number; + /** + * The locktime + */ + lockTime: number; + [k: string]: unknown | undefined; + }; +} + +export type TransactionEventAssetType = "transfer" | "mint" | "burn"; + +export interface TransactionEventAsset { + asset_event_type?: TransactionEventAssetType; + asset_id?: string; + sender?: string; + recipient?: string; + amount?: string; + value?: string; +} + +export interface TransactionEventFungibleAsset { + event_index: number; + event_type: "fungible_token_asset"; + asset: { + asset_event_type: string; + asset_id: string; + sender: string; + recipient: string; + amount: string; + }; +} + +export interface TransactionEventNonFungibleAsset { + event_index: number; + event_type: "non_fungible_token_asset"; + asset: { + asset_event_type: string; + asset_id: string; + sender: string; + recipient: string; + value: { + hex: string; + repr: string; + }; + }; +} + +/** + * Only present in `smart_contract` and `contract_call` tx types. + */ +export interface TransactionEventSmartContractLog { + event_index: number; + event_type: "smart_contract_log"; + contract_log: { + contract_id: string; + topic: string; + value: { + hex: string; + repr: string; + }; + }; +} + +/** + * Only present in `smart_contract` and `contract_call` tx types. + */ +export interface TransactionEventStxAsset { + event_index: number; + event_type: "stx_asset"; + asset: TransactionEventAsset; +} + +/** + * Only present in `smart_contract` and `contract_call` tx types. + */ +export interface TransactionEventStxLock { + event_index: number; + event_type: "stx_lock"; + stx_lock_event: { + locked_amount: string; + unlock_height: number; + locked_address: string; + }; +} + +/** + * Events types + */ +export type TransactionEventType = + | "smart_contract_log" + | "stx_lock" + | "stx_asset" + | "fungible_token_asset" + | "non_fungible_token_asset"; + +export type TransactionEvent = + | TransactionEventSmartContractLog + | TransactionEventStxLock + | TransactionEventStxAsset + | TransactionEventFungibleAsset + | TransactionEventNonFungibleAsset; + +/** + * Describes representation of a Type-0 Stacks 2.0 transaction. https://github.com/blockstack/stacks-blockchain/blob/master/sip/sip-005-blocks-and-transactions.md#type-0-transferring-an-asset + */ +export interface TokenTransferTransaction { + /** + * Hash of the blocked this transactions was associated with + */ + block_hash: string; + /** + * Height of the block this transactions was associated with + */ + block_height: number; + /** + * Unix timestamp (in seconds) indicating when this block was mined + */ + burn_block_time: number; + /** + * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when this block was mined. + */ + burn_block_time_iso: string; + /** + * Set to `true` if block corresponds to the canonical chain tip + */ + canonical: boolean; + /** + * Transaction ID + */ + tx_id: string; + /** + * Index of the transaction, indicating the order. Starts at `0` and increases with each transaction + */ + tx_index: number; + tx_status: TransactionStatus; + /** + * Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. + */ + tx_result?: { + /** + * Hex string representing the value fo the transaction result + */ + hex: string; + /** + * Readable string of the transaction result + */ + repr: string; + }; + /** + * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. + */ + nonce: number; + /** + * Transaction fee as Integer string (64-bit unsigned integer). + */ + fee_rate: string; + /** + * Address of the transaction initiator + */ + sender_address: string; + /** + * Denotes whether the originating account is the same as the paying account + */ + sponsored: boolean; + sponsor_address?: string; + post_condition_mode: PostConditionMode; + /** + * Number of transaction events + */ + event_count: number; + /** + * List of transaction events + */ + events: TransactionEvent[]; + tx_type: "token_transfer"; + token_transfer: { + recipient_address: string; + /** + * Transfer amount as Integer string (64-bit unsigned integer) + */ + amount: string; + /** + * Hex encoded arbitrary message, up to 34 bytes length (should try decoding to an ASCII string) + */ + memo: string; + }; +} + +/** + * Describes representation of a Type-1 Stacks 2.0 transaction. https://github.com/blockstack/stacks-blockchain/blob/master/sip/sip-005-blocks-and-transactions.md#type-1-instantiating-a-smart-contract + */ +export interface SmartContractTransaction { + /** + * Hash of the blocked this transactions was associated with + */ + block_hash: string; + /** + * Height of the block this transactions was associated with + */ + block_height: number; + /** + * Unix timestamp (in seconds) indicating when this block was mined + */ + burn_block_time: number; + /** + * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when this block was mined. + */ + burn_block_time_iso: string; + /** + * Set to `true` if block corresponds to the canonical chain tip + */ + canonical: boolean; + /** + * Transaction ID + */ + tx_id: string; + /** + * Index of the transaction, indicating the order. Starts at `0` and increases with each transaction + */ + tx_index: number; + tx_status: TransactionStatus; + /** + * Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. + */ + tx_result?: { + /** + * Hex string representing the value fo the transaction result + */ + hex: string; + /** + * Readable string of the transaction result + */ + repr: string; + }; + /** + * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. + */ + nonce: number; + /** + * Transaction fee as Integer string (64-bit unsigned integer). + */ + fee_rate: string; + /** + * Address of the transaction initiator + */ + sender_address: string; + /** + * Denotes whether the originating account is the same as the paying account + */ + sponsored: boolean; + sponsor_address?: string; + post_condition_mode: PostConditionMode; + /** + * Number of transaction events + */ + event_count: number; + /** + * List of transaction events + */ + events: TransactionEvent[]; + tx_type: "smart_contract"; + smart_contract: { + /** + * Contract identifier formatted as `.` + */ + contract_id: string; + /** + * Clarity code of the smart contract being deployed + */ + source_code: string; + }; + post_conditions?: PostCondition[]; +} + +/** + * Describes representation of a Type 2 Stacks 2.0 transaction: Contract Call + */ +export interface ContractCallTransaction { + /** + * Hash of the blocked this transactions was associated with + */ + block_hash: string; + /** + * Height of the block this transactions was associated with + */ + block_height: number; + /** + * Unix timestamp (in seconds) indicating when this block was mined + */ + burn_block_time: number; + /** + * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when this block was mined. + */ + burn_block_time_iso: string; + /** + * Set to `true` if block corresponds to the canonical chain tip + */ + canonical: boolean; + /** + * Transaction ID + */ + tx_id: string; + /** + * Index of the transaction, indicating the order. Starts at `0` and increases with each transaction + */ + tx_index: number; + tx_status: TransactionStatus; + /** + * Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. + */ + tx_result?: { + /** + * Hex string representing the value fo the transaction result + */ + hex: string; + /** + * Readable string of the transaction result + */ + repr: string; + }; + /** + * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. + */ + nonce: number; + /** + * Transaction fee as Integer string (64-bit unsigned integer). + */ + fee_rate: string; + /** + * Address of the transaction initiator + */ + sender_address: string; + /** + * Denotes whether the originating account is the same as the paying account + */ + sponsored: boolean; + sponsor_address?: string; + post_condition_mode: PostConditionMode; + /** + * Number of transaction events + */ + event_count: number; + /** + * List of transaction events + */ + events: TransactionEvent[]; + tx_type: "contract_call"; + contract_call: { + /** + * Contract identifier formatted as `.` + */ + contract_id: string; + /** + * Name of the Clarity function to be invoked + */ + function_name: string; + /** + * Function definition, including function name and type as well as parameter names and types + */ + function_signature: string; + /** + * List of arguments used to invoke the function + */ + function_args?: { + hex: string; + repr: string; + name: string; + type: string; + }[]; + }; + post_conditions: PostCondition[]; +} + +/** + * Describes representation of a Type 3 Stacks 2.0 transaction: Poison Microblock + */ +export interface PoisonMicroblockTransaction { + /** + * Hash of the blocked this transactions was associated with + */ + block_hash: string; + /** + * Height of the block this transactions was associated with + */ + block_height: number; + /** + * Unix timestamp (in seconds) indicating when this block was mined + */ + burn_block_time: number; + /** + * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when this block was mined. + */ + burn_block_time_iso: string; + /** + * Set to `true` if block corresponds to the canonical chain tip + */ + canonical: boolean; + /** + * Transaction ID + */ + tx_id: string; + /** + * Index of the transaction, indicating the order. Starts at `0` and increases with each transaction + */ + tx_index: number; + tx_status: TransactionStatus; + /** + * Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. + */ + tx_result?: { + /** + * Hex string representing the value fo the transaction result + */ + hex: string; + /** + * Readable string of the transaction result + */ + repr: string; + }; + /** + * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. + */ + nonce: number; + /** + * Transaction fee as Integer string (64-bit unsigned integer). + */ + fee_rate: string; + /** + * Address of the transaction initiator + */ + sender_address: string; + /** + * Denotes whether the originating account is the same as the paying account + */ + sponsored: boolean; + sponsor_address?: string; + post_condition_mode: PostConditionMode; + /** + * Number of transaction events + */ + event_count: number; + /** + * List of transaction events + */ + events: TransactionEvent[]; + tx_type: "poison_microblock"; + poison_microblock: { + /** + * Hex encoded microblock header + */ + microblock_header_1: string; + /** + * Hex encoded microblock header + */ + microblock_header_2: string; + }; +} + +/** + * Describes representation of a Type 3 Stacks 2.0 transaction: Poison Microblock + */ +export interface CoinbaseTransaction { + /** + * Hash of the blocked this transactions was associated with + */ + block_hash: string; + /** + * Height of the block this transactions was associated with + */ + block_height: number; + /** + * Unix timestamp (in seconds) indicating when this block was mined + */ + burn_block_time: number; + /** + * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when this block was mined. + */ + burn_block_time_iso: string; + /** + * Set to `true` if block corresponds to the canonical chain tip + */ + canonical: boolean; + /** + * Transaction ID + */ + tx_id: string; + /** + * Index of the transaction, indicating the order. Starts at `0` and increases with each transaction + */ + tx_index: number; + tx_status: TransactionStatus; + /** + * Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. + */ + tx_result?: { + /** + * Hex string representing the value fo the transaction result + */ + hex: string; + /** + * Readable string of the transaction result + */ + repr: string; + }; + /** + * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. + */ + nonce: number; + /** + * Transaction fee as Integer string (64-bit unsigned integer). + */ + fee_rate: string; + /** + * Address of the transaction initiator + */ + sender_address: string; + /** + * Denotes whether the originating account is the same as the paying account + */ + sponsored: boolean; + sponsor_address?: string; + post_condition_mode: PostConditionMode; + /** + * Number of transaction events + */ + event_count: number; + /** + * List of transaction events + */ + events: TransactionEvent[]; + tx_type: "coinbase"; + coinbase_payload: { + /** + * Hex encoded 32-byte scratch space for block leader's use + */ + data: string; + }; +} + +/** + * Status of the transaction + */ +export type TransactionStatus = "success" | "abort_by_response" | "abort_by_post_condition"; + +/** + * String literal of all Stacks 2.0 transaction types + */ +export type TransactionType = "token_transfer" | "smart_contract" | "contract_call" | "poison_microblock" | "coinbase"; + +/** + * Describes all transaction types on Stacks 2.0 blockchain + */ +export type Transaction = + | TokenTransferTransaction + | SmartContractTransaction + | ContractCallTransaction + | PoisonMicroblockTransaction + | CoinbaseTransaction; + +/** + * A inbound STX transfer with a memo + */ +export interface InboundStxTransfer { + /** + * Principal that sent this transfer + */ + sender: string; + /** + * Transfer amount in micro-STX as integer string + */ + amount: string; + /** + * Hex encoded memo bytes associated with the transfer + */ + memo: string; + /** + * Block height at which this transfer occurred + */ + block_height: number; + /** + * The transaction ID in which this transfer occurred + */ + tx_id: string; + /** + * Indicates if the transfer is from a stx-transfer transaction or a contract-call transaction + */ + transfer_type: "bulk-send" | "stx-transfer"; + /** + * Index of the transaction within a block + */ + tx_index: number; +} + +export interface RpcAddressBalanceNotificationParams { + address: string; + balance: string; +} + +export interface RpcAddressBalanceNotificationResponse { + jsonrpc: "2.0"; + method: "address_balance_update"; + params: RpcAddressBalanceNotificationParams; +} + +export interface RpcAddressBalanceSubscriptionParams { + event: "address_balance_update"; + address: string; +} + +export interface RpcAddressBalanceSubscriptionRequest { + jsonrpc: "2.0"; + id: number | string; + method: "address_balance_update"; + params: RpcAddressBalanceSubscriptionParams; +} + +export interface RpcAddressTxNotificationParams { + address: string; + tx_id: string; + tx_type: TransactionType; + tx_status: TransactionStatus | MempoolTransactionStatus; +} + +export interface RpcAddressTxNotificationResponse { + jsonrpc: "2.0"; + method: "address_tx_update"; + params: RpcAddressTxNotificationParams; +} + +export interface RpcAddressTxSubscriptionParams { + event: "address_tx_update"; + address: string; +} + +export interface RpcAddressTxSubscriptionRequest { + jsonrpc: "2.0"; + id: number | string; + method: "address_tx_update"; + params: RpcAddressTxSubscriptionParams; +} + +export type RpcSubscriptionType = "tx_update" | "address_tx_update" | "address_balance_update"; + +export interface RpcTxUpdateNotificationParams { + tx_id: string; + tx_type: TransactionType; + tx_status: TransactionStatus | MempoolTransactionStatus; +} + +export interface RpcTxUpdateNotificationResponse { + jsonrpc: "2.0"; + method: "tx_update"; + params: RpcTxUpdateNotificationParams; +} + +export interface RpcTxUpdateSubscriptionParams { + event: "tx_update"; + tx_id: string; +} + +export interface RpcTxUpdateSubscriptionRequest { + jsonrpc: "2.0"; + id: number | string; + method: "tx_update"; + params: RpcTxUpdateSubscriptionParams; +} + +>>>>>>> f1f6d8f7 (docs: add schema for token metadata) From c0b6bf5d76e95b2b033014f50f8af1af932d20c6 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Tue, 4 May 2021 16:14:34 +0500 Subject: [PATCH 02/44] chore: add sample response for token metadata --- src/api/init.ts | 11 +++++++ src/api/routes/tokenes/tokens.ts | 49 ++++++++++++++++++++++++++++++++ src/datastore/common.ts | 11 ++++++- src/datastore/memory-store.ts | 7 +++++ src/datastore/postgres-store.ts | 37 ++++++++++++++++++++++++ 5 files changed, 114 insertions(+), 1 deletion(-) create mode 100644 src/api/routes/tokenes/tokens.ts diff --git a/src/api/init.ts b/src/api/init.ts index a8b5be7ebc..69d374d09f 100644 --- a/src/api/init.ts +++ b/src/api/init.ts @@ -40,6 +40,7 @@ import * as pathToRegex from 'path-to-regexp'; import * as expressListEndpoints from 'express-list-endpoints'; import { createMiddleware as createPrometheusMiddleware } from '@promster/express'; import { createMicroblockRouter } from './routes/microblock'; +import { createTokenRouter } from './routes/tokenes/tokens'; export interface ApiServer { expressApp: ExpressWithAsync; @@ -201,6 +202,16 @@ export async function startApiServer(opts: { app.use((req, res) => { res.status(404).json({ message: `${req.method} ${req.path} not found` }); }); + //Setup routes for token metadata + app.use( + '/tokens', + (() => { + const router = addAsync(express.Router()); + router.use(cors()); + router.use('/:contractId', createTokenRouter(datastore)); + return router; + })() + ); // Setup error handler (must be added at the end of the middleware stack) app.use(((error, req, res, next) => { diff --git a/src/api/routes/tokenes/tokens.ts b/src/api/routes/tokenes/tokens.ts new file mode 100644 index 0000000000..68a6183f32 --- /dev/null +++ b/src/api/routes/tokenes/tokens.ts @@ -0,0 +1,49 @@ +import { addAsync, RouterWithAsync } from '@awaitjs/express'; +import * as express from 'express'; +import { DataStore } from '../../../datastore/common'; +import { FTMetadataResponse, NFTMetadataResponse } from '@blockstack/stacks-blockchain-api-types'; + +export function createTokenRouter(db: DataStore): RouterWithAsync { + const router = addAsync(express.Router()); + router.use(express.json()); + + //router for fungible tokens + router.getAsync('/ft/metadata', async (req, res) => { + const { contractId } = req.params; + + const metadata = await db.getftMetadata(contractId); + if (!metadata.found) { + res.status(404).json({ error: 'tokens not found' }); + return; + } + + const response: FTMetadataResponse = { + name: 'sample asset name', + description: 'sample asset description', + image_uri: 'image uri', + image_canonical_uri: 'canonical image uri', + }; + res.send(response); + }); + + //router for non-fungible tokens + router.getAsync('/nft/metadata', async (req, res) => { + const { contractId } = req.params; + const metadata = await db.getNftMetadata(contractId); + + if (!metadata.found) { + res.status(404).json({ error: 'tokens not found' }); + return; + } + + const response: NFTMetadataResponse = { + name: metadata.result.name, + description: metadata.result.description, + image_uri: metadata.result.image_uri, + image_canonical_uri: metadata.result.image_canonical_uri, + }; + res.send(response); + }); + + return router; +} diff --git a/src/datastore/common.ts b/src/datastore/common.ts index 4968278742..ecb18cce3a 100644 --- a/src/datastore/common.ts +++ b/src/datastore/common.ts @@ -498,6 +498,12 @@ export interface DbRawEventRequest { event_path: string; payload: string; } +export interface DbAssetMetadata { + name: string; + description: string; + image_uri: string; + image_canonical_uri: string; +} export type BlockIdentifier = | { hash: string } @@ -764,8 +770,11 @@ export interface DataStore extends DataStoreEventEmitter { address: string, blockHeight: number ): Promise>; - close(): Promise; getUnlockedAddressesAtBlock(block: DbBlock): Promise; + getftMetadata(contractId: string): Promise>; + getNftMetadata(contractId: string): Promise>; + + close(): Promise; } export function getAssetEventId(event_index: number, event_tx_id: string): string { diff --git a/src/datastore/memory-store.ts b/src/datastore/memory-store.ts index 67386e4c9f..5b40929005 100644 --- a/src/datastore/memory-store.ts +++ b/src/datastore/memory-store.ts @@ -35,6 +35,7 @@ import { DbGetBlockWithMetadataResponse, BlockIdentifier, StxUnlockEvent, + DbAssetMetadata, } from './common'; import { logger, FoundOrNot } from '../helpers'; import { AddressTokenOfferingLocked, TransactionType } from '@stacks/stacks-blockchain-api-types'; @@ -702,4 +703,10 @@ export class MemoryDataStore close() { return Promise.resolve(); } + getftMetadata(contractId: string): Promise> { + throw new Error('Method not implemented.'); + } + getNftMetadata(contractId: string): Promise> { + throw new Error('Method not implemented.'); + } } diff --git a/src/datastore/postgres-store.ts b/src/datastore/postgres-store.ts index 91d36f5708..4f3966b79e 100644 --- a/src/datastore/postgres-store.ts +++ b/src/datastore/postgres-store.ts @@ -72,6 +72,7 @@ import { DbRawEventRequest, BlockIdentifier, StxUnlockEvent, + DbAssetMetadata, } from './common'; import { AddressTokenOfferingLocked, @@ -5680,6 +5681,42 @@ export class PgDataStore return { found: false }; }); } + async getftMetadata(contractId: string): Promise> { + /** + * extract nft information from db here.. + */ + + //sample metadata + const metadata: DbAssetMetadata = { + name: 'sample asset name', + description: 'sample asset description', + image_uri: 'image uri', + image_canonical_uri: 'canonical image uri', + }; + + return { + found: true, + result: metadata, + }; + } + async getNftMetadata(contractId: string): Promise> { + /** + * extract nft information from db here.. + */ + + //sample metadata + const metadata: DbAssetMetadata = { + name: 'sample asset name', + description: 'sample asset description', + image_uri: 'image uri', + image_canonical_uri: 'canonical image uri', + }; + + return { + found: true, + result: metadata, + }; + } async close(): Promise { await this.pool.end(); From 68110315e100212644d52310aa63da30adebebf5 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Mon, 10 May 2021 15:26:02 +0500 Subject: [PATCH 03/44] chore: wip: write template for contract handler --- src/datastore/postgres-store.ts | 12 ++-- src/event-stream/contract-handler.ts | 87 ++++++++++++++++++++++++++++ 2 files changed, 93 insertions(+), 6 deletions(-) create mode 100644 src/event-stream/contract-handler.ts diff --git a/src/datastore/postgres-store.ts b/src/datastore/postgres-store.ts index 4f3966b79e..78f8a8d10a 100644 --- a/src/datastore/postgres-store.ts +++ b/src/datastore/postgres-store.ts @@ -5681,7 +5681,7 @@ export class PgDataStore return { found: false }; }); } - async getftMetadata(contractId: string): Promise> { + getftMetadata(contractId: string): Promise> { /** * extract nft information from db here.. */ @@ -5694,12 +5694,12 @@ export class PgDataStore image_canonical_uri: 'canonical image uri', }; - return { + return Promise.resolve({ found: true, result: metadata, - }; + }); } - async getNftMetadata(contractId: string): Promise> { + getNftMetadata(contractId: string): Promise> { /** * extract nft information from db here.. */ @@ -5712,10 +5712,10 @@ export class PgDataStore image_canonical_uri: 'canonical image uri', }; - return { + return Promise.resolve({ found: true, result: metadata, - }; + }); } async close(): Promise { diff --git a/src/event-stream/contract-handler.ts b/src/event-stream/contract-handler.ts new file mode 100644 index 0000000000..5715b03fff --- /dev/null +++ b/src/event-stream/contract-handler.ts @@ -0,0 +1,87 @@ +import { DbBnsName, DbBnsNamespace } from './../../src/datastore/common'; +import { + BnsContractIdentifier, + nameFunctions, + namespaceReadyFunction, + printTopic, +} from './../../src/bns-constants'; +import { SmartContractEvent } from './core-node-message'; +import { addressToString } from '@stacks/transactions'; +import { + getFunctionName, + parseNameRawValue, + parseNamespaceRawValue, +} from './../../src/bns-helpers'; + +export interface SmartContractEventExtracts { + event: SmartContractEvent; + functionName: string; + block_height: number; + index_block_hash: string; +} + +export function handleContractEvent(extracts: SmartContractEventExtracts) { + const { topic, contract_identifier, raw_value } = extracts.event.contract_event; + const { txid } = extracts.event; + + if ( + topic === printTopic && + (contract_identifier === BnsContractIdentifier.mainnet || + contract_identifier === BnsContractIdentifier.testnet) + ) { + const { functionName, block_height, index_block_hash } = extracts; + handleBnsEvent(functionName, raw_value, block_height, index_block_hash, txid); + } else { + // todo add condition for token contract identifiers etc. + handleTokenEvent(); + } +} + +function handleBnsEvent( + bnsFunctionName: string, + bnsRawValue: string, + block_height: number, + index_block_hash: string, + txid: string +) { + if (nameFunctions.includes(bnsFunctionName)) { + //todo change name functions variable name + // const attachment = parseNameRawValue(event.contract_event.raw_value); + const attachment = parseNameRawValue(bnsRawValue); + const name: DbBnsName = { + name: attachment.attachment.metadata.name.concat( + '.', + attachment.attachment.metadata.namespace + ), + namespace_id: attachment.attachment.metadata.namespace, + address: addressToString(attachment.attachment.metadata.tx_sender), + expire_block: 0, + registered_at: block_height, + zonefile_hash: attachment.attachment.hash, + zonefile: '', //zone file will be updated in /attachments/new + latest: true, + tx_id: txid, + status: attachment.attachment.metadata.op, + index_block_hash: index_block_hash, + canonical: true, + atch_resolved: false, //saving an unresoved BNS name + }; + // dbTx.names.push(name); + } + if (bnsFunctionName === namespaceReadyFunction) { + //event received for namespaces + const namespace: DbBnsNamespace | undefined = parseNamespaceRawValue( + bnsRawValue, + block_height, + txid, + index_block_hash + ); + if (namespace != undefined) { + // dbTx.namespaces.push(namespace); + } + } +} + +function handleTokenEvent() { + throw Error('not yet implmented'); +} From 5fa63402d73d39a627aa52331b370a4bbc46fc2e Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Mon, 17 May 2021 14:55:16 +0500 Subject: [PATCH 04/44] refactor: refactor ft and nft names --- docs/api/tokens/fungible-token.schema.json | 2 +- docs/api/tokens/non-fungible-token.schema.json | 2 +- docs/generated.d.ts | 8 ++++---- docs/index.d.ts | 3 --- src/api/routes/tokenes/tokens.ts | 4 ++-- src/datastore/memory-store.ts | 2 +- 6 files changed, 9 insertions(+), 12 deletions(-) diff --git a/docs/api/tokens/fungible-token.schema.json b/docs/api/tokens/fungible-token.schema.json index ce8a5270bc..805c72e03a 100644 --- a/docs/api/tokens/fungible-token.schema.json +++ b/docs/api/tokens/fungible-token.schema.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema", "$id": "fungible-token-metadata", - "title": "FTMetadataResponse", + "title": "FungibleTokenMetadataResponse", "type": "object", "required": ["name","description", "image_uri", "image_canonical_uri" ], "properties": { diff --git a/docs/api/tokens/non-fungible-token.schema.json b/docs/api/tokens/non-fungible-token.schema.json index da48cb88c2..1e1cf8d6e8 100644 --- a/docs/api/tokens/non-fungible-token.schema.json +++ b/docs/api/tokens/non-fungible-token.schema.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema", "$id": "non-fungible-token-metadata", - "title": "NFTMetadataResponse", + "title": "NonFungibleTokenMetadataResponse", "type": "object", "required": ["name","description", "image_uri", "image_canonical_uri" ], "properties": { diff --git a/docs/generated.d.ts b/docs/generated.d.ts index b00b018ca2..ec2c118ae9 100644 --- a/docs/generated.d.ts +++ b/docs/generated.d.ts @@ -77,8 +77,8 @@ export type SchemaMergeRootStub = | RosettaNetworkOptionsResponse | RosettaStatusRequest | RosettaNetworkStatusResponse - | FTMetadataResponse - | NFTMetadataResponse + | FungibleTokenMetadataResponse + | NonFungibleTokenMetadataResponse | MempoolTransactionListResponse | GetRawTransactionResult | TransactionResults @@ -2672,7 +2672,7 @@ export interface RosettaPeers { }; [k: string]: unknown | undefined; } -export interface FTMetadataResponse { +export interface FungibleTokenMetadataResponse { /** * Identifies the asset to which this token represents */ @@ -2691,7 +2691,7 @@ export interface FTMetadataResponse { image_canonical_uri: string; [k: string]: unknown | undefined; } -export interface NFTMetadataResponse { +export interface NonFungibleTokenMetadataResponse { /** * Identifies the asset to which this token represents */ diff --git a/docs/index.d.ts b/docs/index.d.ts index 39cc83ba68..668512867f 100644 --- a/docs/index.d.ts +++ b/docs/index.d.ts @@ -1,7 +1,5 @@ -<<<<<<< HEAD export * from './generated'; export * from './socket-io'; -======= /** This file is generated automatically. **DO NOT MODIFY THIS FILE DIRECTLY** Updates are made by editing the JSON Schema files in the 'docs/' directory, @@ -2890,4 +2888,3 @@ export interface RpcTxUpdateSubscriptionRequest { params: RpcTxUpdateSubscriptionParams; } ->>>>>>> f1f6d8f7 (docs: add schema for token metadata) diff --git a/src/api/routes/tokenes/tokens.ts b/src/api/routes/tokenes/tokens.ts index 68a6183f32..845f6f06ac 100644 --- a/src/api/routes/tokenes/tokens.ts +++ b/src/api/routes/tokenes/tokens.ts @@ -1,7 +1,7 @@ import { addAsync, RouterWithAsync } from '@awaitjs/express'; import * as express from 'express'; import { DataStore } from '../../../datastore/common'; -import { FTMetadataResponse, NFTMetadataResponse } from '@blockstack/stacks-blockchain-api-types'; +import { FTMetadataResponse, NFTMetadataResponse } from '@stacks/stacks-blockchain-api-types'; export function createTokenRouter(db: DataStore): RouterWithAsync { const router = addAsync(express.Router()); @@ -11,7 +11,7 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { router.getAsync('/ft/metadata', async (req, res) => { const { contractId } = req.params; - const metadata = await db.getftMetadata(contractId); + const metadata = await db.getFtMetadata(contractId); if (!metadata.found) { res.status(404).json({ error: 'tokens not found' }); return; diff --git a/src/datastore/memory-store.ts b/src/datastore/memory-store.ts index 5b40929005..692628e8c1 100644 --- a/src/datastore/memory-store.ts +++ b/src/datastore/memory-store.ts @@ -703,7 +703,7 @@ export class MemoryDataStore close() { return Promise.resolve(); } - getftMetadata(contractId: string): Promise> { + getFtMetadata(contractId: string): Promise> { throw new Error('Method not implemented.'); } getNftMetadata(contractId: string): Promise> { From 4073766829a36ec9d134241cec0b13411d8a33cf Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Thu, 27 May 2021 23:28:39 +0500 Subject: [PATCH 05/44] feat: handle FT/NFT compliance contract deployment for metadata --- package.json | 1 + src/api/routes/tokenes/tokens.ts | 23 +- src/datastore/common.ts | 6 +- src/datastore/memory-store.ts | 6 + src/datastore/postgres-store.ts | 97 +++-- src/event-stream/contract-handler.ts | 87 ----- src/event-stream/event-server.ts | 12 + src/event-stream/tokens-contract-handler.ts | 372 +++++++++++++++++++ src/migrations/1621511823381_nft-metadata.ts | 43 +++ src/migrations/1621511832113_ft-metadata.ts | 42 +++ 10 files changed, 560 insertions(+), 129 deletions(-) delete mode 100644 src/event-stream/contract-handler.ts create mode 100644 src/event-stream/tokens-contract-handler.ts create mode 100644 src/migrations/1621511823381_nft-metadata.ts create mode 100644 src/migrations/1621511832113_ft-metadata.ts diff --git a/package.json b/package.json index f252d71710..b00a179091 100644 --- a/package.json +++ b/package.json @@ -144,6 +144,7 @@ "split2": "^3.2.2", "strict-event-emitter-types": "^2.0.0", "typescript": "^4.2.4", + "uri-js": "^4.4.1", "uuid": "^8.0.0", "winston": "^3.2.1", "ws": "^7.4.6", diff --git a/src/api/routes/tokenes/tokens.ts b/src/api/routes/tokenes/tokens.ts index 845f6f06ac..d311071af3 100644 --- a/src/api/routes/tokenes/tokens.ts +++ b/src/api/routes/tokenes/tokens.ts @@ -17,13 +17,15 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { return; } + const { name, description, image_uri, image_canonical_uri } = metadata.result; + const response: FTMetadataResponse = { - name: 'sample asset name', - description: 'sample asset description', - image_uri: 'image uri', - image_canonical_uri: 'canonical image uri', + name: name, + description: description, + image_uri: image_uri, + image_canonical_uri: image_canonical_uri, }; - res.send(response); + res.status(200).json(response); }); //router for non-fungible tokens @@ -35,14 +37,15 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { res.status(404).json({ error: 'tokens not found' }); return; } + const { name, description, image_uri, image_canonical_uri } = metadata.result; const response: NFTMetadataResponse = { - name: metadata.result.name, - description: metadata.result.description, - image_uri: metadata.result.image_uri, - image_canonical_uri: metadata.result.image_canonical_uri, + name: name, + description: description, + image_uri: image_uri, + image_canonical_uri: image_canonical_uri, }; - res.send(response); + res.status(200).json(response); }); return router; diff --git a/src/datastore/common.ts b/src/datastore/common.ts index ecb18cce3a..e4f4080d62 100644 --- a/src/datastore/common.ts +++ b/src/datastore/common.ts @@ -503,6 +503,7 @@ export interface DbAssetMetadata { description: string; image_uri: string; image_canonical_uri: string; + contract_id: string; } export type BlockIdentifier = @@ -771,9 +772,10 @@ export interface DataStore extends DataStoreEventEmitter { blockHeight: number ): Promise>; getUnlockedAddressesAtBlock(block: DbBlock): Promise; - getftMetadata(contractId: string): Promise>; + getFtMetadata(contractId: string): Promise>; getNftMetadata(contractId: string): Promise>; - + updateNFtMetadata(nftMetadata: DbAssetMetadata): Promise; + updateFtMetadata(ftMetadata: DbAssetMetadata): Promise; close(): Promise; } diff --git a/src/datastore/memory-store.ts b/src/datastore/memory-store.ts index 692628e8c1..b7c6324ba6 100644 --- a/src/datastore/memory-store.ts +++ b/src/datastore/memory-store.ts @@ -709,4 +709,10 @@ export class MemoryDataStore getNftMetadata(contractId: string): Promise> { throw new Error('Method not implemented.'); } + updateNFtMetadata(nftMetadata: DbAssetMetadata): Promise { + throw new Error('Method not implemented.'); + } + updateFtMetadata(ftMetadata: DbAssetMetadata): Promise { + throw new Error('Method not implemented.'); + } } diff --git a/src/datastore/postgres-store.ts b/src/datastore/postgres-store.ts index 78f8a8d10a..20fb5dd680 100644 --- a/src/datastore/postgres-store.ts +++ b/src/datastore/postgres-store.ts @@ -5681,40 +5681,77 @@ export class PgDataStore return { found: false }; }); } - getftMetadata(contractId: string): Promise> { - /** - * extract nft information from db here.. - */ - - //sample metadata - const metadata: DbAssetMetadata = { - name: 'sample asset name', - description: 'sample asset description', - image_uri: 'image uri', - image_canonical_uri: 'canonical image uri', - }; + async getFtMetadata(contractId: string): Promise> { + return this.query(async client => { + const queryResult = await client.query( + ` + SELECT name, description, image_uri, image_canonical_uri + FROM ft_metadata + WHERE contract_id = $1 + LIMIT 1 + `, + [contractId] + ); + if (queryResult.rowCount > 0) { + return { + found: true, + result: queryResult.rows[0], + }; + } else { + return { found: false } as const; + } + }); + } - return Promise.resolve({ - found: true, - result: metadata, + async getNftMetadata(contractId: string): Promise> { + return this.query(async client => { + const queryResult = await client.query( + ` + SELECT name, description, image_uri, image_canonical_uri + FROM nft_metadata + WHERE contract_id = $1 + LIMIT 1 + `, + [contractId] + ); + if (queryResult.rowCount > 0) { + return { + found: true, + result: queryResult.rows[0], + }; + } else { + return { found: false } as const; + } }); } - getNftMetadata(contractId: string): Promise> { - /** - * extract nft information from db here.. - */ - - //sample metadata - const metadata: DbAssetMetadata = { - name: 'sample asset name', - description: 'sample asset description', - image_uri: 'image uri', - image_canonical_uri: 'canonical image uri', - }; - return Promise.resolve({ - found: true, - result: metadata, + async updateFtMetadata(ftMetadata: DbAssetMetadata): Promise { + const { name, description, image_uri, image_canonical_uri, contract_id } = ftMetadata; + return await this.queryTx(async client => { + const result = await client.query( + ` + INSERT INTO ft_metadata( + name, description, image_uri, image_canonical_uri, contract_id + ) values($1, $2, $3, $4, $5) + `, + [name, description, image_uri, image_canonical_uri, contract_id] + ); + return result.rowCount; + }); + } + + async updateNFtMetadata(nftMetadata: DbAssetMetadata): Promise { + const { name, description, image_uri, image_canonical_uri, contract_id } = nftMetadata; + return await this.queryTx(async client => { + const result = await client.query( + ` + INSERT INTO nft_metadata( + name, description, image_uri, image_canonical_uri, contract_id + ) values($1, $2, $3, $4, $5) + `, + [name, description, image_uri, image_canonical_uri, contract_id] + ); + return result.rowCount; }); } diff --git a/src/event-stream/contract-handler.ts b/src/event-stream/contract-handler.ts deleted file mode 100644 index 5715b03fff..0000000000 --- a/src/event-stream/contract-handler.ts +++ /dev/null @@ -1,87 +0,0 @@ -import { DbBnsName, DbBnsNamespace } from './../../src/datastore/common'; -import { - BnsContractIdentifier, - nameFunctions, - namespaceReadyFunction, - printTopic, -} from './../../src/bns-constants'; -import { SmartContractEvent } from './core-node-message'; -import { addressToString } from '@stacks/transactions'; -import { - getFunctionName, - parseNameRawValue, - parseNamespaceRawValue, -} from './../../src/bns-helpers'; - -export interface SmartContractEventExtracts { - event: SmartContractEvent; - functionName: string; - block_height: number; - index_block_hash: string; -} - -export function handleContractEvent(extracts: SmartContractEventExtracts) { - const { topic, contract_identifier, raw_value } = extracts.event.contract_event; - const { txid } = extracts.event; - - if ( - topic === printTopic && - (contract_identifier === BnsContractIdentifier.mainnet || - contract_identifier === BnsContractIdentifier.testnet) - ) { - const { functionName, block_height, index_block_hash } = extracts; - handleBnsEvent(functionName, raw_value, block_height, index_block_hash, txid); - } else { - // todo add condition for token contract identifiers etc. - handleTokenEvent(); - } -} - -function handleBnsEvent( - bnsFunctionName: string, - bnsRawValue: string, - block_height: number, - index_block_hash: string, - txid: string -) { - if (nameFunctions.includes(bnsFunctionName)) { - //todo change name functions variable name - // const attachment = parseNameRawValue(event.contract_event.raw_value); - const attachment = parseNameRawValue(bnsRawValue); - const name: DbBnsName = { - name: attachment.attachment.metadata.name.concat( - '.', - attachment.attachment.metadata.namespace - ), - namespace_id: attachment.attachment.metadata.namespace, - address: addressToString(attachment.attachment.metadata.tx_sender), - expire_block: 0, - registered_at: block_height, - zonefile_hash: attachment.attachment.hash, - zonefile: '', //zone file will be updated in /attachments/new - latest: true, - tx_id: txid, - status: attachment.attachment.metadata.op, - index_block_hash: index_block_hash, - canonical: true, - atch_resolved: false, //saving an unresoved BNS name - }; - // dbTx.names.push(name); - } - if (bnsFunctionName === namespaceReadyFunction) { - //event received for namespaces - const namespace: DbBnsNamespace | undefined = parseNamespaceRawValue( - bnsRawValue, - block_height, - txid, - index_block_hash - ); - if (namespace != undefined) { - // dbTx.namespaces.push(namespace); - } - } -} - -function handleTokenEvent() { - throw Error('not yet implmented'); -} diff --git a/src/event-stream/event-server.ts b/src/event-stream/event-server.ts index 2307ed65d0..607ccb6b2c 100644 --- a/src/event-stream/event-server.ts +++ b/src/event-stream/event-server.ts @@ -78,6 +78,7 @@ import { } from '../bns-constants'; import * as zoneFileParser from 'zone-file'; +import { hasTokens, TokensContractHandler } from './tokens-contract-handler'; async function handleRawEventRequest( eventPath: string, @@ -335,6 +336,17 @@ function parseDataStoreTxEventData( abi: JSON.stringify(tx.core_tx.contract_abi), canonical: true, }); + //check if this contract uses fungible/non fungible tokens + if (tx.core_tx.contract_abi && hasTokens(tx.core_tx.contract_abi)) { + //TODO start it in a seperate thread + await new TokensContractHandler( + tx.sender_address, + tx.parsed_tx.payload.name, + tx.core_tx.contract_abi, + db, + chainId + ).start(); + } } return dbTx; }); diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts new file mode 100644 index 0000000000..c19cbb09c4 --- /dev/null +++ b/src/event-stream/tokens-contract-handler.ts @@ -0,0 +1,372 @@ +import { DataStore, DbAssetMetadata } from '../datastore/common'; +import { + callReadOnlyFunction, + ChainID, + ClarityAbi, + ClarityAbiFunction, + ClarityType, + ClarityValue, + getAddressFromPrivateKey, + makeRandomPrivKey, + ReadOnlyFunctionOptions, + StringAsciiCV, + TransactionVersion, + UIntCV, +} from '@stacks/transactions'; +import { GetStacksNetwork } from '../bns-helpers'; +import { logError, logger } from '../helpers'; +import * as URI from 'uri-js'; +import { StacksNetwork } from '@stacks/network'; + +const PUBLIC_IPFS = 'https://ipfs.io'; + +const FT_FUNCTIONS: ClarityAbiFunction[] = [ + { + access: 'public', + args: [ + { type: 'uint128', name: 'amount' }, + { type: 'principal', name: 'sender' }, + { type: 'principal', name: 'recipient' }, + { type: { optional: { buffer: { length: 34 } } }, name: 'memo' }, + ], + name: 'transfer', + outputs: { type: { response: { ok: 'bool', error: 'uint128' } } }, + }, + { + access: 'read_only', + args: [], + name: 'get-name', + outputs: { type: { response: { ok: { 'string-ascii': { length: 32 } }, error: 'uint128' } } }, + }, + { + access: 'read_only', + args: [], + name: 'get-symbol', + outputs: { type: { response: { ok: { 'string-ascii': { length: 32 } }, error: 'uint128' } } }, + }, + { + access: 'read_only', + args: [], + name: 'get-decimals', + outputs: { type: { response: { ok: 'uint128', error: 'uint128' } } }, + }, + { + access: 'read_only', + args: [{ type: 'principal', name: 'address' }], + name: 'get-balance-of', + outputs: { type: { response: { ok: 'uint128', error: 'uint128' } } }, + }, + { + access: 'read_only', + args: [], + name: 'get-total-supply', + outputs: { type: { response: { ok: 'uint128', error: 'uint128' } } }, + }, + { + access: 'read_only', + args: [], + name: 'get-token-uri', + outputs: { + type: { + response: { + ok: { + optional: { 'string-ascii': { length: 256 } }, + }, + error: 'uint128', + }, + }, + }, + }, +]; + +const NFT_FUNCTIONS: ClarityAbiFunction[] = [ + { + access: 'read_only', + args: [], + name: 'get-last-token-id', + outputs: { + type: { + response: { + ok: 'uint128', + error: 'uint128', + }, + }, + }, + }, + { + access: 'read_only', + args: [{ name: 'any', type: 'uint128' }], + name: 'get-token-uri', + outputs: { + type: { + response: { + ok: { + optional: { 'string-ascii': { length: 256 } }, + }, + error: 'uint128', + }, + }, + }, + }, + { + access: 'read_only', + args: [{ type: 'uint128', name: 'any' }], + name: 'get-owner', + outputs: { + type: { + response: { + ok: { + optional: 'principal', + }, + error: 'uint128', + }, + }, + }, + }, + { + access: 'public', + args: [ + { type: 'uint128', name: 'id' }, + { type: 'principal', name: 'sender' }, + { type: 'principal', name: 'recipient' }, + ], + name: 'transfer', + outputs: { + type: { + response: { + ok: 'bool', + error: { + tuple: [ + { type: { 'string-ascii': { length: 32 } }, name: 'kind' }, + { type: 'uint128', name: 'code' }, + ], + }, + }, + }, + }, + }, +]; + +interface TokenApiData { + name: string; + imageUrl: string; + description: string; +} + +export class TokensContractHandler { + private contractAddress: string; + private contractName: string; + private contractAbi: ClarityAbi; + private db: DataStore; + private randomPrivKey = makeRandomPrivKey(); + private chainId: ChainID; + private stacksNetwork: StacksNetwork; + private address: string; + + constructor( + contractAddress: string, + contractName: string, + smartContractAbi: ClarityAbi, + datastore: DataStore, + chainId: ChainID + ) { + this.contractAddress = contractAddress; + this.contractName = contractName; + this.contractAbi = smartContractAbi; + this.db = datastore; + this.chainId = chainId; + + this.stacksNetwork = GetStacksNetwork(this.chainId); + this.address = getAddressFromPrivateKey( + this.randomPrivKey.data, + this.chainId === ChainID.Mainnet ? TransactionVersion.Mainnet : TransactionVersion.Testnet + ); + } + async start() { + if (this.contractAbi.fungible_tokens.length > 0) { + if (this.isCompliance(FT_FUNCTIONS)) { + await this.handleFTContract(); + } + } + + if (this.contractAbi.non_fungible_tokens.length > 0) { + if (this.isCompliance(NFT_FUNCTIONS)) { + await this.handleNFTContract(); + } + } + } + + /** + * fetch Fungible contract metadata + */ + private async handleFTContract() { + const contractCallName = await this.makeReadOnlyContractCall('get-name', []); + const contractCallUri = await this.makeReadOnlyContractCall('get-token-uri', []); + + const nameCV = this.checkAndParseString(contractCallName); + const uriCV = this.checkAndParseString(contractCallUri); + + if (uriCV) { + const metadata = await this.getMetadataFromUri(uriCV.data); + metadata.name = nameCV ? nameCV.data : metadata.name; //prefer the on-chain name + await this.storeFTMetadata(metadata); + } + } + + /** + * fetch Non Fungible contract metadata + */ + private async handleNFTContract() { + const contractCallTokenId = await this.makeReadOnlyContractCall('get-last-token-id', []); + const tokenId = this.checkAndParseUintCV(contractCallTokenId); + + if (tokenId) { + const contractCallUri = await this.makeReadOnlyContractCall('get-token-uri', [tokenId]); + const uriCV = this.checkAndParseString(contractCallUri); + + if (uriCV) { + const metadata = await this.getMetadataFromUri(uriCV.data); + await this.storeNFTMetadata(metadata); + } + } + } + + /**helpng method for creating ipfs url */ + private makeHostedUrl(uri: string) { + const parsedURI = URI.parse(uri); + return `${PUBLIC_IPFS}/${parsedURI.host}${parsedURI.path}`; + } + + async makeApiCall(url: string): Promise { + const result = await fetch(url); + if (!result.ok) { + let msg = ''; + try { + msg = await result.text(); + } catch (error) { + logError(`Error getting text`, error); + } + throw new Error(`Response ${result.status}: ${result.statusText} fetching ${url} - ${msg}`); + } + try { + const resultString = await result.text(); + return JSON.parse(resultString) as TokenApiData; + } catch (error) { + logError(`Error reading response from ${url}`, error); + throw error; + } + } + /** + * fetch metadata from ipfs uri + */ + private async getMetadataFromUri(token_uri: string): Promise { + const response = await this.makeApiCall(this.makeHostedUrl(token_uri)); + + const metadata: DbAssetMetadata = { + name: response.name, + description: response.description, + image_uri: response.imageUrl, + image_canonical_uri: token_uri, //todo is this correct + contract_id: `${this.contractAddress}.${this.contractName}`, + }; + return metadata; + } + + /** + * make readonly contract call + */ + + private async makeReadOnlyContractCall( + functionName: string, + functionArgs: ClarityValue[] + ): Promise { + const txOptions: ReadOnlyFunctionOptions = { + senderAddress: this.address, + contractAddress: this.contractAddress, + contractName: this.contractName, + functionName: functionName, + functionArgs: functionArgs, + network: this.stacksNetwork, + }; + return await callReadOnlyFunction(txOptions); + } + + /** + *Store ft metadata to db + */ + private async storeFTMetadata(ft_metadata: DbAssetMetadata) { + try { + await this.db.updateFtMetadata(ft_metadata); + } catch (error) { + logger.error(`Error: error occured while updating FT metadata`); + } + } + + /** + *store NFT Metadata to db + */ + private async storeNFTMetadata(nft_metadata: DbAssetMetadata) { + try { + await this.db.updateNFtMetadata(nft_metadata); + } catch (error) { + logger.error(`Error: error occured while updating NFT metadata`); + } + } + + /** + * This method check if the contract is compliance with sip-09 and sip-10 + * Ref: https://github.com/stacksgov/sips/tree/main/sips + */ + private isCompliance(standardFunction: ClarityAbiFunction[]): boolean { + return standardFunction.every(abiFun => this.findFunction(abiFun, this.contractAbi.functions)); + } + + /** + * check if the fun exist in the function list + * @param fun - function to be found + * @param functionList - list of functions + * @returns - true if function is in the list false otherwise + */ + private findFunction(fun: ClarityAbiFunction, functionList: ClarityAbiFunction[]): boolean { + const found = functionList.find(standardFunction => { + if (standardFunction.name === fun.name && standardFunction.args.length === fun.args.length) { + if (standardFunction.args.length > 0) { + standardFunction.args.forEach((value, index) => { + if (value != fun.args[index]) { + return false; + } + }); + } + return true; + } + return false; + }); + return found != undefined; + } + + private checkAndParseUintCV(responseCV: ClarityValue): UIntCV | undefined { + if (responseCV.type == ClarityType.ResponseOk && responseCV.value.type == ClarityType.UInt) { + return responseCV.value; + } + return; + } + + private checkAndParseString(responseCV: ClarityValue): StringAsciiCV | undefined { + if ( + responseCV.type == ClarityType.ResponseOk && + responseCV.value.type == ClarityType.OptionalSome && + responseCV.value.value.type == ClarityType.StringASCII + ) { + return responseCV.value.value; + } + } +} + +/** + * This method checks if a the contract abi has fungible or non fungible tokens + * @param contract_abi - clarity abi of the contract + * @returns true if has tokens false if does not + */ +export function hasTokens(contract_abi: ClarityAbi): boolean { + return contract_abi.fungible_tokens.length > 0 || contract_abi.non_fungible_tokens.length > 0; +} diff --git a/src/migrations/1621511823381_nft-metadata.ts b/src/migrations/1621511823381_nft-metadata.ts new file mode 100644 index 0000000000..c14de273a8 --- /dev/null +++ b/src/migrations/1621511823381_nft-metadata.ts @@ -0,0 +1,43 @@ +/* eslint-disable @typescript-eslint/camelcase */ +import { MigrationBuilder, ColumnDefinitions } from 'node-pg-migrate'; + +export const shorthands: ColumnDefinitions | undefined = undefined; + +export async function up(pgm: MigrationBuilder): Promise { + pgm.createTable('nft_metadata', { + id: { + type: 'serial', + primaryKey: true, + }, + name: { + type: 'string', + notNull: true, + }, + description: { + type: 'string', + notNull: true, + }, + image_uri: { + type: 'string', + notNull: true, + }, + image_canonical_uri: { + type: 'string', + notNull: true, + }, + contract_id: { + type: 'string', + notNull: true, + } + }); + + pgm.createIndex('nft_metadata','name' ) + pgm.createIndex('nft_metadata','description' ) + pgm.createIndex('nft_metadata','image_uri' ) + pgm.createIndex('nft_metadata','image_canonical_uri' ) + +} + +export async function down(pgm: MigrationBuilder): Promise { + pgm.dropTable('nft_metadata') +} diff --git a/src/migrations/1621511832113_ft-metadata.ts b/src/migrations/1621511832113_ft-metadata.ts new file mode 100644 index 0000000000..ee4ecd4574 --- /dev/null +++ b/src/migrations/1621511832113_ft-metadata.ts @@ -0,0 +1,42 @@ +/* eslint-disable @typescript-eslint/camelcase */ +import { MigrationBuilder, ColumnDefinitions } from 'node-pg-migrate'; + +export const shorthands: ColumnDefinitions | undefined = undefined; + +export async function up(pgm: MigrationBuilder): Promise { + pgm.createTable('ft_metadata', { + id: { + type: 'serial', + primaryKey: true, + }, + name: { + type: 'string', + notNull: true, + }, + description: { + type: 'string', + notNull: true, + }, + image_uri: { + type: 'string', + notNull: true, + }, + image_canonical_uri: { + type: 'string', + notNull: true, + }, + contract_id: { + type: 'string', + notNull: true, + } + }); + + pgm.createIndex('ft_metadata','name' ) + pgm.createIndex('ft_metadata','description' ) + pgm.createIndex('ft_metadata','image_uri' ) + pgm.createIndex('ft_metadata','image_canonical_uri' ) +} + +export async function down(pgm: MigrationBuilder): Promise { + pgm.dropTable('ft_metadata'); +} From 4d93503d3a6e480ef9f41c0d03e11544fa689a80 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Fri, 28 May 2021 01:40:19 +0500 Subject: [PATCH 06/44] chore: add symbol and decimals field in FT metadata table --- docs/api/tokens/fungible-token.schema.json | 49 +++++++++----- docs/generated.d.ts | 8 +++ src/api/routes/tokenes/tokens.ts | 13 ++-- src/datastore/common.ts | 22 ++++-- src/datastore/memory-store.ts | 11 +-- src/datastore/postgres-store.ts | 55 ++++++++++----- src/event-stream/tokens-contract-handler.ts | 71 +++++++++++++------- src/migrations/1621511823381_nft-metadata.ts | 9 +-- src/migrations/1621511832113_ft-metadata.ts | 19 ++++-- 9 files changed, 180 insertions(+), 77 deletions(-) diff --git a/docs/api/tokens/fungible-token.schema.json b/docs/api/tokens/fungible-token.schema.json index 805c72e03a..59e90ad9a4 100644 --- a/docs/api/tokens/fungible-token.schema.json +++ b/docs/api/tokens/fungible-token.schema.json @@ -3,23 +3,38 @@ "$id": "fungible-token-metadata", "title": "FungibleTokenMetadataResponse", "type": "object", - "required": ["name","description", "image_uri", "image_canonical_uri" ], + "required": [ + "name", + "description", + "image_uri", + "image_canonical_uri", + "symbol", + "decimals" + ], "properties": { - "name": { - "type": "string", - "description": "Identifies the asset to which this token represents" - }, - "description": { - "type": "string", - "description": "Describes the asset to which this token represents" - }, - "image_uri": { - "type": "string", - "description": "A URI pointing to a resource with mime type image/* representing the asset to which this token represents. The API may provide a URI to a cached resource, dependending on configuration. Otherwise, this can be the same value as the canonical image URI." - }, - "image_canonical_uri": { - "type": "string", - "description": "The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive." - } + "name": { + "type": "string", + "description": "Identifies the asset to which this token represents" + }, + "description": { + "type": "string", + "description": "Describes the asset to which this token represents" + }, + "image_uri": { + "type": "string", + "description": "A URI pointing to a resource with mime type image/* representing the asset to which this token represents. The API may provide a URI to a cached resource, dependending on configuration. Otherwise, this can be the same value as the canonical image URI." + }, + "image_canonical_uri": { + "type": "string", + "description": "The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive." + }, + "symbol": { + "type": "string", + "description": "A shorter representation of a token. This is sometimes referred to as a \"ticker\". Examples: \"STX\", \"COOL\", etc. Typically, a token could be referred to as $SYMBOL when referencing it in writing." + }, + "decimals": { + "type": "number", + "description": "The number of decimal places in a token." + } } } diff --git a/docs/generated.d.ts b/docs/generated.d.ts index ec2c118ae9..97d603771e 100644 --- a/docs/generated.d.ts +++ b/docs/generated.d.ts @@ -2689,6 +2689,14 @@ export interface FungibleTokenMetadataResponse { * The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive. */ image_canonical_uri: string; + /** + * A shorter representation of a token. This is sometimes referred to as a "ticker". Examples: "STX", "COOL", etc. Typically, a token could be referred to as $SYMBOL when referencing it in writing. + */ + symbol: string; + /** + * The number of decimal places in a token. + */ + decimals: number; [k: string]: unknown | undefined; } export interface NonFungibleTokenMetadataResponse { diff --git a/src/api/routes/tokenes/tokens.ts b/src/api/routes/tokenes/tokens.ts index d311071af3..9c0d5796fc 100644 --- a/src/api/routes/tokenes/tokens.ts +++ b/src/api/routes/tokenes/tokens.ts @@ -1,7 +1,10 @@ import { addAsync, RouterWithAsync } from '@awaitjs/express'; import * as express from 'express'; import { DataStore } from '../../../datastore/common'; -import { FTMetadataResponse, NFTMetadataResponse } from '@stacks/stacks-blockchain-api-types'; +import { + FungibleTokenMetadataResponse, + NonFungibleTokenMetadataResponse, +} from '@stacks/stacks-blockchain-api-types'; export function createTokenRouter(db: DataStore): RouterWithAsync { const router = addAsync(express.Router()); @@ -17,13 +20,15 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { return; } - const { name, description, image_uri, image_canonical_uri } = metadata.result; + const { name, description, image_uri, image_canonical_uri, symbol, decimals } = metadata.result; - const response: FTMetadataResponse = { + const response: FungibleTokenMetadataResponse = { name: name, description: description, image_uri: image_uri, image_canonical_uri: image_canonical_uri, + symbol: symbol, + decimals: decimals, }; res.status(200).json(response); }); @@ -39,7 +44,7 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { } const { name, description, image_uri, image_canonical_uri } = metadata.result; - const response: NFTMetadataResponse = { + const response: NonFungibleTokenMetadataResponse = { name: name, description: description, image_uri: image_uri, diff --git a/src/datastore/common.ts b/src/datastore/common.ts index e4f4080d62..be3beb4a51 100644 --- a/src/datastore/common.ts +++ b/src/datastore/common.ts @@ -498,7 +498,7 @@ export interface DbRawEventRequest { event_path: string; payload: string; } -export interface DbAssetMetadata { +export interface DbNonFungibleTokenMetadata { name: string; description: string; image_uri: string; @@ -511,6 +511,15 @@ export type BlockIdentifier = | { height: number } | { burnBlockHash: string } | { burnBlockHeight: number }; +export interface DbFungibleTokenMetadata { + name: string; + description: string; + image_uri: string; + image_canonical_uri: string; + contract_id: string; + symbol: string; + decimals: number; +} export interface DataStore extends DataStoreEventEmitter { storeRawEventRequest(eventPath: string, payload: string): Promise; @@ -772,10 +781,13 @@ export interface DataStore extends DataStoreEventEmitter { blockHeight: number ): Promise>; getUnlockedAddressesAtBlock(block: DbBlock): Promise; - getFtMetadata(contractId: string): Promise>; - getNftMetadata(contractId: string): Promise>; - updateNFtMetadata(nftMetadata: DbAssetMetadata): Promise; - updateFtMetadata(ftMetadata: DbAssetMetadata): Promise; + + getFtMetadata(contractId: string): Promise>; + getNftMetadata(contractId: string): Promise>; + + updateNFtMetadata(nftMetadata: DbNonFungibleTokenMetadata): Promise; + updateFtMetadata(ftMetadata: DbFungibleTokenMetadata): Promise; + close(): Promise; } diff --git a/src/datastore/memory-store.ts b/src/datastore/memory-store.ts index b7c6324ba6..c2c1bf0884 100644 --- a/src/datastore/memory-store.ts +++ b/src/datastore/memory-store.ts @@ -35,7 +35,8 @@ import { DbGetBlockWithMetadataResponse, BlockIdentifier, StxUnlockEvent, - DbAssetMetadata, + DbFungibleTokenMetadata, + DbNonFungibleTokenMetadata, } from './common'; import { logger, FoundOrNot } from '../helpers'; import { AddressTokenOfferingLocked, TransactionType } from '@stacks/stacks-blockchain-api-types'; @@ -703,16 +704,16 @@ export class MemoryDataStore close() { return Promise.resolve(); } - getFtMetadata(contractId: string): Promise> { + getFtMetadata(contractId: string): Promise> { throw new Error('Method not implemented.'); } - getNftMetadata(contractId: string): Promise> { + getNftMetadata(contractId: string): Promise> { throw new Error('Method not implemented.'); } - updateNFtMetadata(nftMetadata: DbAssetMetadata): Promise { + updateNFtMetadata(nftMetadata: DbNonFungibleTokenMetadata): Promise { throw new Error('Method not implemented.'); } - updateFtMetadata(ftMetadata: DbAssetMetadata): Promise { + updateFtMetadata(ftMetadata: DbFungibleTokenMetadata): Promise { throw new Error('Method not implemented.'); } } diff --git a/src/datastore/postgres-store.ts b/src/datastore/postgres-store.ts index 20fb5dd680..d991daf8a4 100644 --- a/src/datastore/postgres-store.ts +++ b/src/datastore/postgres-store.ts @@ -72,7 +72,8 @@ import { DbRawEventRequest, BlockIdentifier, StxUnlockEvent, - DbAssetMetadata, + DbNonFungibleTokenMetadata, + DbFungibleTokenMetadata, } from './common'; import { AddressTokenOfferingLocked, @@ -5681,11 +5682,11 @@ export class PgDataStore return { found: false }; }); } - async getFtMetadata(contractId: string): Promise> { + async getFtMetadata(contractId: string): Promise> { return this.query(async client => { - const queryResult = await client.query( + const queryResult = await client.query( ` - SELECT name, description, image_uri, image_canonical_uri + SELECT name, description, image_uri, image_canonical_uri, symbol, decimals, contract_id FROM ft_metadata WHERE contract_id = $1 LIMIT 1 @@ -5693,9 +5694,18 @@ export class PgDataStore [contractId] ); if (queryResult.rowCount > 0) { + const metadata: DbFungibleTokenMetadata = { + name: queryResult.rows[0].name, + description: queryResult.rows[0].description, + image_uri: queryResult.rows[0].image_uri, + image_canonical_uri: queryResult.rows[0].image_canonical_uri, + symbol: queryResult.rows[0].symbol, + decimals: queryResult.rows[0].decimals, + contract_id: queryResult.rows[0].contract_id, + }; return { found: true, - result: queryResult.rows[0], + result: metadata, }; } else { return { found: false } as const; @@ -5703,11 +5713,11 @@ export class PgDataStore }); } - async getNftMetadata(contractId: string): Promise> { + async getNftMetadata(contractId: string): Promise> { return this.query(async client => { - const queryResult = await client.query( + const queryResult = await client.query( ` - SELECT name, description, image_uri, image_canonical_uri + SELECT name, description, image_uri, image_canonical_uri, contract_id FROM nft_metadata WHERE contract_id = $1 LIMIT 1 @@ -5715,9 +5725,16 @@ export class PgDataStore [contractId] ); if (queryResult.rowCount > 0) { + const metadata: DbNonFungibleTokenMetadata = { + name: queryResult.rows[0].name, + description: queryResult.rows[0].description, + image_uri: queryResult.rows[0].image_uri, + image_canonical_uri: queryResult.rows[0].image_canonical_uri, + contract_id: queryResult.rows[0].contract_id, + }; return { found: true, - result: queryResult.rows[0], + result: metadata, }; } else { return { found: false } as const; @@ -5725,22 +5742,30 @@ export class PgDataStore }); } - async updateFtMetadata(ftMetadata: DbAssetMetadata): Promise { - const { name, description, image_uri, image_canonical_uri, contract_id } = ftMetadata; + async updateFtMetadata(ftMetadata: DbFungibleTokenMetadata): Promise { + const { + name, + description, + image_uri, + image_canonical_uri, + contract_id, + symbol, + decimals, + } = ftMetadata; return await this.queryTx(async client => { const result = await client.query( ` INSERT INTO ft_metadata( - name, description, image_uri, image_canonical_uri, contract_id - ) values($1, $2, $3, $4, $5) + name, description, image_uri, image_canonical_uri, contract_id, symbol, decimals + ) values($1, $2, $3, $4, $5, $6, $7) `, - [name, description, image_uri, image_canonical_uri, contract_id] + [name, description, image_uri, image_canonical_uri, contract_id, symbol, decimals] ); return result.rowCount; }); } - async updateNFtMetadata(nftMetadata: DbAssetMetadata): Promise { + async updateNFtMetadata(nftMetadata: DbNonFungibleTokenMetadata): Promise { const { name, description, image_uri, image_canonical_uri, contract_id } = nftMetadata; return await this.queryTx(async client => { const result = await client.query( diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index c19cbb09c4..b97545d522 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -1,4 +1,8 @@ -import { DataStore, DbAssetMetadata } from '../datastore/common'; +import { + DataStore, + DbFungibleTokenMetadata, + DbNonFungibleTokenMetadata, +} from '../datastore/common'; import { callReadOnlyFunction, ChainID, @@ -147,7 +151,7 @@ const NFT_FUNCTIONS: ClarityAbiFunction[] = [ }, ]; -interface TokenApiData { +interface TokenMetadata { name: string; imageUrl: string; description: string; @@ -202,14 +206,28 @@ export class TokensContractHandler { private async handleFTContract() { const contractCallName = await this.makeReadOnlyContractCall('get-name', []); const contractCallUri = await this.makeReadOnlyContractCall('get-token-uri', []); + const contractCallSymbol = await this.makeReadOnlyContractCall('get-symbol', []); + const contractCallDecimals = await this.makeReadOnlyContractCall('get-decimals', []); const nameCV = this.checkAndParseString(contractCallName); - const uriCV = this.checkAndParseString(contractCallUri); + const uriCV = this.checkAndParseOptionalString(contractCallUri); + const symbolCV = this.checkAndParseString(contractCallSymbol); + const decimalsCV = this.checkAndParseUintCV(contractCallDecimals); if (uriCV) { const metadata = await this.getMetadataFromUri(uriCV.data); - metadata.name = nameCV ? nameCV.data : metadata.name; //prefer the on-chain name - await this.storeFTMetadata(metadata); + + const fungibleTokenMetadata: DbFungibleTokenMetadata = { + name: nameCV ? nameCV.data : metadata.name, //prefer the on-chain name + description: metadata.description, + image_uri: metadata.imageUrl, + image_canonical_uri: uriCV.data, + symbol: symbolCV ? symbolCV.data : '', + decimals: decimalsCV ? decimalsCV.value : 0, + contract_id: `${this.contractAddress}.${this.contractName}`, + }; + + await this.storeFTMetadata(fungibleTokenMetadata); } } @@ -222,11 +240,18 @@ export class TokensContractHandler { if (tokenId) { const contractCallUri = await this.makeReadOnlyContractCall('get-token-uri', [tokenId]); - const uriCV = this.checkAndParseString(contractCallUri); + const uriCV = this.checkAndParseOptionalString(contractCallUri); if (uriCV) { const metadata = await this.getMetadataFromUri(uriCV.data); - await this.storeNFTMetadata(metadata); + const nonFungibleTokenMetadata: DbNonFungibleTokenMetadata = { + name: metadata.name, + description: metadata.description, + image_uri: metadata.imageUrl, + image_canonical_uri: uriCV.data, + contract_id: `${this.contractAddress}.${this.contractName}`, + }; + await this.storeNFTMetadata(nonFungibleTokenMetadata); } } } @@ -237,7 +262,7 @@ export class TokensContractHandler { return `${PUBLIC_IPFS}/${parsedURI.host}${parsedURI.path}`; } - async makeApiCall(url: string): Promise { + async makeApiCall(url: string): Promise { const result = await fetch(url); if (!result.ok) { let msg = ''; @@ -250,7 +275,7 @@ export class TokensContractHandler { } try { const resultString = await result.text(); - return JSON.parse(resultString) as TokenApiData; + return JSON.parse(resultString) as TokenMetadata; } catch (error) { logError(`Error reading response from ${url}`, error); throw error; @@ -259,17 +284,8 @@ export class TokensContractHandler { /** * fetch metadata from ipfs uri */ - private async getMetadataFromUri(token_uri: string): Promise { - const response = await this.makeApiCall(this.makeHostedUrl(token_uri)); - - const metadata: DbAssetMetadata = { - name: response.name, - description: response.description, - image_uri: response.imageUrl, - image_canonical_uri: token_uri, //todo is this correct - contract_id: `${this.contractAddress}.${this.contractName}`, - }; - return metadata; + private async getMetadataFromUri(token_uri: string): Promise { + return await this.makeApiCall(this.makeHostedUrl(token_uri)); } /** @@ -294,7 +310,7 @@ export class TokensContractHandler { /** *Store ft metadata to db */ - private async storeFTMetadata(ft_metadata: DbAssetMetadata) { + private async storeFTMetadata(ft_metadata: DbFungibleTokenMetadata) { try { await this.db.updateFtMetadata(ft_metadata); } catch (error) { @@ -305,7 +321,7 @@ export class TokensContractHandler { /** *store NFT Metadata to db */ - private async storeNFTMetadata(nft_metadata: DbAssetMetadata) { + private async storeNFTMetadata(nft_metadata: DbNonFungibleTokenMetadata) { try { await this.db.updateNFtMetadata(nft_metadata); } catch (error) { @@ -351,7 +367,7 @@ export class TokensContractHandler { return; } - private checkAndParseString(responseCV: ClarityValue): StringAsciiCV | undefined { + private checkAndParseOptionalString(responseCV: ClarityValue): StringAsciiCV | undefined { if ( responseCV.type == ClarityType.ResponseOk && responseCV.value.type == ClarityType.OptionalSome && @@ -360,6 +376,15 @@ export class TokensContractHandler { return responseCV.value.value; } } + + private checkAndParseString(responseCV: ClarityValue): StringAsciiCV | undefined { + if ( + responseCV.type == ClarityType.ResponseOk && + responseCV.value.type == ClarityType.StringASCII + ) { + return responseCV.value; + } + } } /** diff --git a/src/migrations/1621511823381_nft-metadata.ts b/src/migrations/1621511823381_nft-metadata.ts index c14de273a8..b7a468596c 100644 --- a/src/migrations/1621511823381_nft-metadata.ts +++ b/src/migrations/1621511823381_nft-metadata.ts @@ -31,10 +31,11 @@ export async function up(pgm: MigrationBuilder): Promise { } }); - pgm.createIndex('nft_metadata','name' ) - pgm.createIndex('nft_metadata','description' ) - pgm.createIndex('nft_metadata','image_uri' ) - pgm.createIndex('nft_metadata','image_canonical_uri' ) + pgm.createIndex('nft_metadata', 'name'); + pgm.createIndex('nft_metadata', 'description'); + pgm.createIndex('nft_metadata', 'image_uri'); + pgm.createIndex('nft_metadata', 'image_canonical_uri'); + pgm.createIndex('nft_metadata', 'contract_id'); } diff --git a/src/migrations/1621511832113_ft-metadata.ts b/src/migrations/1621511832113_ft-metadata.ts index ee4ecd4574..71a75802df 100644 --- a/src/migrations/1621511832113_ft-metadata.ts +++ b/src/migrations/1621511832113_ft-metadata.ts @@ -28,13 +28,24 @@ export async function up(pgm: MigrationBuilder): Promise { contract_id: { type: 'string', notNull: true, + }, + symbol: { + type: 'string', + notNull: true, + }, + decimals: { + type: 'integer', + notNull: true, } }); - pgm.createIndex('ft_metadata','name' ) - pgm.createIndex('ft_metadata','description' ) - pgm.createIndex('ft_metadata','image_uri' ) - pgm.createIndex('ft_metadata','image_canonical_uri' ) + pgm.createIndex('ft_metadata', 'name'); + pgm.createIndex('ft_metadata', 'description'); + pgm.createIndex('ft_metadata', 'image_uri'); + pgm.createIndex('ft_metadata', 'image_canonical_uri'); + pgm.createIndex('ft_metadata', 'symbol'); + pgm.createIndex('ft_metadata', 'decimals'); + pgm.createIndex('ft_metadata', 'contract_id'); } export async function down(pgm: MigrationBuilder): Promise { From 14e346a9c1e73ddc97d11734f3d71a2097f59682 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Thu, 10 Jun 2021 15:26:05 +0500 Subject: [PATCH 07/44] refactor: change function name --- src/event-stream/tokens-contract-handler.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index b97545d522..b9b4c9cca4 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -188,13 +188,13 @@ export class TokensContractHandler { } async start() { if (this.contractAbi.fungible_tokens.length > 0) { - if (this.isCompliance(FT_FUNCTIONS)) { + if (this.isCompliant(FT_FUNCTIONS)) { await this.handleFTContract(); } } if (this.contractAbi.non_fungible_tokens.length > 0) { - if (this.isCompliance(NFT_FUNCTIONS)) { + if (this.isCompliant(NFT_FUNCTIONS)) { await this.handleNFTContract(); } } @@ -333,7 +333,7 @@ export class TokensContractHandler { * This method check if the contract is compliance with sip-09 and sip-10 * Ref: https://github.com/stacksgov/sips/tree/main/sips */ - private isCompliance(standardFunction: ClarityAbiFunction[]): boolean { + private isCompliant(standardFunction: ClarityAbiFunction[]): boolean { return standardFunction.every(abiFun => this.findFunction(abiFun, this.contractAbi.functions)); } From c8e2278190ac973abc029fd4b5bd1bb837748279 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Thu, 17 Jun 2021 00:01:15 +0500 Subject: [PATCH 08/44] chore: handle ft token uri and metadata differently --- src/api/init.ts | 4 +- src/api/routes/tokenes/tokens.ts | 4 +- src/event-stream/tokens-contract-handler.ts | 118 ++++++++++++-------- 3 files changed, 73 insertions(+), 53 deletions(-) diff --git a/src/api/init.ts b/src/api/init.ts index 69d374d09f..7fc8ac6141 100644 --- a/src/api/init.ts +++ b/src/api/init.ts @@ -204,11 +204,11 @@ export async function startApiServer(opts: { }); //Setup routes for token metadata app.use( - '/tokens', + '/v1', (() => { const router = addAsync(express.Router()); router.use(cors()); - router.use('/:contractId', createTokenRouter(datastore)); + router.use('/tokens', createTokenRouter(datastore)); return router; })() ); diff --git a/src/api/routes/tokenes/tokens.ts b/src/api/routes/tokenes/tokens.ts index 9c0d5796fc..5e3d987f91 100644 --- a/src/api/routes/tokenes/tokens.ts +++ b/src/api/routes/tokenes/tokens.ts @@ -11,7 +11,7 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { router.use(express.json()); //router for fungible tokens - router.getAsync('/ft/metadata', async (req, res) => { + router.getAsync('/:contractId/ft/metadata', async (req, res) => { const { contractId } = req.params; const metadata = await db.getFtMetadata(contractId); @@ -34,7 +34,7 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { }); //router for non-fungible tokens - router.getAsync('/nft/metadata', async (req, res) => { + router.getAsync('/:contractId/nft/metadata', async (req, res) => { const { contractId } = req.params; const metadata = await db.getNftMetadata(contractId); diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index b9b4c9cca4..c6d79612a6 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -14,6 +14,7 @@ import { makeRandomPrivKey, ReadOnlyFunctionOptions, StringAsciiCV, + StringUtf8CV, TransactionVersion, UIntCV, } from '@stacks/transactions'; @@ -57,7 +58,7 @@ const FT_FUNCTIONS: ClarityAbiFunction[] = [ { access: 'read_only', args: [{ type: 'principal', name: 'address' }], - name: 'get-balance-of', + name: 'get-balance', outputs: { type: { response: { ok: 'uint128', error: 'uint128' } } }, }, { @@ -151,12 +152,18 @@ const NFT_FUNCTIONS: ClarityAbiFunction[] = [ }, ]; -interface TokenMetadata { +interface NFTTokenMetadata { name: string; imageUrl: string; description: string; } +interface FTTokenMetadata { + name: string; + image: string; + description: string; +} + export class TokensContractHandler { private contractAddress: string; private contractName: string; @@ -192,7 +199,6 @@ export class TokensContractHandler { await this.handleFTContract(); } } - if (this.contractAbi.non_fungible_tokens.length > 0) { if (this.isCompliant(NFT_FUNCTIONS)) { await this.handleNFTContract(); @@ -204,30 +210,37 @@ export class TokensContractHandler { * fetch Fungible contract metadata */ private async handleFTContract() { - const contractCallName = await this.makeReadOnlyContractCall('get-name', []); - const contractCallUri = await this.makeReadOnlyContractCall('get-token-uri', []); - const contractCallSymbol = await this.makeReadOnlyContractCall('get-symbol', []); - const contractCallDecimals = await this.makeReadOnlyContractCall('get-decimals', []); - - const nameCV = this.checkAndParseString(contractCallName); - const uriCV = this.checkAndParseOptionalString(contractCallUri); - const symbolCV = this.checkAndParseString(contractCallSymbol); - const decimalsCV = this.checkAndParseUintCV(contractCallDecimals); + try { + //make read-only call to contract + const contractCallName = await this.makeReadOnlyContractCall('get-name', []); + const contractCallUri = await this.makeReadOnlyContractCall('get-token-uri', []); + const contractCallSymbol = await this.makeReadOnlyContractCall('get-symbol', []); + const contractCallDecimals = await this.makeReadOnlyContractCall('get-decimals', []); - if (uriCV) { - const metadata = await this.getMetadataFromUri(uriCV.data); + //check parse clarity values + const nameCV = this.checkAndParseString(contractCallName); + const uriCV = this.checkAndParseOptionalString(contractCallUri); + const symbolCV = this.checkAndParseString(contractCallSymbol); + const decimalsCV = this.checkAndParseUintCV(contractCallDecimals); + let metadata: FTTokenMetadata = { name: '', description: '', image: '' }; + //fetch metadata from the uri if possible + if (uriCV) metadata = await this.getMetadataFromUri(uriCV.data); + const { name, description, image } = metadata; const fungibleTokenMetadata: DbFungibleTokenMetadata = { - name: nameCV ? nameCV.data : metadata.name, //prefer the on-chain name - description: metadata.description, - image_uri: metadata.imageUrl, - image_canonical_uri: uriCV.data, + name: nameCV ? nameCV.data : name, //prefer the on-chain name + description: description, + image_uri: image, + image_canonical_uri: uriCV ? uriCV.data : '', symbol: symbolCV ? symbolCV.data : '', - decimals: decimalsCV ? decimalsCV.value : 0, + decimals: decimalsCV ? Number(decimalsCV.value) : 0, contract_id: `${this.contractAddress}.${this.contractName}`, }; + //store metadata in db await this.storeFTMetadata(fungibleTokenMetadata); + } catch (error) { + logger.error('erro: error handling FT contract', error); } } @@ -235,34 +248,40 @@ export class TokensContractHandler { * fetch Non Fungible contract metadata */ private async handleNFTContract() { - const contractCallTokenId = await this.makeReadOnlyContractCall('get-last-token-id', []); - const tokenId = this.checkAndParseUintCV(contractCallTokenId); + try { + const contractCallTokenId = await this.makeReadOnlyContractCall('get-last-token-id', []); + const tokenId = this.checkAndParseUintCV(contractCallTokenId); - if (tokenId) { - const contractCallUri = await this.makeReadOnlyContractCall('get-token-uri', [tokenId]); - const uriCV = this.checkAndParseOptionalString(contractCallUri); + if (tokenId) { + const contractCallUri = await this.makeReadOnlyContractCall('get-token-uri', [tokenId]); + const uriCV = this.checkAndParseOptionalString(contractCallUri); + + let metadata: NFTTokenMetadata = { name: '', description: '', imageUrl: '' }; + if (uriCV) metadata = await this.getMetadataFromUri(uriCV.data); - if (uriCV) { - const metadata = await this.getMetadataFromUri(uriCV.data); const nonFungibleTokenMetadata: DbNonFungibleTokenMetadata = { name: metadata.name, description: metadata.description, image_uri: metadata.imageUrl, - image_canonical_uri: uriCV.data, + image_canonical_uri: uriCV ? uriCV.data : '', contract_id: `${this.contractAddress}.${this.contractName}`, }; + await this.storeNFTMetadata(nonFungibleTokenMetadata); } + } catch (error) { + logger.error('erro: error handling NFT contract', error); } } - /**helpng method for creating ipfs url */ - private makeHostedUrl(uri: string) { + /**helpng method for creating http url */ + private makeHostedUrl(uri: string): string { + if (uri.includes('http')) return uri; const parsedURI = URI.parse(uri); return `${PUBLIC_IPFS}/${parsedURI.host}${parsedURI.path}`; } - async makeApiCall(url: string): Promise { + async makeApiCall(url: string): Promise { const result = await fetch(url); if (!result.ok) { let msg = ''; @@ -275,16 +294,16 @@ export class TokensContractHandler { } try { const resultString = await result.text(); - return JSON.parse(resultString) as TokenMetadata; + return JSON.parse(resultString) as Type; } catch (error) { logError(`Error reading response from ${url}`, error); throw error; } } /** - * fetch metadata from ipfs uri + * fetch metadata from uri */ - private async getMetadataFromUri(token_uri: string): Promise { + private async getMetadataFromUri(token_uri: string): Promise { return await this.makeApiCall(this.makeHostedUrl(token_uri)); } @@ -345,17 +364,14 @@ export class TokensContractHandler { */ private findFunction(fun: ClarityAbiFunction, functionList: ClarityAbiFunction[]): boolean { const found = functionList.find(standardFunction => { - if (standardFunction.name === fun.name && standardFunction.args.length === fun.args.length) { - if (standardFunction.args.length > 0) { - standardFunction.args.forEach((value, index) => { - if (value != fun.args[index]) { - return false; - } - }); + if (standardFunction.name != fun.name || standardFunction.args.length != fun.args.length) + return false; + for (let i = 0; i < fun.args.length; i++) { + if (standardFunction.args[i].type.toString() != fun.args[i].type.toString()) { + return false; } - return true; } - return false; + return true; }); return found != undefined; } @@ -367,20 +383,24 @@ export class TokensContractHandler { return; } - private checkAndParseOptionalString(responseCV: ClarityValue): StringAsciiCV | undefined { + private checkAndParseOptionalString( + responseCV: ClarityValue + ): StringUtf8CV | StringAsciiCV | undefined { if ( - responseCV.type == ClarityType.ResponseOk && - responseCV.value.type == ClarityType.OptionalSome && - responseCV.value.value.type == ClarityType.StringASCII + responseCV.type === ClarityType.ResponseOk && + responseCV.value.type === ClarityType.OptionalSome && + (responseCV.value.value.type === ClarityType.StringASCII || + responseCV.value.value.type === ClarityType.StringUTF8) ) { return responseCV.value.value; } } - private checkAndParseString(responseCV: ClarityValue): StringAsciiCV | undefined { + private checkAndParseString(responseCV: ClarityValue): StringUtf8CV | StringAsciiCV | undefined { if ( - responseCV.type == ClarityType.ResponseOk && - responseCV.value.type == ClarityType.StringASCII + responseCV.type === ClarityType.ResponseOk && + (responseCV.value.type === ClarityType.StringASCII || + responseCV.value.type === ClarityType.StringUTF8) ) { return responseCV.value; } From e26b5d17000e2a9ce57dfaf9305e91ce3f0c0293 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Thu, 17 Jun 2021 00:04:00 +0500 Subject: [PATCH 09/44] test: add integration and datastore test cases for token metadata --- jest.config.tokens.js | 13 ++ package.json | 2 + src/tests-tokens/setup.ts | 23 +++ src/tests-tokens/teardown.ts | 8 + src/tests-tokens/test-contracts/beeple.clar | 58 ++++++ src/tests-tokens/test-contracts/ft-trait.clar | 24 +++ .../test-contracts/hey-token.clar | 58 ++++++ .../test-contracts/nft-trait.clar | 15 ++ src/tests-tokens/tokens-metadata-tests.ts | 176 ++++++++++++++++++ src/tests/datastore-tests.ts | 38 ++++ 10 files changed, 415 insertions(+) create mode 100644 jest.config.tokens.js create mode 100644 src/tests-tokens/setup.ts create mode 100644 src/tests-tokens/teardown.ts create mode 100644 src/tests-tokens/test-contracts/beeple.clar create mode 100644 src/tests-tokens/test-contracts/ft-trait.clar create mode 100644 src/tests-tokens/test-contracts/hey-token.clar create mode 100644 src/tests-tokens/test-contracts/nft-trait.clar create mode 100644 src/tests-tokens/tokens-metadata-tests.ts diff --git a/jest.config.tokens.js b/jest.config.tokens.js new file mode 100644 index 0000000000..442a57e45d --- /dev/null +++ b/jest.config.tokens.js @@ -0,0 +1,13 @@ +module.exports = { + preset: 'ts-jest', + testEnvironment: 'node', + rootDir: 'src', + testMatch: ['/tests-tokens/*.ts'], + testPathIgnorePatterns: ['/tests-tokens/setup.ts', '/tests-tokens/teardown.ts'], + collectCoverageFrom: ['/**/*.ts'], + coveragePathIgnorePatterns: ['/tests'], + coverageDirectory: '../coverage', + globalSetup: '/tests-tokens/setup.ts', + globalTeardown: '/tests-tokens/teardown.ts', + testTimeout: 60000, + } diff --git a/package.json b/package.json index b00a179091..1ac9a0da44 100644 --- a/package.json +++ b/package.json @@ -11,11 +11,13 @@ "test:rosetta": "cross-env NODE_ENV=development jest --config ./jest.config.rosetta.js --coverage --runInBand", "test:bns": "cross-env NODE_ENV=development jest --config ./jest.config.bns.js --coverage --runInBand", "test:microblocks": "cross-env NODE_ENV=development jest --config ./jest.config.microblocks.js --coverage --runInBand", + "test:tokens": "cross-env NODE_ENV=development jest --config ./jest.config.tokens.js --coverage --runInBand", "test:watch": "cross-env NODE_ENV=development jest --config ./jest.config.js --watch", "test:integration": "npm run devenv:deploy -- -d && cross-env NODE_ENV=development jest --config ./jest.config.js --coverage --no-cache --runInBand; npm run devenv:stop", "test:integration:rosetta": "npm run devenv:deploy -- -d && cross-env NODE_ENV=development jest --config ./jest.config.rosetta.js --coverage --no-cache --runInBand; npm run devenv:stop", "test:integration:bns": "npm run devenv:deploy -- -d && cross-env NODE_ENV=development jest --config ./jest.config.bns.js --coverage --no-cache --runInBand; npm run devenv:stop", "test:integration:microblocks": "npm run devenv:deploy:pg -- -d && cross-env NODE_ENV=development jest --config ./jest.config.microblocks.js --coverage --no-cache --runInBand; npm run devenv:stop:pg", + "test:integration:tokens": "npm run devenv:deploy -- -d && cross-env NODE_ENV=development jest --config ./jest.config.tokens.js --coverage --no-cache --runInBand; npm run devenv:stop", "build": "rimraf ./lib && tsc -p tsconfig.build.json", "build:tests": "tsc -p tsconfig.json", "build:docs": "npm i --prefix client && npm run generate:docs --prefix client && npm i --prefix docs && npm run generate:docs --prefix docs", diff --git a/src/tests-tokens/setup.ts b/src/tests-tokens/setup.ts new file mode 100644 index 0000000000..266fa83083 --- /dev/null +++ b/src/tests-tokens/setup.ts @@ -0,0 +1,23 @@ +import { loadDotEnv } from '../helpers'; +import { StacksCoreRpcClient } from '../core-rpc/client'; +import { PgDataStore } from '../datastore/postgres-store'; + +export interface GlobalServices { + db: PgDataStore; +} + +export default async (): Promise => { + console.log('Jest - setup..'); + if (!process.env.NODE_ENV) { + process.env.NODE_ENV = 'test'; + } + loadDotEnv(); + const db = await PgDataStore.connect(true); + console.log('Waiting for RPC connection to core node..'); + await new StacksCoreRpcClient().waitForConnection(60000); + const globalServices: GlobalServices = { + db: db, + }; + Object.assign(global, globalServices); + console.log('Jest - setup done'); +}; diff --git a/src/tests-tokens/teardown.ts b/src/tests-tokens/teardown.ts new file mode 100644 index 0000000000..13d5b05702 --- /dev/null +++ b/src/tests-tokens/teardown.ts @@ -0,0 +1,8 @@ +import type { GlobalServices } from './setup'; + +export default async (): Promise => { + console.log('Jest - teardown..'); + const globalServices = (global as unknown) as GlobalServices; + await globalServices.db.close(); + console.log('Jest - teardown done'); +}; diff --git a/src/tests-tokens/test-contracts/beeple.clar b/src/tests-tokens/test-contracts/beeple.clar new file mode 100644 index 0000000000..d7ea8b693b --- /dev/null +++ b/src/tests-tokens/test-contracts/beeple.clar @@ -0,0 +1,58 @@ +(impl-trait 'STB44HYPYAT2BB2QE513NSP81HTMYWBJP02HPGK6.nft-trait.nft-trait) +(define-non-fungible-token beeple uint) + +;; Public functions +(define-constant nft-not-owned-err (err u401)) ;; unauthorized +(define-constant nft-not-found-err (err u404)) ;; not found +(define-constant sender-equals-recipient-err (err u405)) ;; method not allowed + +(define-private (nft-transfer-err (code uint)) + (if (is-eq u1 code) + nft-not-owned-err + (if (is-eq u2 code) + sender-equals-recipient-err + (if (is-eq u3 code) + nft-not-found-err + (err code))))) + +;; Transfers tokens to a specified principal. +(define-public (transfer (token-id uint) (sender principal) (recipient principal)) + (if (and + (is-eq tx-sender (unwrap! (nft-get-owner? beeple token-id) nft-not-found-err)) + (is-eq tx-sender sender) + (not (is-eq recipient sender))) + (match (nft-transfer? beeple token-id sender recipient) + success (ok success) + error (nft-transfer-err error)) + nft-not-owned-err)) + +;; Gets the owner of the specified token ID. +(define-read-only (get-owner (token-id uint)) + (ok (nft-get-owner? beeple token-id))) + +;; Gets the owner of the specified token ID. +(define-read-only (get-last-token-id) + (ok u1)) + +(define-read-only (get-token-uri (token-id uint)) + (ok (some "ipfs://ipfs/QmPAg1mjxcEQPPtqsLoEcauVedaeMH81WXDPvPx3VC5zUz"))) + +(define-read-only (get-meta (token-id uint)) + (if (is-eq token-id u1) + (ok (some {name: "EVERYDAYS: THE FIRST 5000 DAYS", uri: "https://ipfsgateway.makersplace.com/ipfs/QmZ15eQX8FPjfrtdX3QYbrhZxJpbLpvDpsgb2p3VEH8Bqq", mime-type: "image/jpeg"})) + (ok none))) + +(define-read-only (get-nft-meta) + (ok (some {name: "beeple", uri: "https://ipfsgateway.makersplace.com/ipfs/QmZ15eQX8FPjfrtdX3QYbrhZxJpbLpvDpsgb2p3VEH8Bqq", mime-type: "image/jpeg"}))) + +(define-read-only (get-errstr (code uint)) + (ok (if (is-eq u401 code) + "nft-not-owned" + (if (is-eq u404 code) + "nft-not-found" + (if (is-eq u405 code) + "sender-equals-recipient" + "unknown-error"))))) + +;; Initialize the contract +(try! (nft-mint? beeple u1 tx-sender)) diff --git a/src/tests-tokens/test-contracts/ft-trait.clar b/src/tests-tokens/test-contracts/ft-trait.clar new file mode 100644 index 0000000000..69255cf9e9 --- /dev/null +++ b/src/tests-tokens/test-contracts/ft-trait.clar @@ -0,0 +1,24 @@ +(define-trait sip-010-trait + ( + ;; Transfer from the caller to a new principal + (transfer (uint principal principal (optional (buff 34))) (response bool uint)) + + ;; the human readable name of the token + (get-name () (response (string-ascii 32) uint)) + + ;; the ticker symbol, or empty if none + (get-symbol () (response (string-ascii 32) uint)) + + ;; the number of decimals used, e.g. 6 would mean 1_000_000 represents 1 token + (get-decimals () (response uint uint)) + + ;; the balance of the passed principal + (get-balance (principal) (response uint uint)) + + ;; the current total supply (which does not need to be a constant) + (get-total-supply () (response uint uint)) + + ;; an optional URI that represents metadata of this token + (get-token-uri () (response (optional (string-utf8 256)) uint)) + ) +) diff --git a/src/tests-tokens/test-contracts/hey-token.clar b/src/tests-tokens/test-contracts/hey-token.clar new file mode 100644 index 0000000000..bd9a50c5c1 --- /dev/null +++ b/src/tests-tokens/test-contracts/hey-token.clar @@ -0,0 +1,58 @@ +;; Implement the `ft-trait` trait defined in the `ft-trait` contract +;; https://github.com/hstove/stacks-fungible-token +(impl-trait 'STB44HYPYAT2BB2QE513NSP81HTMYWBJP02HPGK6.ft-trait.sip-010-trait) + +(define-constant contract-creator tx-sender) + +(define-fungible-token hey-token) + +;; Mint developer tokens +(ft-mint? hey-token u10000 contract-creator) +(ft-mint? hey-token u10000 'ST399W7Z9WS0GMSNQGJGME5JADNKN56R65VGM5KGA) ;; fara +(ft-mint? hey-token u10000 'ST1X6M947Z7E58CNE0H8YJVJTVKS9VW0PHEG3NHN3) ;; thomas +(ft-mint? hey-token u10000 'ST1NY8TXACV7D74886MK05SYW2XA72XJMDVPF3F3D) ;; kyran +(ft-mint? hey-token u10000 'ST34XEPDJJFJKFPT87CCZQCPGXR4PJ8ERFRP0F3GX) ;; jasper +(ft-mint? hey-token u10000 'ST3AGWHGAZKQS4JQ67WQZW5X8HZYZ4ZBWPPNWNMKF) ;; andres +(ft-mint? hey-token u10000 'ST17YZQB1228EK9MPHQXA8GC4G3HVWZ66X779FEBY) ;; esh +(ft-mint? hey-token u10000 'ST3Q0M9WAVBW633CG72VHNFZM2H82D2BJMBX85WP4) ;; mark + +;; get the token balance of owner +(define-read-only (get-balance (owner principal)) + (begin + (ok (ft-get-balance hey-token owner)))) + +;; returns the total number of tokens +(define-read-only (get-total-supply) + (ok (ft-get-supply hey-token))) + +;; returns the token name +(define-read-only (get-name) + (ok "Heystack Token")) + +;; the symbol or "ticker" for this token +(define-read-only (get-symbol) + (ok "HEY")) + +;; the number of decimals used +(define-read-only (get-decimals) + (ok u0)) + +;; Transfers tokens to a recipient +(define-public (transfer (amount uint) (sender principal) (recipient principal) (memo (optional (buff 34)))) + (if (is-eq tx-sender sender) + (begin + (try! (ft-transfer? hey-token amount sender recipient)) + (print memo) + (ok true) + ) + (err u4))) + +(define-read-only (get-token-uri) + (ok (some u"https://heystack.xyz/token-metadata.json"))) + +(define-public (gift-tokens (recipient principal)) + (begin + (asserts! (is-eq tx-sender recipient) (err u0)) + (ft-mint? hey-token u1 recipient) + ) +) diff --git a/src/tests-tokens/test-contracts/nft-trait.clar b/src/tests-tokens/test-contracts/nft-trait.clar new file mode 100644 index 0000000000..cc558fdb5a --- /dev/null +++ b/src/tests-tokens/test-contracts/nft-trait.clar @@ -0,0 +1,15 @@ +(define-trait nft-trait + ( + ;; Last token ID, limited to uint range + (get-last-token-id () (response uint uint)) + + ;; URI for metadata associated with the token + (get-token-uri (uint) (response (optional (string-ascii 256)) uint)) + + ;; Owner of a given token identifier + (get-owner (uint) (response (optional principal) uint)) + + ;; Transfer from the sender to a new principal + (transfer (uint principal principal) (response bool uint)) + ) +) diff --git a/src/tests-tokens/tokens-metadata-tests.ts b/src/tests-tokens/tokens-metadata-tests.ts new file mode 100644 index 0000000000..01cfed47ba --- /dev/null +++ b/src/tests-tokens/tokens-metadata-tests.ts @@ -0,0 +1,176 @@ +import * as supertest from 'supertest'; +import { + makeContractDeploy, + ChainID, + getAddressFromPrivateKey, + PostConditionMode, +} from '@stacks/transactions'; +import * as BN from 'bn.js'; +import { DbTx, DbMempoolTx, DbTxStatus } from '../datastore/common'; +import { startApiServer, ApiServer } from '../api/init'; +import { PgDataStore, cycleMigrations, runMigrations } from '../datastore/postgres-store'; +import { PoolClient } from 'pg'; +import * as fs from 'fs'; +import { Server } from 'node:net'; +import { startEventServer } from '../event-stream/event-server'; +import { getStacksTestnetNetwork } from '../rosetta-helpers'; +import { StacksCoreRpcClient } from '../core-rpc/client'; +import { logger } from '../helpers'; + +const pKey = 'cb3df38053d132895220b9ce471f6b676db5b9bf0b4adefb55f2118ece2478df01'; +const stacksNetwork = getStacksTestnetNetwork(); +const HOST = 'localhost'; +const PORT = 20443; + +describe('api tests', () => { + let db: PgDataStore; + let client: PoolClient; + let api: ApiServer; + let eventServer: Server; + + function standByForTx(expectedTxId: string): Promise { + const broadcastTx = new Promise(resolve => { + const listener: (info: DbTx | DbMempoolTx) => void = info => { + if ( + info.tx_id === expectedTxId && + (info.status === DbTxStatus.Success || + info.status === DbTxStatus.AbortByResponse || + info.status === DbTxStatus.AbortByPostCondition || + DbTxStatus.Pending) + ) { + api.datastore.removeListener('txUpdate', listener); + resolve(info as DbTx); + } + }; + api.datastore.addListener('txUpdate', listener); + }); + + return broadcastTx; + } + + async function sendCoreTx(serializedTx: Buffer): Promise<{ txId: string }> { + try { + const submitResult = await new StacksCoreRpcClient({ + host: HOST, + port: PORT, + }).sendTransaction(serializedTx); + return submitResult; + } catch (error) { + logger.error('error: ', error); + } + return Promise.resolve({ txId: '' }); + } + + async function deployContract( + contractName: string, + senderPk: string, + sourceFile: string, + api: ApiServer + ) { + const senderAddress = getAddressFromPrivateKey(senderPk, stacksNetwork.version); + const source = fs.readFileSync(sourceFile).toString(); + const normalized_contract_source = source.replace(/\r/g, '').replace(/\t/g, ' '); + + const contractDeployTx = await makeContractDeploy({ + contractName: contractName, + codeBody: normalized_contract_source, + senderKey: senderPk, + network: stacksNetwork, + postConditionMode: PostConditionMode.Allow, + sponsored: false, + }); + + const contractId = senderAddress + '.' + contractName; + + const feeRateReq = await fetch(stacksNetwork.getTransferFeeEstimateApiUrl()); + const feeRateResult = await feeRateReq.text(); + const txBytes = new BN(contractDeployTx.serialize().byteLength); + const feeRate = new BN(feeRateResult); + const fee = feeRate.mul(txBytes); + contractDeployTx.setFee(fee); + const { txId } = await sendCoreTx(contractDeployTx.serialize()); + return { txId, contractId }; + } + + beforeAll(async () => { + process.env.PG_DATABASE = 'postgres'; + await cycleMigrations(); + db = await PgDataStore.connect(); + client = await db.pool.connect(); + eventServer = await startEventServer({ db, chainId: ChainID.Testnet }); + api = await startApiServer(db, ChainID.Testnet); + }); + + test('token nft-metadata', async () => { + const contract = await deployContract( + 'nft-trait', + pKey, + 'src/tests-tokens/test-contracts/nft-trait.clar', + api + ); + const tx = await standByForTx(contract.txId); + if (tx.status != 1) logger.error('contract deploy error', tx); + + const contract1 = await deployContract( + 'beeple', + pKey, + 'src/tests-tokens/test-contracts/beeple.clar', + api + ); + const tx1 = await standByForTx(contract1.txId); + if (tx1.status != 1) logger.error('contract deploy error', tx1); + + const query = await db.getNftMetadata(contract1.contractId); + expect(query.found).toBe(true); + + const senderAddress = getAddressFromPrivateKey(pKey, stacksNetwork.version); + const query1 = await supertest(api.server).get( + `/v1/tokens/${senderAddress}.beeple/nft/metadata` + ); + expect(query1.body).toHaveProperty('name'); + expect(query1.body).toHaveProperty('description'); + expect(query1.body).toHaveProperty('image_uri'); + expect(query1.body).toHaveProperty('image_canonical_uri'); + }); + + test('token ft-metadata tests', async () => { + const contract = await deployContract( + 'ft-trait', + pKey, + 'src/tests-tokens/test-contracts/ft-trait.clar', + api + ); + + const tx = await standByForTx(contract.txId); + if (tx.status != 1) logger.error('contract deploy error', tx); + + const contract1 = await deployContract( + 'hey-token', + pKey, + 'src/tests-tokens/test-contracts/hey-token.clar', + api + ); + const tx1 = await standByForTx(contract1.txId); + if (tx1.status != 1) logger.error('contract deploy error', tx1); + const query = await db.getFtMetadata(contract1.contractId); + expect(query.found).toBe(true); + + const senderAddress = getAddressFromPrivateKey(pKey, stacksNetwork.version); + const query1 = await supertest(api.server).get( + `/v1/tokens/${senderAddress}.hey-token/ft/metadata` + ); + + expect(query1.body).toHaveProperty('name'); + expect(query1.body).toHaveProperty('description'); + expect(query1.body).toHaveProperty('image_uri'); + expect(query1.body).toHaveProperty('image_canonical_uri'); + }); + + afterAll(async () => { + await new Promise(resolve => eventServer.close(() => resolve(true))); + await api.terminate(); + client.release(); + await db?.close(); + await runMigrations(undefined, 'down'); + }); +}); diff --git a/src/tests/datastore-tests.ts b/src/tests/datastore-tests.ts index ceb2789c9d..c86ff8cd00 100644 --- a/src/tests/datastore-tests.ts +++ b/src/tests/datastore-tests.ts @@ -19,6 +19,8 @@ import { DbBnsName, DbBnsSubdomain, DbTokenOfferingLocked, + DbNonFungibleTokenMetadata, + DbFungibleTokenMetadata, } from '../datastore/common'; import { PgDataStore, @@ -4087,6 +4089,42 @@ describe('postgres datastore', () => { expect(results.found).toBe(false); }); + test('pg token nft-metadata', async () => { + const nftMetadata: DbNonFungibleTokenMetadata = { + name: 'nft-metadata', + description: 'nft -metadata description', + image_uri: 'nft-metadata image uri example', + image_canonical_uri: 'nft-metadata image canonical uri example', + contract_id: 'ABCDEFGHIJ.nft-metadata', + }; + + const rowCount = await db.updateNFtMetadata(nftMetadata); + expect(rowCount).toBe(1); + + const query = await db.getNftMetadata(nftMetadata.contract_id); + expect(query.found).toBe(true); + if (query.found) expect(query.result).toStrictEqual(nftMetadata); + }); + + test('pg token ft-metadata', async () => { + const ftMetadata: DbFungibleTokenMetadata = { + name: 'ft-metadata', + description: 'ft -metadata description', + symbol: 'stx', + decimals: 5, + image_uri: 'ft-metadata image uri example', + image_canonical_uri: 'ft-metadata image canonical uri example', + contract_id: 'ABCDEFGHIJ.ft-metadata', + }; + + const rowCount = await db.updateFtMetadata(ftMetadata); + expect(rowCount).toBe(1); + + const query = await db.getFtMetadata(ftMetadata.contract_id); + expect(query.found).toBe(true); + if (query.found) expect(query.result).toStrictEqual(ftMetadata); + }); + afterEach(async () => { client.release(); await db?.close(); From 24b4a2d2c0d8260ba23bb0ce164308a3ed2d5e87 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Wed, 7 Jul 2021 12:35:15 +0500 Subject: [PATCH 10/44] refactor: change directory name --- src/api/init.ts | 2 +- src/api/routes/{tokenes => tokens}/tokens.ts | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename src/api/routes/{tokenes => tokens}/tokens.ts (100%) diff --git a/src/api/init.ts b/src/api/init.ts index 7fc8ac6141..6abe6d3ea1 100644 --- a/src/api/init.ts +++ b/src/api/init.ts @@ -40,7 +40,7 @@ import * as pathToRegex from 'path-to-regexp'; import * as expressListEndpoints from 'express-list-endpoints'; import { createMiddleware as createPrometheusMiddleware } from '@promster/express'; import { createMicroblockRouter } from './routes/microblock'; -import { createTokenRouter } from './routes/tokenes/tokens'; +import { createTokenRouter } from './routes/tokens/tokens'; export interface ApiServer { expressApp: ExpressWithAsync; diff --git a/src/api/routes/tokenes/tokens.ts b/src/api/routes/tokens/tokens.ts similarity index 100% rename from src/api/routes/tokenes/tokens.ts rename to src/api/routes/tokens/tokens.ts From 8b96411d2cc8aa3e583f21ccece0aa3ce3e76aec Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Wed, 7 Jul 2021 16:08:31 +0500 Subject: [PATCH 11/44] chore: miscellaneous fixes --- src/api/init.ts | 11 +---------- src/event-stream/event-server.ts | 6 +++++- src/event-stream/tokens-contract-handler.ts | 10 +++++----- src/migrations/1621511823381_nft-metadata.ts | 3 --- src/migrations/1621511832113_ft-metadata.ts | 4 ---- src/tests-tokens/tokens-metadata-tests.ts | 5 +++-- 6 files changed, 14 insertions(+), 25 deletions(-) diff --git a/src/api/init.ts b/src/api/init.ts index 6abe6d3ea1..17ea701aef 100644 --- a/src/api/init.ts +++ b/src/api/init.ts @@ -152,6 +152,7 @@ export async function startApiServer(opts: { router.use('/debug', createDebugRouter(datastore)); router.use('/status', (req, res) => res.status(200).json({ status: 'ready' })); router.use('/faucets', createFaucetRouter(datastore)); + router.use('/tokens', createTokenRouter(datastore)); return router; })() ); @@ -202,16 +203,6 @@ export async function startApiServer(opts: { app.use((req, res) => { res.status(404).json({ message: `${req.method} ${req.path} not found` }); }); - //Setup routes for token metadata - app.use( - '/v1', - (() => { - const router = addAsync(express.Router()); - router.use(cors()); - router.use('/tokens', createTokenRouter(datastore)); - return router; - })() - ); // Setup error handler (must be added at the end of the middleware stack) app.use(((error, req, res, next) => { diff --git a/src/event-stream/event-server.ts b/src/event-stream/event-server.ts index 607ccb6b2c..55ac17937b 100644 --- a/src/event-stream/event-server.ts +++ b/src/event-stream/event-server.ts @@ -337,7 +337,11 @@ function parseDataStoreTxEventData( canonical: true, }); //check if this contract uses fungible/non fungible tokens - if (tx.core_tx.contract_abi && hasTokens(tx.core_tx.contract_abi)) { + if ( + tx.core_tx.status === 'success' && + tx.core_tx.contract_abi && + hasTokens(tx.core_tx.contract_abi) + ) { //TODO start it in a seperate thread await new TokensContractHandler( tx.sender_address, diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index c6d79612a6..4901ea1e1e 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -333,7 +333,7 @@ export class TokensContractHandler { try { await this.db.updateFtMetadata(ft_metadata); } catch (error) { - logger.error(`Error: error occured while updating FT metadata`); + throw new Error(`error occured while updating FT metadata ${error}`); } } @@ -344,7 +344,7 @@ export class TokensContractHandler { try { await this.db.updateNFtMetadata(nft_metadata); } catch (error) { - logger.error(`Error: error occured while updating NFT metadata`); + throw new Error(`error occured while updating NFT metadata ${error}`); } } @@ -364,16 +364,16 @@ export class TokensContractHandler { */ private findFunction(fun: ClarityAbiFunction, functionList: ClarityAbiFunction[]): boolean { const found = functionList.find(standardFunction => { - if (standardFunction.name != fun.name || standardFunction.args.length != fun.args.length) + if (standardFunction.name !== fun.name || standardFunction.args.length !== fun.args.length) return false; for (let i = 0; i < fun.args.length; i++) { - if (standardFunction.args[i].type.toString() != fun.args[i].type.toString()) { + if (standardFunction.args[i].type.toString() !== fun.args[i].type.toString()) { return false; } } return true; }); - return found != undefined; + return found !== undefined; } private checkAndParseUintCV(responseCV: ClarityValue): UIntCV | undefined { diff --git a/src/migrations/1621511823381_nft-metadata.ts b/src/migrations/1621511823381_nft-metadata.ts index b7a468596c..b15ec65601 100644 --- a/src/migrations/1621511823381_nft-metadata.ts +++ b/src/migrations/1621511823381_nft-metadata.ts @@ -32,9 +32,6 @@ export async function up(pgm: MigrationBuilder): Promise { }); pgm.createIndex('nft_metadata', 'name'); - pgm.createIndex('nft_metadata', 'description'); - pgm.createIndex('nft_metadata', 'image_uri'); - pgm.createIndex('nft_metadata', 'image_canonical_uri'); pgm.createIndex('nft_metadata', 'contract_id'); } diff --git a/src/migrations/1621511832113_ft-metadata.ts b/src/migrations/1621511832113_ft-metadata.ts index 71a75802df..55952ac007 100644 --- a/src/migrations/1621511832113_ft-metadata.ts +++ b/src/migrations/1621511832113_ft-metadata.ts @@ -40,11 +40,7 @@ export async function up(pgm: MigrationBuilder): Promise { }); pgm.createIndex('ft_metadata', 'name'); - pgm.createIndex('ft_metadata', 'description'); - pgm.createIndex('ft_metadata', 'image_uri'); - pgm.createIndex('ft_metadata', 'image_canonical_uri'); pgm.createIndex('ft_metadata', 'symbol'); - pgm.createIndex('ft_metadata', 'decimals'); pgm.createIndex('ft_metadata', 'contract_id'); } diff --git a/src/tests-tokens/tokens-metadata-tests.ts b/src/tests-tokens/tokens-metadata-tests.ts index 01cfed47ba..d2fbfb22d6 100644 --- a/src/tests-tokens/tokens-metadata-tests.ts +++ b/src/tests-tokens/tokens-metadata-tests.ts @@ -125,8 +125,9 @@ describe('api tests', () => { const senderAddress = getAddressFromPrivateKey(pKey, stacksNetwork.version); const query1 = await supertest(api.server).get( - `/v1/tokens/${senderAddress}.beeple/nft/metadata` + `/extended/v1/tokens/${senderAddress}.beeple/nft/metadata` ); + expect(query1.status).toBe(200); expect(query1.body).toHaveProperty('name'); expect(query1.body).toHaveProperty('description'); expect(query1.body).toHaveProperty('image_uri'); @@ -157,7 +158,7 @@ describe('api tests', () => { const senderAddress = getAddressFromPrivateKey(pKey, stacksNetwork.version); const query1 = await supertest(api.server).get( - `/v1/tokens/${senderAddress}.hey-token/ft/metadata` + `/extended/v1/tokens/${senderAddress}.hey-token/ft/metadata` ); expect(query1.body).toHaveProperty('name'); From 2fa0510e1a7ffdf3a7018076d3401fe81da140e9 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Wed, 7 Jul 2021 16:30:51 +0500 Subject: [PATCH 12/44] chore: added tokens test to github actions --- .github/workflows/stacks-blockchain-api.yml | 37 +++++++++++++++++++++ 1 file changed, 37 insertions(+) diff --git a/.github/workflows/stacks-blockchain-api.yml b/.github/workflows/stacks-blockchain-api.yml index a5134f2fff..a1fb730b23 100644 --- a/.github/workflows/stacks-blockchain-api.yml +++ b/.github/workflows/stacks-blockchain-api.yml @@ -266,6 +266,43 @@ jobs: uses: codecov/codecov-action@v1 if: always() + test-tokens: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v2 + + - name: Use Node.js + uses: actions/setup-node@v1 + with: + node-version: '14.x' + + - name: Install deps + run: npm install + + - name: Setup env vars + run: echo "STACKS_CORE_EVENT_HOST=http://0.0.0.0" >> $GITHUB_ENV + + - name: Setup integration environment + run: | + sudo ufw disable + npm run devenv:deploy -- -d + npm run devenv:logs -- --no-color &> docker-compose-logs.txt & + + - name: Run tokens tests + run: npm run test:tokens + + - name: Print integration environment logs + run: cat docker-compose-logs.txt + if: failure() + + - name: Teardown integration environment + run: npm run devenv:stop + if: always() + + - name: Upload coverage to Codecov + uses: codecov/codecov-action@v1 + if: always() + build-publish: runs-on: ubuntu-latest needs: From ad74db093c72064656dcc9992c553cf0a1be7a29 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Wed, 7 Jul 2021 11:23:40 -0500 Subject: [PATCH 13/44] feat: initial contract token handler queue --- src/event-stream/event-server.ts | 53 +++++++++++++-------- src/event-stream/tokens-contract-handler.ts | 28 ++++++++++- 2 files changed, 60 insertions(+), 21 deletions(-) diff --git a/src/event-stream/event-server.ts b/src/event-stream/event-server.ts index 55ac17937b..0d8b0b1546 100644 --- a/src/event-stream/event-server.ts +++ b/src/event-stream/event-server.ts @@ -78,7 +78,7 @@ import { } from '../bns-constants'; import * as zoneFileParser from 'zone-file'; -import { hasTokens, TokensContractHandler } from './tokens-contract-handler'; +import { hasTokens, TokensContractHandler, TokensProcessorQueue } from './tokens-contract-handler'; async function handleRawEventRequest( eventPath: string, @@ -224,7 +224,8 @@ async function handleMicroblockMessage( async function handleBlockMessage( chainId: ChainID, msg: CoreNodeBlockMessage, - db: DataStore + db: DataStore, + tokenProcessorQueue: TokensProcessorQueue ): Promise { const parsedTxs: CoreNodeParsedTxMessage[] = []; const blockData: CoreNodeMsgBlockData = { @@ -237,6 +238,8 @@ async function handleBlockMessage( } }); + handleTokenContract(parsedTxs, db, chainId, tokenProcessorQueue); + const dbBlock: DbBlock = { canonical: true, block_hash: msg.block_hash, @@ -294,7 +297,6 @@ async function handleBlockMessage( }; return microblock; }); - const dbData: DataStoreBlockUpdateData = { block: dbBlock, microblocks: dbMicroblocks, @@ -305,6 +307,33 @@ async function handleBlockMessage( await db.update(dbData); } +function handleTokenContract( + coreMessages: CoreNodeParsedTxMessage[], + db: DataStore, + chainId: ChainID, + tokenProcessorQueue: TokensProcessorQueue +) { + for (const tx of coreMessages) { + if (tx.parsed_tx.payload.typeId === TransactionPayloadTypeID.SmartContract) { + //check if this contract uses fungible/non fungible tokens + if ( + tx.core_tx.status === 'success' && + tx.core_tx.contract_abi && + hasTokens(tx.core_tx.contract_abi) + ) { + const handler = new TokensContractHandler( + tx.sender_address, + tx.parsed_tx.payload.name, + tx.core_tx.contract_abi, + db, + chainId + ); + tokenProcessorQueue.queueHandler(handler); + } + } + } +} + function parseDataStoreTxEventData( parsedTxs: CoreNodeParsedTxMessage[], events: CoreNodeEvent[], @@ -336,21 +365,6 @@ function parseDataStoreTxEventData( abi: JSON.stringify(tx.core_tx.contract_abi), canonical: true, }); - //check if this contract uses fungible/non fungible tokens - if ( - tx.core_tx.status === 'success' && - tx.core_tx.contract_abi && - hasTokens(tx.core_tx.contract_abi) - ) { - //TODO start it in a seperate thread - await new TokensContractHandler( - tx.sender_address, - tx.parsed_tx.payload.name, - tx.core_tx.contract_abi, - db, - chainId - ).start(); - } } return dbTx; }); @@ -666,6 +680,7 @@ interface EventMessageHandler { function createMessageProcessorQueue(): EventMessageHandler { // Create a promise queue so that only one message is handled at a time. const processorQueue = new PQueue({ concurrency: 1 }); + const tokensProcessorQueue = new TokensProcessorQueue(); const handler: EventMessageHandler = { handleRawEventRequest: (eventPath: string, payload: string, db: DataStore) => { return processorQueue @@ -677,7 +692,7 @@ function createMessageProcessorQueue(): EventMessageHandler { }, handleBlockMessage: (chainId: ChainID, msg: CoreNodeBlockMessage, db: DataStore) => { return processorQueue - .add(() => handleBlockMessage(chainId, msg, db)) + .add(() => handleBlockMessage(chainId, msg, db, tokensProcessorQueue)) .catch(e => { logError(`Error processing core node block message`, e, msg); throw e; diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 4901ea1e1e..39fe74210c 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -22,6 +22,7 @@ import { GetStacksNetwork } from '../bns-helpers'; import { logError, logger } from '../helpers'; import * as URI from 'uri-js'; import { StacksNetwork } from '@stacks/network'; +import PQueue from 'p-queue'; const PUBLIC_IPFS = 'https://ipfs.io'; @@ -164,9 +165,32 @@ interface FTTokenMetadata { description: string; } +export class TokensProcessorQueue { + readonly queue: PQueue; + constructor() { + this.queue = new PQueue({ concurrency: 1 }); + } + queueHandler(tokenContractHandler: TokensContractHandler) { + // TODO: This could get backed up quit a bit, for example while syncing from scratch. + // If the process is restarted, this queue is not currently persisted and all the queued + // contracts will be thrown away. Eventually this should probably persist the queue in the db. + void this.queue + .add(async () => { + await tokenContractHandler.start(); + }) + .catch(error => { + // TODO: should this be a fatal error? + logError( + `Error processing token contract: ${tokenContractHandler.contractAddress} ${tokenContractHandler.contractName}`, + error + ); + }); + } +} + export class TokensContractHandler { - private contractAddress: string; - private contractName: string; + contractAddress: string; + contractName: string; private contractAbi: ClarityAbi; private db: DataStore; private randomPrivKey = makeRandomPrivKey(); From e61a04655c967e38cb5a6ca35db3196a622824c6 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Wed, 7 Jul 2021 23:29:00 +0500 Subject: [PATCH 14/44] test: add tokensUpdate event to test the contract functionality --- src/datastore/common.ts | 1 + src/datastore/postgres-store.ts | 3 +++ src/event-stream/tokens-contract-handler.ts | 8 +++++--- src/tests-tokens/tokens-metadata-tests.ts | 22 +++++++++++++++++++-- 4 files changed, 29 insertions(+), 5 deletions(-) diff --git a/src/datastore/common.ts b/src/datastore/common.ts index be3beb4a51..7ae1c2edfe 100644 --- a/src/datastore/common.ts +++ b/src/datastore/common.ts @@ -341,6 +341,7 @@ export type DataStoreEventEmitter = StrictEventEmitter< ) => void; addressUpdate: (info: AddressTxUpdateInfo) => void; nameUpdate: (info: string) => void; + tokensUpdate: (contractID: string) => void; } >; diff --git a/src/datastore/postgres-store.ts b/src/datastore/postgres-store.ts index d991daf8a4..5db442b381 100644 --- a/src/datastore/postgres-store.ts +++ b/src/datastore/postgres-store.ts @@ -5761,6 +5761,8 @@ export class PgDataStore `, [name, description, image_uri, image_canonical_uri, contract_id, symbol, decimals] ); + + this.emit('tokensUpdate', contract_id); return result.rowCount; }); } @@ -5776,6 +5778,7 @@ export class PgDataStore `, [name, description, image_uri, image_canonical_uri, contract_id] ); + this.emit('tokensUpdate', contract_id); return result.rowCount; }); } diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 39fe74210c..5283b3db68 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -174,6 +174,7 @@ export class TokensProcessorQueue { // TODO: This could get backed up quit a bit, for example while syncing from scratch. // If the process is restarted, this queue is not currently persisted and all the queued // contracts will be thrown away. Eventually this should probably persist the queue in the db. + void this.queue .add(async () => { await tokenContractHandler.start(); @@ -264,7 +265,8 @@ export class TokensContractHandler { //store metadata in db await this.storeFTMetadata(fungibleTokenMetadata); } catch (error) { - logger.error('erro: error handling FT contract', error); + logger.error('error handling FT contract', error); + throw error; } } @@ -290,11 +292,11 @@ export class TokensContractHandler { image_canonical_uri: uriCV ? uriCV.data : '', contract_id: `${this.contractAddress}.${this.contractName}`, }; - await this.storeNFTMetadata(nonFungibleTokenMetadata); } } catch (error) { - logger.error('erro: error handling NFT contract', error); + logger.error('error: error handling NFT contract', error); + throw error; } } diff --git a/src/tests-tokens/tokens-metadata-tests.ts b/src/tests-tokens/tokens-metadata-tests.ts index d2fbfb22d6..4c0100bdca 100644 --- a/src/tests-tokens/tokens-metadata-tests.ts +++ b/src/tests-tokens/tokens-metadata-tests.ts @@ -35,8 +35,7 @@ describe('api tests', () => { info.tx_id === expectedTxId && (info.status === DbTxStatus.Success || info.status === DbTxStatus.AbortByResponse || - info.status === DbTxStatus.AbortByPostCondition || - DbTxStatus.Pending) + info.status === DbTxStatus.AbortByPostCondition) ) { api.datastore.removeListener('txUpdate', listener); resolve(info as DbTx); @@ -48,6 +47,20 @@ describe('api tests', () => { return broadcastTx; } + function standByForTokens(id: string): Promise { + const contractId = new Promise(resolve => { + const listener: (info: string) => void = info => { + if (info === id) { + api.datastore.removeListener('tokensUpdate', listener); + resolve(info); + } + }; + api.datastore.addListener('tokensUpdate', listener); + }); + + return contractId; + } + async function sendCoreTx(serializedTx: Buffer): Promise<{ txId: string }> { try { const submitResult = await new StacksCoreRpcClient({ @@ -120,6 +133,8 @@ describe('api tests', () => { const tx1 = await standByForTx(contract1.txId); if (tx1.status != 1) logger.error('contract deploy error', tx1); + await standByForTokens(contract1.contractId); + const query = await db.getNftMetadata(contract1.contractId); expect(query.found).toBe(true); @@ -153,6 +168,9 @@ describe('api tests', () => { ); const tx1 = await standByForTx(contract1.txId); if (tx1.status != 1) logger.error('contract deploy error', tx1); + + await standByForTokens(contract1.contractId); + const query = await db.getFtMetadata(contract1.contractId); expect(query.found).toBe(true); From 3419087390aa49632c50e80f2a4ad7872469dcb8 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Wed, 7 Jul 2021 23:51:13 +0500 Subject: [PATCH 15/44] chore: use URL instead of uri-js and support ipns --- package.json | 1 - src/event-stream/tokens-contract-handler.ts | 14 ++++++++++---- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/package.json b/package.json index 1ac9a0da44..70ea83d05e 100644 --- a/package.json +++ b/package.json @@ -146,7 +146,6 @@ "split2": "^3.2.2", "strict-event-emitter-types": "^2.0.0", "typescript": "^4.2.4", - "uri-js": "^4.4.1", "uuid": "^8.0.0", "winston": "^3.2.1", "ws": "^7.4.6", diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 5283b3db68..824901ce90 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -20,7 +20,6 @@ import { } from '@stacks/transactions'; import { GetStacksNetwork } from '../bns-helpers'; import { logError, logger } from '../helpers'; -import * as URI from 'uri-js'; import { StacksNetwork } from '@stacks/network'; import PQueue from 'p-queue'; @@ -302,9 +301,16 @@ export class TokensContractHandler { /**helpng method for creating http url */ private makeHostedUrl(uri: string): string { - if (uri.includes('http')) return uri; - const parsedURI = URI.parse(uri); - return `${PUBLIC_IPFS}/${parsedURI.host}${parsedURI.path}`; + const parsedUri = new URL(uri); + if (parsedUri.protocol === 'http:' || parsedUri.protocol === 'https:') return uri; + if (parsedUri.protocol === 'ipfs:') + return `${PUBLIC_IPFS}/${parsedUri.host}${parsedUri.pathname}`; + + if (parsedUri.protocol === 'ipns:') + return `${PUBLIC_IPFS}/${parsedUri.host}${parsedUri.pathname}`; + + console.log('handle nft metadata url', uri); + throw new Error(`Unsupported uri protocol: ${uri}`); } async makeApiCall(url: string): Promise { From 576d398d33371f7269fb32b739506433997c2730 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Thu, 8 Jul 2021 00:31:05 +0500 Subject: [PATCH 16/44] refactor: removed unwanted log --- src/event-stream/tokens-contract-handler.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 824901ce90..cb2bd5301c 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -309,7 +309,6 @@ export class TokensContractHandler { if (parsedUri.protocol === 'ipns:') return `${PUBLIC_IPFS}/${parsedUri.host}${parsedUri.pathname}`; - console.log('handle nft metadata url', uri); throw new Error(`Unsupported uri protocol: ${uri}`); } From d1f307bfec61115b3fe2a6c50b68e5159177ebf9 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Wed, 7 Jul 2021 14:48:32 -0500 Subject: [PATCH 17/44] chore: rebase fix --- docs/index.d.ts | 2888 ----------------------------------------------- 1 file changed, 2888 deletions(-) diff --git a/docs/index.d.ts b/docs/index.d.ts index 668512867f..e30278bad6 100644 --- a/docs/index.d.ts +++ b/docs/index.d.ts @@ -1,2890 +1,2 @@ export * from './generated'; export * from './socket-io'; -/** - This file is generated automatically. **DO NOT MODIFY THIS FILE DIRECTLY** - Updates are made by editing the JSON Schema files in the 'docs/' directory, - then running the 'yarn build' script. -*/ - -/** - * GET request that returns address assets - */ -export interface AddressAssetsListResponse { - limit: number; - offset: number; - total: number; - results: TransactionEvent[]; -} - -/** - * GET request that returns address balances - */ -export interface AddressBalanceResponse { - /** - * StxBalance - */ - stx: { - balance: string; - total_sent: string; - total_received: string; - total_fees_sent: string; - total_miner_rewards_received: string; - /** - * The transaction where the lock event occurred. Empty if no tokens are locked. - */ - lock_tx_id: string; - /** - * The amount of locked STX, as string quoted micro-STX. Zero if no tokens are locked. - */ - locked: string; - /** - * The STX chain block height of when the lock event occurred. Zero if no tokens are locked. - */ - lock_height: number; - /** - * The burnchain block height of when the lock event occurred. Zero if no tokens are locked. - */ - burnchain_lock_height: number; - /** - * The burnchain block height of when the tokens unlock. Zero if no tokens are locked. - */ - burnchain_unlock_height: number; - }; - fungible_tokens: { - /** - * FtBalance - * - * This interface was referenced by `undefined`'s JSON-Schema definition - * via the `patternProperty` "*". - */ - [k: string]: { - balance: string; - total_sent: string; - total_received: string; - }; - }; - non_fungible_tokens: { - /** - * NftBalance - * - * This interface was referenced by `undefined`'s JSON-Schema definition - * via the `patternProperty` "*". - */ - [k: string]: { - count: string; - total_sent: string; - total_received: string; - }; - }; - token_offering_locked?: AddressTokenOfferingLocked; -} - -export interface AddressNftListResponse { - limit: number; - offset: number; - total: number; - nft_events: NftEvent[]; -} - -/** - * GET request that returns address balances - */ -export interface AddressStxBalanceResponse { - balance: string; - total_sent: string; - total_received: string; - total_fees_sent: string; - total_miner_rewards_received: string; - /** - * The transaction where the lock event occurred. Empty if no tokens are locked. - */ - lock_tx_id: string; - /** - * The amount of locked STX, as string quoted micro-STX. Zero if no tokens are locked. - */ - locked: string; - /** - * The STX chain block height of when the lock event occurred. Zero if no tokens are locked. - */ - lock_height: number; - /** - * The burnchain block height of when the lock event occurred. Zero if no tokens are locked. - */ - burnchain_lock_height: number; - /** - * The burnchain block height of when the tokens unlock. Zero if no tokens are locked. - */ - burnchain_unlock_height: number; - token_offering_locked?: AddressTokenOfferingLocked; -} - -/** - * GET request that returns a list of inbound STX transfers with a memo - */ -export interface AddressStxInboundListResponse { - limit: number; - offset: number; - total: number; - results: InboundStxTransfer[]; -} - -/** - * GET request that returns account transactions - */ -export interface AddressTransactionsWithTransfersListResponse { - limit: number; - offset: number; - total: number; - results: AddressTransactionWithTransfers[]; -} - -/** - * GET request that returns account transactions - */ -export interface AddressTransactionsListResponse { - limit: number; - offset: number; - total: number; - results: (MempoolTransaction | Transaction)[]; -} - -/** - * GET request that returns blocks - */ -export interface BlockListResponse { - /** - * The number of blocks to return - */ - limit: number; - /** - * The number to blocks to skip (starting at `0`) - */ - offset: number; - /** - * The number of blocks available - */ - total: number; - results: Block[]; -} - -/** - * Error - */ -export interface BnsError { - error?: string; -} - -/** - * Fetch a user’s raw zone file. This only works for RFC-compliant zone files. This method returns an error for names that have non-standard zone files. - */ -export type BnsFetchFileZoneResponse = - | { - zonefile?: string; - [k: string]: unknown | undefined; - } - | { - error?: string; - [k: string]: unknown | undefined; - }; - -/** - * Fetch a list of all names known to the node. - */ -export type BnsGetAllNamesResponse = string[]; - -/** - * Fetch a list of all subdomains known to the node. - */ -export type BnsGetAllSubdomainsResponse = string[]; - -/** - * Fetches the historical zonefile specified by the username and zone hash. - */ -export type BnsFetchHistoricalZoneFileResponse = - | { - zonefile?: string; - [k: string]: unknown | undefined; - } - | { - error?: string; - [k: string]: unknown | undefined; - }; - -/** - * Get a history of all blockchain records of a registered name. - */ -export interface BnsGetNameHistoryResponse { - /** - * This interface was referenced by `BnsGetNameHistoryResponse`'s JSON-Schema definition - * via the `patternProperty` "^[0-9]+". - */ - [k: string]: { - address?: string; - base?: number; - buckets?: number[] | null; - block_number?: number; - coeff?: number | null; - consensus_hash?: string | null; - domain?: string; - fee?: number; - first_registered?: number; - history_snapshot?: boolean; - importer?: string | null; - importer_address?: string | null; - last_renewed?: number; - name?: string; - op?: string; - op_fee?: number; - opcode?: string; - revoked?: boolean; - sender?: string; - sender_pubkey?: string | null; - sequence?: number; - recipient?: string | null; - recipient_address?: string | null; - recipient_pubkey?: string | null; - txid: string; - value_hash?: string | null; - vtxindex: number; - [k: string]: unknown | undefined; - }[]; -} - -/** - * Get name details - */ -export interface BnsGetNameInfoResponse { - address: string; - blockchain: string; - expire_block?: number; - grace_period?: number; - last_txid: string; - resolver?: string; - status: string; - zonefile: string; - zonefile_hash: string; -} - -/** - * Fetch price for name. - */ -export interface BnsGetNamePriceResponse { - units: string; - amount: string; -} - -/** - * Retrieves a list of names owned by the address provided. - */ -export interface BnsNamesOwnByAddressResponse { - names?: string[]; -} - -/** - * Fetches the list of subdomain operations processed by a given transaction. The returned array includes subdomain operations that have not yet been accepted as part of any subdomain’s history (checkable via the accepted field). If the given transaction ID does not correspond to a Blockstack transaction that introduced new subdomain operations, and empty array will be returned. - */ -export type BnsGetSubdomainAtTx = { - accepted?: number; - block_height?: number; - domain?: string; - fully_qualified_subdomain?: string; - missing?: string; - owner?: string; - parent_zonefile_hash?: string; - parent_zonefile_index?: number; - resolver?: string; - sequence?: number; - signature?: string; - txid?: string; - zonefile_hash?: string; - zonefile_offset?: number; - [k: string]: unknown | undefined; -}[]; - -/** - * Fetch a list of names from the namespace. - */ -export type BnsGetAllNamespacesNamesResponse = string[]; - -/** - * Fetch a list of all namespaces known to the node. - */ -export interface BnsGetAllNamespacesResponse { - namespaces: string[]; -} - -/** - * Fetch price for namespace. - */ -export interface BnsGetNamespacePriceResponse { - units: string; - amount: string; -} - -/** - * GET request that returns reward slot holders - */ -export interface BurnchainRewardSlotHolderListResponse { - /** - * The number of items to return - */ - limit: number; - /** - * The number of items to skip (starting at `0`) - */ - offset: number; - /** - * Total number of available items - */ - total: number; - results: BurnchainRewardSlotHolder[]; -} - -/** - * GET request that returns blocks - */ -export interface BurnchainRewardListResponse { - /** - * The number of burnchain rewards to return - */ - limit: number; - /** - * The number to burnchain rewards to skip (starting at `0`) - */ - offset: number; - results: BurnchainReward[]; -} - -/** - * GET request to get contract source - */ -export interface ReadOnlyFunctionSuccessResponse { - okay: boolean; - result?: string; - cause?: string; -} - -/** - * GET request for account data - */ -export interface AccountDataResponse { - balance: string; - locked: string; - unlock_height: number; - nonce: number; - balance_proof: string; - nonce_proof: string; -} - -/** - * Response of get data map entry request - */ -export interface MapEntryResponse { - /** - * Hex-encoded string of clarity value. It is always an optional tuple. - */ - data: string; - /** - * Hex-encoded string of the MARF proof for the data - */ - proof?: string; -} - -/** - * GET request to get contract interface - */ -export interface ContractInterfaceResponse { - /** - * List of defined methods - */ - functions: { - [k: string]: unknown | undefined; - }[]; - /** - * List of defined variables - */ - variables: { - [k: string]: unknown | undefined; - }[]; - /** - * List of defined data-maps - */ - maps: { - [k: string]: unknown | undefined; - }[]; - /** - * List of fungible tokens in the contract - */ - fungible_tokens: { - [k: string]: unknown | undefined; - }[]; - /** - * List of non-fungible tokens in the contract - */ - non_fungible_tokens: { - [k: string]: unknown | undefined; - }[]; -} - -/** - * GET request to get contract source - */ -export interface ContractSourceResponse { - source: string; - publish_height: number; - proof: string; -} - -/** - * GET fee estimates - */ -export type CoreNodeFeeResponse = string; - -/** - * GET request that core node information - */ -export interface CoreNodeInfoResponse { - /** - * identifies the version number for the networking communication, this should not change while a node is running, and will only change if there's an upgrade - */ - peer_version: number; - /** - * is a hash used to identify the burnchain view for a node. it incorporates bitcoin chain information and PoX information. nodes that disagree on this value will appear to each other as forks. this value will change after every block - */ - pox_consensus: string; - /** - * latest bitcoin chain height - */ - burn_block_height: number; - /** - * same as burn_consensus, but evaluated at stable_burn_block_height - */ - stable_pox_consensus: string; - /** - * leftover from stacks 1.0, basically always burn_block_height - 1 - */ - stable_burn_block_height: number; - /** - * is a version descriptor - */ - server_version: string; - /** - * is similar to peer_version and will be used to differentiate between different testnets. this value will be different between mainnet and testnet. once launched, this value will not change - */ - network_id: number; - /** - * same as network_id, but for bitcoin - */ - parent_network_id: number; - /** - * the latest Stacks chain height. Stacks forks can occur independent of the Bitcoin chain, that height doesn't increase 1-to-1 with the Bitcoin height - */ - stacks_tip_height: number; - /** - * the best known block hash for the Stack chain (not including any pending microblocks) - */ - stacks_tip: string; - /** - * the burn chain (i.e., bitcoin) consensus hash at the time that stacks_tip was mined - */ - stacks_tip_consensus_hash: string; - /** - * the latest microblock hash if any microblocks were processed. if no microblock has been processed for the current block, a 000.., hex array is returned - */ - unanchored_tip: string; - /** - * the block height at which the testnet network will be reset. not applicable for mainnet - */ - exit_at_block_height: number; -} - -/** - * Get Proof of Transfer (PoX) information - */ -export interface CoreNodePoxResponse { - contract_id: string; - first_burnchain_block_height: number; - min_amount_ustx: number; - registration_window_length: number; - rejection_fraction: number; - reward_cycle_id: number; - reward_cycle_length: number; - rejection_votes_left_required: number; - total_liquid_supply_ustx: number; -} - -/** - * POST request that runs the faucet - */ -export interface RunFaucetResponse { - /** - * Indicates if the faucet call was successful - */ - success: boolean; - /** - * The transaction ID for the faucet call - */ - txId?: string; - /** - * Raw transaction in hex string representation - */ - txRaw?: string; -} - -/** - * GET request that target block time for a given network - */ -export interface NetworkBlockTimeResponse { - target_block_time: number; -} - -/** - * GET request that returns network target block times - */ -export interface NetworkBlockTimesResponse { - /** - * TargetBlockTime - */ - mainnet: { - target_block_time: number; - }; - /** - * TargetBlockTime - */ - testnet: { - target_block_time: number; - }; -} - -/** - * GET request that returns network target block times - */ -export type GetStxCirculatingSupplyPlainResponse = string; - -/** - * GET request that returns network target block times - */ -export interface GetStxSupplyLegacyFormatResponse { - /** - * String quoted decimal number of the percentage of STX that have unlocked - */ - unlockedPercent: string; - /** - * String quoted decimal number of the total possible number of STX - */ - totalStacks: string; - /** - * Same as `totalStacks` but formatted with comma thousands separators - */ - totalStacksFormatted: string; - /** - * String quoted decimal number of the STX that have been mined or unlocked - */ - unlockedSupply: string; - /** - * Same as `unlockedSupply` but formatted with comma thousands separators - */ - unlockedSupplyFormatted: string; - /** - * The block height at which this information was queried - */ - blockHeight: string; -} - -/** - * GET request that returns network target block times - */ -export type GetStxTotalSupplyPlainResponse = string; - -/** - * GET request that returns network target block times - */ -export interface GetStxSupplyResponse { - /** - * String quoted decimal number of the percentage of STX that have unlocked - */ - unlocked_percent: string; - /** - * String quoted decimal number of the total possible number of STX - */ - total_stx: string; - /** - * String quoted decimal number of the STX that have been mined or unlocked - */ - unlocked_stx: string; - /** - * The block height at which this information was queried - */ - block_height: number; -} - -/** - * An AccountBalanceRequest is utilized to make a balance request on the /account/balance endpoint. If the block_identifier is populated, a historical balance query should be performed. - */ -export interface RosettaAccountBalanceRequest { - network_identifier: NetworkIdentifier; - account_identifier: RosettaAccount; - block_identifier?: RosettaPartialBlockIdentifier; -} - -/** - * An AccountBalanceResponse is returned on the /account/balance endpoint. If an account has a balance for each AccountIdentifier describing it (ex: an ERC-20 token balance on a few smart contracts), an account balance request must be made with each AccountIdentifier. - */ -export interface RosettaAccountBalanceResponse { - block_identifier: RosettaBlockIdentifier; - /** - * A single account balance may have multiple currencies - */ - balances: RosettaAmount[]; - /** - * If a blockchain is UTXO-based, all unspent Coins owned by an account_identifier should be returned alongside the balance. It is highly recommended to populate this field so that users of the Rosetta API implementation don't need to maintain their own indexer to track their UTXOs. - */ - coins?: RosettaCoin[]; - /** - * Account-based blockchains that utilize a nonce or sequence number should include that number in the metadata. This number could be unique to the identifier or global across the account address. - */ - metadata?: { - sequence_number: number; - [k: string]: unknown | undefined; - }; -} - -/** - * A BlockRequest is utilized to make a block request on the /block endpoint. - */ -export interface RosettaBlockRequest { - network_identifier: NetworkIdentifier; - block_identifier: RosettaPartialBlockIdentifier; -} - -/** - * A BlockResponse includes a fully-populated block or a partially-populated block with a list of other transactions to fetch (other_transactions). As a result of the consensus algorithm of some blockchains, blocks can be omitted (i.e. certain block indexes can be skipped). If a query for one of these omitted indexes is made, the response should not include a Block object. It is VERY important to note that blocks MUST still form a canonical, connected chain of blocks where each block has a unique index. In other words, the PartialBlockIdentifier of a block after an omitted block should reference the last non-omitted block. - */ -export interface RosettaBlockResponse { - block?: RosettaBlock; - /** - * Some blockchains may require additional transactions to be fetched that weren't returned in the block response (ex: block only returns transaction hashes). For blockchains with a lot of transactions in each block, this can be very useful as consumers can concurrently fetch all transactions returned. - */ - other_transactions?: OtherTransactionIdentifier[]; -} - -/** - * A BlockTransactionRequest is used to fetch a Transaction included in a block that is not returned in a BlockResponse. - */ -export interface RosettaBlockTransactionRequest { - network_identifier: NetworkIdentifier; - block_identifier: RosettaBlockIdentifier; - transaction_identifier: TransactionIdentifier; -} - -/** - * A BlockTransactionResponse contains information about a block transaction. - */ -export interface RosettaBlockTransactionResponse { - transaction: RosettaTransaction; -} - -/** - * RosettaConstructionCombineRequest is the input to the /construction/combine endpoint. It contains the unsigned transaction blob returned by /construction/payloads and all required signatures to create a network transaction. - */ -export interface RosettaConstructionCombineRequest { - network_identifier: NetworkIdentifier; - unsigned_transaction: string; - signatures: RosettaSignature[]; -} - -/** - * RosettaConstructionCombineResponse is returned by /construction/combine. The network payload will be sent directly to the construction/submit endpoint. - */ -export interface RosettaConstructionCombineResponse { - /** - * Signed transaction bytes in hex - */ - signed_transaction: string; -} - -/** - * Network is provided in the request because some blockchains have different address formats for different networks - */ -export interface RosettaConstructionDeriveRequest { - network_identifier: NetworkIdentifier; - public_key: RosettaPublicKey; - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * ConstructionDeriveResponse is returned by the /construction/derive endpoint. - */ -export interface RosettaConstructionDeriveResponse { - /** - * [DEPRECATED by account_identifier in v1.4.4] Address in network-specific format. - */ - address?: string; - account_identifier?: RosettaAccountIdentifier; - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * TransactionHash returns the network-specific transaction hash for a signed transaction. - */ -export interface RosettaConstructionHashRequest { - network_identifier: NetworkIdentifier; - /** - * Signed transaction - */ - signed_transaction: string; -} - -/** - * TransactionIdentifier contains the transaction_identifier of a transaction that was submitted to either /construction/hash or /construction/submit. - */ -export interface RosettaConstructionHashResponse { - transaction_identifier: TransactionIdentifier; - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * A ConstructionMetadataRequest is utilized to get information required to construct a transaction. The Options object used to specify which metadata to return is left purposely unstructured to allow flexibility for implementers. Optionally, the request can also include an array of PublicKeys associated with the AccountIdentifiers returned in ConstructionPreprocessResponse. - */ -export interface RosettaConstructionMetadataRequest { - network_identifier: NetworkIdentifier; - options: RosettaOptions; - public_keys?: RosettaPublicKey[]; -} - -/** - * The ConstructionMetadataResponse returns network-specific metadata used for transaction construction. Optionally, the implementer can return the suggested fee associated with the transaction being constructed. The caller may use this info to adjust the intent of the transaction or to create a transaction with a different account that can pay the suggested fee. Suggested fee is an array in case fee payment must occur in multiple currencies. - */ -export interface RosettaConstructionMetadataResponse { - metadata: { - account_sequence?: number; - recent_block_hash?: string; - [k: string]: unknown | undefined; - }; - suggested_fee?: RosettaAmount[]; -} - -/** - * Parse is called on both unsigned and signed transactions to understand the intent of the formulated transaction. This is run as a sanity check before signing (after /construction/payloads) and before broadcast (after /construction/combine). - */ -export interface RosettaConstructionParseRequest { - network_identifier: NetworkIdentifier; - /** - * Signed is a boolean indicating whether the transaction is signed. - */ - signed: boolean; - /** - * This must be either the unsigned transaction blob returned by /construction/payloads or the signed transaction blob returned by /construction/combine. - */ - transaction: string; -} - -/** - * RosettaConstructionParseResponse contains an array of operations that occur in a transaction blob. This should match the array of operations provided to /construction/preprocess and /construction/payloads. - */ -export interface RosettaConstructionParseResponse { - operations: RosettaOperation[]; - /** - * [DEPRECATED by account_identifier_signers in v1.4.4] All signers (addresses) of a particular transaction. If the transaction is unsigned, it should be empty. - */ - signers?: string[]; - account_identifier_signers?: RosettaAccountIdentifier[]; - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * ConstructionPayloadsRequest is the request to /construction/payloads. It contains the network, a slice of operations, and arbitrary metadata that was returned by the call to /construction/metadata. Optionally, the request can also include an array of PublicKeys associated with the AccountIdentifiers returned in ConstructionPreprocessResponse. - */ -export interface RosettaConstructionPayloadsRequest { - network_identifier: NetworkIdentifier; - operations: RosettaOperation[]; - public_keys?: RosettaPublicKey[]; - metadata?: { - account_sequence?: number; - recent_block_hash?: string; - [k: string]: unknown | undefined; - }; -} - -/** - * RosettaConstructionPayloadResponse is returned by /construction/payloads. It contains an unsigned transaction blob (that is usually needed to construct the a network transaction from a collection of signatures) and an array of payloads that must be signed by the caller. - */ -export interface RosettaConstructionPayloadResponse { - /** - * This is an unsigned transaction blob (that is usually needed to construct the a network transaction from a collection of signatures) - */ - unsigned_transaction: string; - /** - * An array of payloads that must be signed by the caller - */ - payloads: SigningPayload[]; -} - -/** - * ConstructionPreprocessRequest is passed to the /construction/preprocess endpoint so that a Rosetta implementation can determine which metadata it needs to request for construction - */ -export interface RosettaConstructionPreprocessRequest { - network_identifier: NetworkIdentifier; - operations: RosettaOperation[]; - metadata?: { - [k: string]: unknown | undefined; - }; - max_fee?: RosettaMaxFeeAmount[]; - /** - * The caller can also provide a suggested fee multiplier to indicate that the suggested fee should be scaled. This may be used to set higher fees for urgent transactions or to pay lower fees when there is less urgency. It is assumed that providing a very low multiplier (like 0.0001) will never lead to a transaction being created with a fee less than the minimum network fee (if applicable). In the case that the caller provides both a max fee and a suggested fee multiplier, the max fee will set an upper bound on the suggested fee (regardless of the multiplier provided). - */ - suggested_fee_multiplier?: number; -} - -/** - * RosettaConstructionPreprocessResponse contains options that will be sent unmodified to /construction/metadata. If it is not necessary to make a request to /construction/metadata, options should be omitted. Some blockchains require the PublicKey of particular AccountIdentifiers to construct a valid transaction. To fetch these PublicKeys, populate required_public_keys with the AccountIdentifiers associated with the desired PublicKeys. If it is not necessary to retrieve any PublicKeys for construction, required_public_keys should be omitted. - */ -export interface RosettaConstructionPreprocessResponse { - options?: RosettaOptions; - required_public_keys?: RosettaAccount[]; -} - -/** - * Submit the transaction in blockchain - */ -export interface RosettaConstructionSubmitRequest { - network_identifier: NetworkIdentifier; - /** - * Signed transaction - */ - signed_transaction: string; -} - -/** - * TransactionIdentifier contains the transaction_identifier of a transaction that was submitted to either /construction/submit. - */ -export interface RosettaConstructionSubmitResponse { - transaction_identifier: TransactionIdentifier; - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * Get all Transaction Identifiers in the mempool - */ -export interface RosettaMempoolRequest { - network_identifier: NetworkIdentifier; - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * A MempoolResponse contains all transaction identifiers in the mempool for a particular network_identifier. - */ -export interface RosettaMempoolResponse { - transaction_identifiers: TransactionIdentifier[]; - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * A MempoolTransactionRequest is utilized to retrieve a transaction from the mempool. - */ -export interface RosettaMempoolTransactionRequest { - network_identifier: NetworkIdentifier; - transaction_identifier: TransactionIdentifier; -} - -/** - * A MempoolTransactionResponse contains an estimate of a mempool transaction. It may not be possible to know the full impact of a transaction in the mempool (ex: fee paid). - */ -export interface RosettaMempoolTransactionResponse { - transaction: RosettaTransaction; - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * This endpoint returns a list of NetworkIdentifiers that the Rosetta server supports. - */ -export interface RosettaNetworkListRequest { - /** - * A MetadataRequest is utilized in any request where the only argument is optional metadata. - */ - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * A NetworkListResponse contains all NetworkIdentifiers that the node can serve information for. - */ -export interface RosettaNetworkListResponse { - /** - * The network_identifier specifies which network a particular object is associated with. - */ - network_identifiers: NetworkIdentifier[]; -} - -/** - * This endpoint returns the version information and allowed network-specific types for a NetworkIdentifier. Any NetworkIdentifier returned by /network/list should be accessible here. Because options are retrievable in the context of a NetworkIdentifier, it is possible to define unique options for each network. - */ -export interface RosettaOptionsRequest { - network_identifier: NetworkIdentifier; - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * NetworkOptionsResponse contains information about the versioning of the node and the allowed operation statuses, operation types, and errors. - */ -export interface RosettaNetworkOptionsResponse { - /** - * The Version object is utilized to inform the client of the versions of different components of the Rosetta implementation. - */ - version: { - /** - * The rosetta_version is the version of the Rosetta interface the implementation adheres to. This can be useful for clients looking to reliably parse responses. - */ - rosetta_version: string; - /** - * The node_version is the canonical version of the node runtime. This can help clients manage deployments. - */ - node_version: string; - /** - * When a middleware server is used to adhere to the Rosetta interface, it should return its version here. This can help clients manage deployments. - */ - middleware_version?: string; - /** - * Any other information that may be useful about versioning of dependent services should be returned here. - */ - metadata?: { - [k: string]: unknown | undefined; - }; - [k: string]: unknown | undefined; - }; - /** - * Allow specifies supported Operation status, Operation types, and all possible error statuses. This Allow object is used by clients to validate the correctness of a Rosetta Server implementation. It is expected that these clients will error if they receive some response that contains any of the above information that is not specified here. - */ - allow: { - /** - * All Operation.Status this implementation supports. Any status that is returned during parsing that is not listed here will cause client validation to error. - */ - operation_statuses: RosettaOperationStatus[]; - /** - * All Operation.Type this implementation supports. Any type that is returned during parsing that is not listed here will cause client validation to error. - */ - operation_types: string[]; - /** - * All Errors that this implementation could return. Any error that is returned during parsing that is not listed here will cause client validation to error. - */ - errors: RosettaError[]; - /** - * Any Rosetta implementation that supports querying the balance of an account at any height in the past should set this to true. - */ - historical_balance_lookup: boolean; - [k: string]: unknown | undefined; - }; -} - -/** - * This endpoint returns the current status of the network requested. Any NetworkIdentifier returned by /network/list should be accessible here. - */ -export interface RosettaStatusRequest { - network_identifier: NetworkIdentifier; - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * NetworkStatusResponse contains basic information about the node's view of a blockchain network. It is assumed that any BlockIdentifier.Index less than or equal to CurrentBlockIdentifier.Index can be queried. If a Rosetta implementation prunes historical state, it should populate the optional oldest_block_identifier field with the oldest block available to query. If this is not populated, it is assumed that the genesis_block_identifier is the oldest queryable block. If a Rosetta implementation performs some pre-sync before it is possible to query blocks, sync_status should be populated so that clients can still monitor healthiness. Without this field, it may appear that the implementation is stuck syncing and needs to be terminated. - */ -export interface RosettaNetworkStatusResponse { - current_block_identifier: RosettaBlockIdentifier; - /** - * The timestamp of the block in milliseconds since the Unix Epoch. The timestamp is stored in milliseconds because some blockchains produce blocks more often than once a second. - */ - current_block_timestamp: number; - genesis_block_identifier: RosettaGenesisBlockIdentifier; - oldest_block_identifier?: RosettaOldestBlockIdentifier; - sync_status?: RosettaSyncStatus; - /** - * Peers information - */ - peers: RosettaPeers[]; -} - -export interface FTMetadataResponse { - /** - * Identifies the asset to which this token represents - */ - name: string; - /** - * Describes the asset to which this token represents - */ - description: string; - /** - * A URI pointing to a resource with mime type image/* representing the asset to which this token represents. The API may provide a URI to a cached resource, dependending on configuration. Otherwise, this can be the same value as the canonical image URI. - */ - image_uri: string; - /** - * The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive. - */ - image_canonical_uri: string; -} - -export interface NFTMetadataResponse { - /** - * Identifies the asset to which this token represents - */ - name: string; - /** - * Describes the asset to which this token represents - */ - description: string; - /** - * A URI pointing to a resource with mime type image/* representing the asset to which this token represents. The API may provide a URI to a cached resource, dependending on configuration. Otherwise, this can be the same value as the canonical image URI. - */ - image_uri: string; - /** - * The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive. - */ - image_canonical_uri: string; -} - -/** - * GET request that returns transactions - */ -export interface MempoolTransactionListResponse { - limit: number; - offset: number; - total: number; - results: MempoolTransaction[]; -} - -/** - * GET raw transaction - */ -export interface GetRawTransactionResult { - /** - * A hex encoded serialized transaction - */ - raw_tx: string; -} - -/** - * GET request that returns transactions - */ -export interface TransactionResults { - /** - * The number of transactions to return - */ - limit: number; - /** - * The number to transactions to skip (starting at `0`) - */ - offset: number; - /** - * The number of transactions available - */ - total: number; - results: Transaction[]; -} - -/** - * GET request that returns transactions - */ -export interface PostCoreNodeTransactionsError { - /** - * The error - */ - error: string; - /** - * The reason for the error - */ - reason: string; - /** - * More details about the reason - */ - reason_data: { - [k: string]: unknown | undefined; - }; - /** - * The relevant transaction id - */ - txid: string; -} - -/** - * Token Offering Locked - */ -export interface AddressTokenOfferingLocked { - /** - * Micro-STX amount still locked at current block height. - */ - total_locked: string; - /** - * Micro-STX amount unlocked at current block height. - */ - total_unlocked: string; - unlock_schedule: AddressUnlockSchedule[]; -} - -/** - * Transaction with STX transfers for a given address - */ -export interface AddressTransactionWithTransfers { - tx: Transaction; - /** - * Total sent from the given address, including the tx fee, in micro-STX as an integer string. - */ - stx_sent: string; - /** - * Total received by the given address in micro-STX as an integer string. - */ - stx_received: string; - stx_transfers: { - /** - * Amount transferred in micro-STX as an integer string. - */ - amount: string; - /** - * Principal that sent STX. This is unspecified if the STX were minted. - */ - sender?: string; - /** - * Principal that received STX. This is unspecified if the STX were burned. - */ - recipient?: string; - }[]; -} - -/** - * Unlock schedule amount and block height - */ -export interface AddressUnlockSchedule { - /** - * Micro-STX amount locked at this block height. - */ - amount: string; - block_height: number; -} - -/** - * A block - */ -export interface Block { - /** - * Set to `true` if block corresponds to the canonical chain tip - */ - canonical: boolean; - /** - * Height of the block - */ - height: number; - /** - * Hash representing the block - */ - hash: string; - /** - * Hash of the parent block - */ - parent_block_hash: string; - /** - * Unix timestamp (in seconds) indicating when this block was mined. - */ - burn_block_time: number; - /** - * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) indicating when this block was mined. - */ - burn_block_time_iso: string; - /** - * Hash of the anchor chain block - */ - burn_block_hash: string; - /** - * Height of the anchor chain block - */ - burn_block_height: number; - /** - * Anchor chain transaction ID - */ - miner_txid: string; - /** - * List of transactions included in the block - */ - txs: string[]; -} - -/** - * Reward slot holder on the burnchain - */ -export interface BurnchainRewardSlotHolder { - /** - * Set to `true` if block corresponds to the canonical burchchain tip - */ - canonical: boolean; - /** - * The hash representing the burnchain block - */ - burn_block_hash: string; - /** - * Height of the burnchain block - */ - burn_block_height: number; - /** - * The recipient address that validly received PoX commitments, in the format native to the burnchain (e.g. B58 encoded for Bitcoin) - */ - address: string; - /** - * The index position of the reward entry, useful for ordering when there's more than one slot per burnchain block - */ - slot_index: number; -} - -/** - * Reward payment made on the burnchain - */ -export interface BurnchainReward { - /** - * Set to `true` if block corresponds to the canonical burchchain tip - */ - canonical: boolean; - /** - * The hash representing the burnchain block - */ - burn_block_hash: string; - /** - * Height of the burnchain block - */ - burn_block_height: number; - /** - * The total amount of burnchain tokens burned for this burnchain block, in the smallest unit (e.g. satoshis for Bitcoin) - */ - burn_amount: string; - /** - * The recipient address that received the burnchain rewards, in the format native to the burnchain (e.g. B58 encoded for Bitcoin) - */ - reward_recipient: string; - /** - * The amount of burnchain tokens rewarded to the recipient, in the smallest unit (e.g. satoshis for Bitcoin) - */ - reward_amount: string; - /** - * The index position of the reward entry, useful for ordering when there's more than one recipient per burnchain block - */ - reward_index: number; -} - -/** - * Total burnchain rewards made to a recipient - */ -export interface BurnchainRewardsTotal { - /** - * The recipient address that received the burnchain rewards, in the format native to the burnchain (e.g. B58 encoded for Bitcoin) - */ - reward_recipient: string; - /** - * The total amount of burnchain tokens rewarded to the recipient, in the smallest unit (e.g. satoshis for Bitcoin) - */ - reward_amount: string; -} - -/** - * Describes representation of a Type-0 Stacks 2.0 transaction. https://github.com/blockstack/stacks-blockchain/blob/master/sip/sip-005-blocks-and-transactions.md#type-0-transferring-an-asset - */ -export interface ReadOnlyFunctionArgs { - /** - * The simulated tx-sender - */ - sender: string; - /** - * An array of hex serialized Clarity values - */ - arguments: string[]; -} - -/** - * Describes representation of a Type-0 Stacks 2.0 transaction. https://github.com/blockstack/stacks-blockchain/blob/master/sip/sip-005-blocks-and-transactions.md#type-0-transferring-an-asset - */ -export interface MempoolTokenTransferTransaction { - tx_id: string; - tx_status: MempoolTransactionStatus; - tx_result?: { - hex: string; - repr: string; - }; - /** - * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. - */ - nonce: number; - /** - * Integer string (64-bit unsigned integer). - */ - fee_rate: string; - sender_address: string; - /** - * Denotes whether the originating account is the same as the paying account - */ - sponsored: boolean; - sponsor_address?: string; - post_condition_mode: PostConditionMode; - /** - * A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. - */ - receipt_time: number; - /** - * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. - */ - receipt_time_iso: string; - tx_type: "token_transfer"; - token_transfer: { - recipient_address: string; - /** - * Integer string (64-bit unsigned integer) - */ - amount: string; - /** - * Hex encoded arbitrary message, up to 34 bytes length (should try decoding to an ASCII string) - */ - memo: string; - }; -} - -/** - * Describes representation of a Type-1 Stacks 2.0 transaction. https://github.com/blockstack/stacks-blockchain/blob/master/sip/sip-005-blocks-and-transactions.md#type-1-instantiating-a-smart-contract - */ -export interface MempoolSmartContractTransaction { - tx_id: string; - tx_status: MempoolTransactionStatus; - tx_result?: { - hex: string; - repr: string; - }; - /** - * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. - */ - nonce: number; - /** - * Integer string (64-bit unsigned integer). - */ - fee_rate: string; - sender_address: string; - /** - * Denotes whether the originating account is the same as the paying account - */ - sponsored: boolean; - sponsor_address?: string; - post_condition_mode: PostConditionMode; - /** - * A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. - */ - receipt_time: number; - /** - * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. - */ - receipt_time_iso: string; - tx_type: "smart_contract"; - smart_contract: { - contract_id: string; - /** - * Clarity code of the smart contract being deployed - */ - source_code: string; - }; - post_conditions?: PostCondition[]; -} - -/** - * Describes representation of a Type 2 Stacks 2.0 transaction: Contract Call - */ -export interface MempoolContractCallTransaction { - tx_id: string; - tx_status: MempoolTransactionStatus; - tx_result?: { - hex: string; - repr: string; - }; - /** - * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. - */ - nonce: number; - /** - * Integer string (64-bit unsigned integer). - */ - fee_rate: string; - sender_address: string; - /** - * Denotes whether the originating account is the same as the paying account - */ - sponsored: boolean; - sponsor_address?: string; - post_condition_mode: PostConditionMode; - /** - * A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. - */ - receipt_time: number; - /** - * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. - */ - receipt_time_iso: string; - tx_type: "contract_call"; - contract_call: { - contract_id: string; - /** - * Name of the Clarity function to be invoked - */ - function_name: string; - }; - post_conditions: PostCondition[]; -} - -/** - * Describes representation of a Type 3 Stacks 2.0 transaction: Poison Microblock - */ -export interface MempoolPoisonMicroblockTransaction { - tx_id: string; - tx_status: MempoolTransactionStatus; - tx_result?: { - hex: string; - repr: string; - }; - /** - * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. - */ - nonce: number; - /** - * Integer string (64-bit unsigned integer). - */ - fee_rate: string; - sender_address: string; - /** - * Denotes whether the originating account is the same as the paying account - */ - sponsored: boolean; - sponsor_address?: string; - post_condition_mode: PostConditionMode; - /** - * A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. - */ - receipt_time: number; - /** - * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. - */ - receipt_time_iso: string; - tx_type: "poison_microblock"; - poison_microblock: { - /** - * Hex encoded microblock header - */ - microblock_header_1: string; - /** - * Hex encoded microblock header - */ - microblock_header_2: string; - }; -} - -/** - * Describes representation of a Type 3 Stacks 2.0 transaction: Poison Microblock - */ -export interface MempoolCoinbaseTransaction { - tx_id: string; - tx_status: MempoolTransactionStatus; - tx_result?: { - hex: string; - repr: string; - }; - /** - * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. - */ - nonce: number; - /** - * Integer string (64-bit unsigned integer). - */ - fee_rate: string; - sender_address: string; - /** - * Denotes whether the originating account is the same as the paying account - */ - sponsored: boolean; - sponsor_address?: string; - post_condition_mode: PostConditionMode; - /** - * A unix timestamp (in seconds) indicating when the transaction broadcast was received by the node. - */ - receipt_time: number; - /** - * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when the transaction broadcast was received by the node. - */ - receipt_time_iso: string; - tx_type: "coinbase"; - coinbase_payload: { - /** - * Hex encoded 32-byte scratch space for block leader's use - */ - data: string; - }; -} - -/** - * Status of the transaction - */ -export type MempoolTransactionStatus = - | "pending" - | "dropped_replace_by_fee" - | "dropped_replace_across_fork" - | "dropped_too_expensive" - | "dropped_stale_garbage_collect"; - -/** - * Describes all transaction types on Stacks 2.0 blockchain - */ -export type MempoolTransaction = - | MempoolTokenTransferTransaction - | MempoolSmartContractTransaction - | MempoolContractCallTransaction - | MempoolPoisonMicroblockTransaction - | MempoolCoinbaseTransaction; - -export interface NftEvent { - sender: string; - recipient: string; - asset_identifier: string; - /** - * Identifier of the NFT - */ - value: { - /** - * Hex string representing the identifier of the NFT - */ - hex: string; - /** - * Readable string of the NFT identifier - */ - repr: string; - }; - tx_id: string; - block_height: number; -} - -export interface PostConditionStx { - principal: PostConditionPrincipal; - condition_code: PostConditionFungibleConditionCode; - amount: string; - type: "stx"; -} - -export interface PostConditionFungible { - principal: PostConditionPrincipal; - condition_code: PostConditionFungibleConditionCode; - type: "fungible"; - amount: string; - asset: { - asset_name: string; - contract_address: string; - contract_name: string; - }; -} - -export interface PostConditionNonFungible { - principal: PostConditionPrincipal; - condition_code: PostConditionNonFungibleConditionCode; - type: "non_fungible"; - asset_value: { - hex: string; - repr: string; - }; - asset: { - asset_name: string; - contract_address: string; - contract_name: string; - }; -} - -/** - * A fungible condition code encodes a statement being made for either STX or a fungible token, with respect to the originating account. - */ -export type PostConditionFungibleConditionCode = - | "sent_equal_to" - | "sent_greater_than" - | "sent_greater_than_or_equal_to" - | "sent_less_than" - | "sent_less_than_or_equal_to"; - -export type PostConditionMode = "allow" | "deny"; - -/** - * A non-fungible condition code encodes a statement being made about a non-fungible token, with respect to whether or not the particular non-fungible token is owned by the account. - */ -export type PostConditionNonFungibleConditionCode = "sent" | "not_sent"; - -export type PostConditionPrincipalType = "principal_origin" | "principal_standard" | "principal_contract"; - -export type PostConditionPrincipal = - | { - /** - * String literal of type `PostConditionPrincipalType` - */ - type_id: "principal_origin"; - } - | { - /** - * String literal of type `PostConditionPrincipalType` - */ - type_id: "principal_standard"; - address: string; - } - | { - /** - * String literal of type `PostConditionPrincipalType` - */ - type_id: "principal_contract"; - address: string; - contract_name: string; - }; - -export type PostConditionType = "stx" | "non_fungible" | "fungible"; - -/** - * Post-conditionscan limit the damage done to a user's assets - */ -export type PostCondition = PostConditionStx | PostConditionFungible | PostConditionNonFungible; - -/** - * The account_identifier uniquely identifies an account within a network. All fields in the account_identifier are utilized to determine this uniqueness (including the metadata field, if populated). - */ -export interface RosettaAccountIdentifier { - /** - * The address may be a cryptographic public key (or some encoding of it) or a provided username. - */ - address: string; - sub_account?: RosettaSubAccount; - /** - * Blockchains that utilize a username model (where the address is not a derivative of a cryptographic public key) should specify the public key(s) owned by the address in metadata. - */ - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * The account_identifier uniquely identifies an account within a network. All fields in the account_identifier are utilized to determine this uniqueness (including the metadata field, if populated). - */ -export interface RosettaAccount { - /** - * The address may be a cryptographic public key (or some encoding of it) or a provided username. - */ - address: string; - sub_account?: RosettaSubAccount; - /** - * Blockchains that utilize a username model (where the address is not a derivative of a cryptographic public key) should specify the public key(s) owned by the address in metadata. - */ - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * Amount is some Value of a Currency. It is considered invalid to specify a Value without a Currency. - */ -export interface RosettaMaxFeeAmount { - /** - * Value of the transaction in atomic units represented as an arbitrary-sized signed integer. For example, 1 BTC would be represented by a value of 100000000. - */ - value: string; - currency: RosettaCurrency; - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * Amount is some Value of a Currency. It is considered invalid to specify a Value without a Currency. - */ -export interface RosettaAmount { - /** - * Value of the transaction in atomic units represented as an arbitrary-sized signed integer. For example, 1 BTC would be represented by a value of 100000000. - */ - value: string; - currency: RosettaCurrency; - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * This is also known as the block hash. - */ -export interface RosettaBlockIdentifierHash { - /** - * This is also known as the block hash. - */ - hash?: string; -} - -/** - * This is also known as the block height. - */ -export interface RosettaBlockIdentifierHeight { - /** - * This is also known as the block height. - */ - index?: number; -} - -/** - * The block_identifier uniquely identifies a block in a particular network. - */ -export interface RosettaBlockIdentifier { - /** - * This is also known as the block hash. - */ - hash: string; - /** - * This is also known as the block height. - */ - index: number; -} - -/** - * Blocks contain an array of Transactions that occurred at a particular BlockIdentifier. A hard requirement for blocks returned by Rosetta implementations is that they MUST be inalterable: once a client has requested and received a block identified by a specific BlockIndentifier, all future calls for that same BlockIdentifier must return the same block contents. - */ -export interface RosettaBlock { - block_identifier: RosettaBlockIdentifier; - parent_block_identifier: RosettaParentBlockIdentifier; - /** - * The timestamp of the block in milliseconds since the Unix Epoch. The timestamp is stored in milliseconds because some blockchains produce blocks more often than once a second. - */ - timestamp: number; - /** - * All the transactions in the block - */ - transactions: RosettaTransaction[]; - /** - * meta data - */ - metadata?: { - transactions_root: string; - difficulty: string; - [k: string]: unknown | undefined; - }; -} - -/** - * CoinChange is used to represent a change in state of a some coin identified by a coin_identifier. This object is part of the Operation model and must be populated for UTXO-based blockchains. Coincidentally, this abstraction of UTXOs allows for supporting both account-based transfers and UTXO-based transfers on the same blockchain (when a transfer is account-based, don't populate this model). - */ -export interface RosettaCoinChange { - /** - * CoinIdentifier uniquely identifies a Coin. - */ - coin_identifier: { - /** - * Identifier should be populated with a globally unique identifier of a Coin. In Bitcoin, this identifier would be transaction_hash:index. - */ - identifier: string; - [k: string]: unknown | undefined; - }; - /** - * CoinActions are different state changes that a Coin can undergo. When a Coin is created, it is coin_created. When a Coin is spent, it is coin_spent. It is assumed that a single Coin cannot be created or spent more than once. - */ - coin_action: "coin_created" | "coin_spent"; -} - -/** - * If a blockchain is UTXO-based, all unspent Coins owned by an account_identifier should be returned alongside the balance. It is highly recommended to populate this field so that users of the Rosetta API implementation don't need to maintain their own indexer to track their UTXOs. - */ -export interface RosettaCoin { - /** - * CoinIdentifier uniquely identifies a Coin. - */ - coin_identifier: { - /** - * Identifier should be populated with a globally unique identifier of a Coin. In Bitcoin, this identifier would be transaction_hash:index. - */ - identifier: string; - [k: string]: unknown | undefined; - }; - amount: RosettaAmount; -} - -/** - * The options that will be sent directly to /construction/metadata by the caller. - */ -export interface RosettaOptions { - /** - * sender's address - */ - sender_address?: string; - /** - * Type of operation e.g transfer - */ - type?: string; - /** - * This value indicates the state of the operations - */ - status?: string | null; - /** - * Recipient's address - */ - token_transfer_recipient_address?: string; - /** - * Amount to be transfered. - */ - amount?: string; - /** - * Currency symbol e.g STX - */ - symbol?: string; - /** - * Number of decimal places - */ - decimals?: number; - /** - * Maximum price a user is willing to pay. - */ - gas_limit?: number; - /** - * Cost necessary to perform a transaction on the network - */ - gas_price?: number; - /** - * A suggested fee multiplier to indicate that the suggested fee should be scaled. This may be used to set higher fees for urgent transactions or to pay lower fees when there is less urgency. - */ - suggested_fee_multiplier?: number; - /** - * Maximum fee user is willing to pay - */ - max_fee?: string; - /** - * Fee for this transaction - */ - fee?: string; - /** - * Transaction approximative size (used to calculate total fee). - */ - size?: number; - /** - * Number of cycles when stacking. - */ - number_of_cycles?: number; - /** - * Address of the contract to call. - */ - contract_address?: string; - /** - * Name of the contract to call. - */ - contract_name?: string; - /** - * Set the burnchain (BTC) block for stacking lock to start. - */ - burn_block_height?: number; -} - -/** - * Currency is composed of a canonical Symbol and Decimals. This Decimals value is used to convert an Amount.Value from atomic units (Satoshis) to standard units (Bitcoins). - */ -export interface RosettaCurrency { - /** - * Canonical symbol associated with a currency. - */ - symbol: string; - /** - * Number of decimal places in the standard unit representation of the amount. For example, BTC has 8 decimals. Note that it is not possible to represent the value of some currency in atomic units that is not base 10. - */ - decimals: number; - /** - * Any additional information related to the currency itself. For example, it would be useful to populate this object with the contract address of an ERC-20 token. - */ - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * Instead of utilizing HTTP status codes to describe node errors (which often do not have a good analog), rich errors are returned using this object. Both the code and message fields can be individually used to correctly identify an error. Implementations MUST use unique values for both fields. - */ -export interface RosettaError { - /** - * Code is a network-specific error code. If desired, this code can be equivalent to an HTTP status code. - */ - code: number; - /** - * Message is a network-specific error message. The message MUST NOT change for a given code. In particular, this means that any contextual information should be included in the details field. - */ - message: string; - /** - * An error is retriable if the same request may succeed if submitted again. - */ - retriable: boolean; - /** - * Often times it is useful to return context specific to the request that caused the error (i.e. a sample of the stack trace or impacted account) in addition to the standard error message. - */ - details?: { - address?: string; - error?: string; - [k: string]: unknown | undefined; - }; -} - -/** - * The block_identifier uniquely identifies a block in a particular network. - */ -export interface RosettaGenesisBlockIdentifier { - /** - * This is also known as the block height. - */ - index: number; - /** - * Block hash - */ - hash: string; -} - -/** - * The network_identifier specifies which network a particular object is associated with. - */ -export interface NetworkIdentifier { - /** - * Blockchain name - */ - blockchain: string; - /** - * If a blockchain has a specific chain-id or network identifier, it should go in this field. It is up to the client to determine which network-specific identifier is mainnet or testnet. - */ - network: string; - /** - * In blockchains with sharded state, the SubNetworkIdentifier is required to query some object on a specific shard. This identifier is optional for all non-sharded blockchains. - */ - sub_network_identifier?: { - /** - * Network name - */ - network: string; - /** - * Meta data from subnetwork identifier - */ - metadata?: { - /** - * producer - */ - producer: string; - [k: string]: unknown | undefined; - }; - [k: string]: unknown | undefined; - }; -} - -/** - * A Peer is a representation of a node's peer. - */ -export interface RosettaPeers { - /** - * peer id - */ - peer_id: string; - /** - * meta data - */ - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * The block_identifier uniquely identifies a block in a particular network. - */ -export interface RosettaOldestBlockIdentifier { - /** - * This is also known as the block height. - */ - index: number; - /** - * Block hash - */ - hash: string; -} - -/** - * The operation_identifier uniquely identifies an operation within a transaction. - */ -export interface RosettaOperationIdentifier { - /** - * The operation index is used to ensure each operation has a unique identifier within a transaction. This index is only relative to the transaction and NOT GLOBAL. The operations in each transaction should start from index 0. To clarify, there may not be any notion of an operation index in the blockchain being described. - */ - index: number; - /** - * Some blockchains specify an operation index that is essential for client use. For example, Bitcoin uses a network_index to identify which UTXO was used in a transaction. network_index should not be populated if there is no notion of an operation index in a blockchain (typically most account-based blockchains). - */ - network_index?: number; -} - -/** - * OperationStatus is utilized to indicate which Operation status are considered successful. - */ -export interface RosettaOperationStatus { - /** - * The status is the network-specific status of the operation. - */ - status: string; - /** - * An Operation is considered successful if the Operation.Amount should affect the Operation.Account. Some blockchains (like Bitcoin) only include successful operations in blocks but other blockchains (like Ethereum) include unsuccessful operations that incur a fee. To reconcile the computed balance from the stream of Operations, it is critical to understand which Operation.Status indicate an Operation is successful and should affect an Account. - */ - successful: boolean; -} - -/** - * Operations contain all balance-changing information within a transaction. They are always one-sided (only affect 1 AccountIdentifier) and can succeed or fail independently from a Transaction. - */ -export interface RosettaOperation { - operation_identifier: RosettaOperationIdentifier; - /** - * Restrict referenced related_operations to identifier indexes < the current operation_identifier.index. This ensures there exists a clear DAG-structure of relations. Since operations are one-sided, one could imagine relating operations in a single transfer or linking operations in a call tree. - */ - related_operations?: RosettaRelatedOperation[]; - /** - * The network-specific type of the operation. Ensure that any type that can be returned here is also specified in the NetworkStatus. This can be very useful to downstream consumers that parse all block data. - */ - type: string; - /** - * The network-specific status of the operation. Status is not defined on the transaction object because blockchains with smart contracts may have transactions that partially apply. Blockchains with atomic transactions (all operations succeed or all operations fail) will have the same status for each operation. - */ - status?: string; - account?: RosettaAccount; - amount?: RosettaAmount; - coin_change?: RosettaCoinChange; - /** - * Operations Meta Data - */ - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * The transaction_identifier uniquely identifies a transaction in a particular network and block or in the mempool. - */ -export interface OtherTransactionIdentifier { - /** - * Any transactions that are attributable only to a block (ex: a block event) should use the hash of the block as the identifier. - */ - hash: string; -} - -/** - * The block_identifier uniquely identifies a block in a particular network. - */ -export interface RosettaParentBlockIdentifier { - /** - * This is also known as the block height. - */ - index: number; - /** - * Block hash - */ - hash: string; -} - -/** - * When fetching data by BlockIdentifier, it may be possible to only specify the index or hash. If neither property is specified, it is assumed that the client is making a request at the current block. - */ -export type RosettaPartialBlockIdentifier = RosettaBlockIdentifierHash | RosettaBlockIdentifierHeight; - -/** - * PublicKey contains a public key byte array for a particular CurveType encoded in hex. Note that there is no PrivateKey struct as this is NEVER the concern of an implementation. - */ -export interface RosettaPublicKey { - /** - * Hex-encoded public key bytes in the format specified by the CurveType. - */ - hex_bytes: string; - /** - * CurveType is the type of cryptographic curve associated with a PublicKey. - */ - curve_type: "secp256k1" | "edwards25519"; -} - -/** - * Restrict referenced related_operations to identifier indexes < the current operation_identifier.index. This ensures there exists a clear DAG-structure of relations. Since operations are one-sided, one could imagine relating operations in a single transfer or linking operations in a call tree. - */ -export interface RosettaRelatedOperation { - /** - * Describes the index of related operation. - */ - index: number; - /** - * Some blockchains specify an operation index that is essential for client use. network_index should not be populated if there is no notion of an operation index in a blockchain (typically most account-based blockchains). - */ - network_index?: number; -} - -/** - * Signature contains the payload that was signed, the public keys of the keypairs used to produce the signature, the signature (encoded in hex), and the SignatureType. PublicKey is often times not known during construction of the signing payloads but may be needed to combine signatures properly. - */ -export interface RosettaSignature { - signing_payload: SigningPayload; - public_key: RosettaPublicKey; - /** - * SignatureType is the type of a cryptographic signature. - */ - signature_type: "ecdsa" | "ecdsa_recovery" | "ed25519" | "schnorr_1" | "schnorr_poseidon"; - hex_bytes: string; -} - -/** - * SigningPayload is signed by the client with the keypair associated with an address using the specified SignatureType. SignatureType can be optionally populated if there is a restriction on the signature scheme that can be used to sign the payload. - */ -export interface SigningPayload { - /** - * [DEPRECATED by account_identifier in v1.4.4] The network-specific address of the account that should sign the payload. - */ - address?: string; - account_identifier?: RosettaAccount; - hex_bytes: string; - /** - * SignatureType is the type of a cryptographic signature. - */ - signature_type?: "ecdsa" | "ecdsa_recovery" | "ed25519" | "schnorr_1" | "schnorr_poseidon"; -} - -/** - * An account may have state specific to a contract address (ERC-20 token) and/or a stake (delegated balance). The sub_account_identifier should specify which state (if applicable) an account instantiation refers to. - */ -export interface RosettaSubAccount { - /** - * The address may be a cryptographic public key (or some encoding of it) or a provided username. - */ - address: string; - /** - * If the SubAccount address is not sufficient to uniquely specify a SubAccount, any other identifying information can be stored here. It is important to note that two SubAccounts with identical addresses but differing metadata will not be considered equal by clients. - */ - metadata?: { - [k: string]: unknown | undefined; - }; -} - -/** - * SyncStatus is used to provide additional context about an implementation's sync status. It is often used to indicate that an implementation is healthy when it cannot be queried until some sync phase occurs. If an implementation is immediately queryable, this model is often not populated. - */ -export interface RosettaSyncStatus { - /** - * CurrentIndex is the index of the last synced block in the current stage. - */ - current_index: number; - /** - * TargetIndex is the index of the block that the implementation is attempting to sync to in the current stage. - */ - target_index?: number; - /** - * Stage is the phase of the sync process. - */ - stage?: string; - /** - * Synced indicates if an implementation has synced up to the most recent block. - */ - synced?: boolean; -} - -/** - * The transaction_identifier uniquely identifies a transaction in a particular network and block or in the mempool. - */ -export interface TransactionIdentifier { - /** - * Any transactions that are attributable only to a block (ex: a block event) should use the hash of the block as the identifier. - */ - hash: string; -} - -/** - * Transactions contain an array of Operations that are attributable to the same TransactionIdentifier. - */ -export interface RosettaTransaction { - transaction_identifier: TransactionIdentifier; - /** - * List of operations - */ - operations: RosettaOperation[]; - /** - * Transactions that are related to other transactions (like a cross-shard transaction) should include the tranaction_identifier of these transactions in the metadata. - */ - metadata?: { - /** - * The Size - */ - size: number; - /** - * The locktime - */ - lockTime: number; - [k: string]: unknown | undefined; - }; -} - -export type TransactionEventAssetType = "transfer" | "mint" | "burn"; - -export interface TransactionEventAsset { - asset_event_type?: TransactionEventAssetType; - asset_id?: string; - sender?: string; - recipient?: string; - amount?: string; - value?: string; -} - -export interface TransactionEventFungibleAsset { - event_index: number; - event_type: "fungible_token_asset"; - asset: { - asset_event_type: string; - asset_id: string; - sender: string; - recipient: string; - amount: string; - }; -} - -export interface TransactionEventNonFungibleAsset { - event_index: number; - event_type: "non_fungible_token_asset"; - asset: { - asset_event_type: string; - asset_id: string; - sender: string; - recipient: string; - value: { - hex: string; - repr: string; - }; - }; -} - -/** - * Only present in `smart_contract` and `contract_call` tx types. - */ -export interface TransactionEventSmartContractLog { - event_index: number; - event_type: "smart_contract_log"; - contract_log: { - contract_id: string; - topic: string; - value: { - hex: string; - repr: string; - }; - }; -} - -/** - * Only present in `smart_contract` and `contract_call` tx types. - */ -export interface TransactionEventStxAsset { - event_index: number; - event_type: "stx_asset"; - asset: TransactionEventAsset; -} - -/** - * Only present in `smart_contract` and `contract_call` tx types. - */ -export interface TransactionEventStxLock { - event_index: number; - event_type: "stx_lock"; - stx_lock_event: { - locked_amount: string; - unlock_height: number; - locked_address: string; - }; -} - -/** - * Events types - */ -export type TransactionEventType = - | "smart_contract_log" - | "stx_lock" - | "stx_asset" - | "fungible_token_asset" - | "non_fungible_token_asset"; - -export type TransactionEvent = - | TransactionEventSmartContractLog - | TransactionEventStxLock - | TransactionEventStxAsset - | TransactionEventFungibleAsset - | TransactionEventNonFungibleAsset; - -/** - * Describes representation of a Type-0 Stacks 2.0 transaction. https://github.com/blockstack/stacks-blockchain/blob/master/sip/sip-005-blocks-and-transactions.md#type-0-transferring-an-asset - */ -export interface TokenTransferTransaction { - /** - * Hash of the blocked this transactions was associated with - */ - block_hash: string; - /** - * Height of the block this transactions was associated with - */ - block_height: number; - /** - * Unix timestamp (in seconds) indicating when this block was mined - */ - burn_block_time: number; - /** - * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when this block was mined. - */ - burn_block_time_iso: string; - /** - * Set to `true` if block corresponds to the canonical chain tip - */ - canonical: boolean; - /** - * Transaction ID - */ - tx_id: string; - /** - * Index of the transaction, indicating the order. Starts at `0` and increases with each transaction - */ - tx_index: number; - tx_status: TransactionStatus; - /** - * Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. - */ - tx_result?: { - /** - * Hex string representing the value fo the transaction result - */ - hex: string; - /** - * Readable string of the transaction result - */ - repr: string; - }; - /** - * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. - */ - nonce: number; - /** - * Transaction fee as Integer string (64-bit unsigned integer). - */ - fee_rate: string; - /** - * Address of the transaction initiator - */ - sender_address: string; - /** - * Denotes whether the originating account is the same as the paying account - */ - sponsored: boolean; - sponsor_address?: string; - post_condition_mode: PostConditionMode; - /** - * Number of transaction events - */ - event_count: number; - /** - * List of transaction events - */ - events: TransactionEvent[]; - tx_type: "token_transfer"; - token_transfer: { - recipient_address: string; - /** - * Transfer amount as Integer string (64-bit unsigned integer) - */ - amount: string; - /** - * Hex encoded arbitrary message, up to 34 bytes length (should try decoding to an ASCII string) - */ - memo: string; - }; -} - -/** - * Describes representation of a Type-1 Stacks 2.0 transaction. https://github.com/blockstack/stacks-blockchain/blob/master/sip/sip-005-blocks-and-transactions.md#type-1-instantiating-a-smart-contract - */ -export interface SmartContractTransaction { - /** - * Hash of the blocked this transactions was associated with - */ - block_hash: string; - /** - * Height of the block this transactions was associated with - */ - block_height: number; - /** - * Unix timestamp (in seconds) indicating when this block was mined - */ - burn_block_time: number; - /** - * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when this block was mined. - */ - burn_block_time_iso: string; - /** - * Set to `true` if block corresponds to the canonical chain tip - */ - canonical: boolean; - /** - * Transaction ID - */ - tx_id: string; - /** - * Index of the transaction, indicating the order. Starts at `0` and increases with each transaction - */ - tx_index: number; - tx_status: TransactionStatus; - /** - * Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. - */ - tx_result?: { - /** - * Hex string representing the value fo the transaction result - */ - hex: string; - /** - * Readable string of the transaction result - */ - repr: string; - }; - /** - * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. - */ - nonce: number; - /** - * Transaction fee as Integer string (64-bit unsigned integer). - */ - fee_rate: string; - /** - * Address of the transaction initiator - */ - sender_address: string; - /** - * Denotes whether the originating account is the same as the paying account - */ - sponsored: boolean; - sponsor_address?: string; - post_condition_mode: PostConditionMode; - /** - * Number of transaction events - */ - event_count: number; - /** - * List of transaction events - */ - events: TransactionEvent[]; - tx_type: "smart_contract"; - smart_contract: { - /** - * Contract identifier formatted as `.` - */ - contract_id: string; - /** - * Clarity code of the smart contract being deployed - */ - source_code: string; - }; - post_conditions?: PostCondition[]; -} - -/** - * Describes representation of a Type 2 Stacks 2.0 transaction: Contract Call - */ -export interface ContractCallTransaction { - /** - * Hash of the blocked this transactions was associated with - */ - block_hash: string; - /** - * Height of the block this transactions was associated with - */ - block_height: number; - /** - * Unix timestamp (in seconds) indicating when this block was mined - */ - burn_block_time: number; - /** - * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when this block was mined. - */ - burn_block_time_iso: string; - /** - * Set to `true` if block corresponds to the canonical chain tip - */ - canonical: boolean; - /** - * Transaction ID - */ - tx_id: string; - /** - * Index of the transaction, indicating the order. Starts at `0` and increases with each transaction - */ - tx_index: number; - tx_status: TransactionStatus; - /** - * Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. - */ - tx_result?: { - /** - * Hex string representing the value fo the transaction result - */ - hex: string; - /** - * Readable string of the transaction result - */ - repr: string; - }; - /** - * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. - */ - nonce: number; - /** - * Transaction fee as Integer string (64-bit unsigned integer). - */ - fee_rate: string; - /** - * Address of the transaction initiator - */ - sender_address: string; - /** - * Denotes whether the originating account is the same as the paying account - */ - sponsored: boolean; - sponsor_address?: string; - post_condition_mode: PostConditionMode; - /** - * Number of transaction events - */ - event_count: number; - /** - * List of transaction events - */ - events: TransactionEvent[]; - tx_type: "contract_call"; - contract_call: { - /** - * Contract identifier formatted as `.` - */ - contract_id: string; - /** - * Name of the Clarity function to be invoked - */ - function_name: string; - /** - * Function definition, including function name and type as well as parameter names and types - */ - function_signature: string; - /** - * List of arguments used to invoke the function - */ - function_args?: { - hex: string; - repr: string; - name: string; - type: string; - }[]; - }; - post_conditions: PostCondition[]; -} - -/** - * Describes representation of a Type 3 Stacks 2.0 transaction: Poison Microblock - */ -export interface PoisonMicroblockTransaction { - /** - * Hash of the blocked this transactions was associated with - */ - block_hash: string; - /** - * Height of the block this transactions was associated with - */ - block_height: number; - /** - * Unix timestamp (in seconds) indicating when this block was mined - */ - burn_block_time: number; - /** - * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when this block was mined. - */ - burn_block_time_iso: string; - /** - * Set to `true` if block corresponds to the canonical chain tip - */ - canonical: boolean; - /** - * Transaction ID - */ - tx_id: string; - /** - * Index of the transaction, indicating the order. Starts at `0` and increases with each transaction - */ - tx_index: number; - tx_status: TransactionStatus; - /** - * Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. - */ - tx_result?: { - /** - * Hex string representing the value fo the transaction result - */ - hex: string; - /** - * Readable string of the transaction result - */ - repr: string; - }; - /** - * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. - */ - nonce: number; - /** - * Transaction fee as Integer string (64-bit unsigned integer). - */ - fee_rate: string; - /** - * Address of the transaction initiator - */ - sender_address: string; - /** - * Denotes whether the originating account is the same as the paying account - */ - sponsored: boolean; - sponsor_address?: string; - post_condition_mode: PostConditionMode; - /** - * Number of transaction events - */ - event_count: number; - /** - * List of transaction events - */ - events: TransactionEvent[]; - tx_type: "poison_microblock"; - poison_microblock: { - /** - * Hex encoded microblock header - */ - microblock_header_1: string; - /** - * Hex encoded microblock header - */ - microblock_header_2: string; - }; -} - -/** - * Describes representation of a Type 3 Stacks 2.0 transaction: Poison Microblock - */ -export interface CoinbaseTransaction { - /** - * Hash of the blocked this transactions was associated with - */ - block_hash: string; - /** - * Height of the block this transactions was associated with - */ - block_height: number; - /** - * Unix timestamp (in seconds) indicating when this block was mined - */ - burn_block_time: number; - /** - * An ISO 8601 (YYYY-MM-DDTHH:mm:ss.sssZ) timestamp indicating when this block was mined. - */ - burn_block_time_iso: string; - /** - * Set to `true` if block corresponds to the canonical chain tip - */ - canonical: boolean; - /** - * Transaction ID - */ - tx_id: string; - /** - * Index of the transaction, indicating the order. Starts at `0` and increases with each transaction - */ - tx_index: number; - tx_status: TransactionStatus; - /** - * Result of the transaction. For contract calls, this will show the value returned by the call. For other transaction types, this will return a boolean indicating the success of the transaction. - */ - tx_result?: { - /** - * Hex string representing the value fo the transaction result - */ - hex: string; - /** - * Readable string of the transaction result - */ - repr: string; - }; - /** - * Used for ordering the transactions originating from and paying from an account. The nonce ensures that a transaction is processed at most once. The nonce counts the number of times an account's owner(s) have authorized a transaction. The first transaction from an account will have a nonce value equal to 0, the second will have a nonce value equal to 1, and so on. - */ - nonce: number; - /** - * Transaction fee as Integer string (64-bit unsigned integer). - */ - fee_rate: string; - /** - * Address of the transaction initiator - */ - sender_address: string; - /** - * Denotes whether the originating account is the same as the paying account - */ - sponsored: boolean; - sponsor_address?: string; - post_condition_mode: PostConditionMode; - /** - * Number of transaction events - */ - event_count: number; - /** - * List of transaction events - */ - events: TransactionEvent[]; - tx_type: "coinbase"; - coinbase_payload: { - /** - * Hex encoded 32-byte scratch space for block leader's use - */ - data: string; - }; -} - -/** - * Status of the transaction - */ -export type TransactionStatus = "success" | "abort_by_response" | "abort_by_post_condition"; - -/** - * String literal of all Stacks 2.0 transaction types - */ -export type TransactionType = "token_transfer" | "smart_contract" | "contract_call" | "poison_microblock" | "coinbase"; - -/** - * Describes all transaction types on Stacks 2.0 blockchain - */ -export type Transaction = - | TokenTransferTransaction - | SmartContractTransaction - | ContractCallTransaction - | PoisonMicroblockTransaction - | CoinbaseTransaction; - -/** - * A inbound STX transfer with a memo - */ -export interface InboundStxTransfer { - /** - * Principal that sent this transfer - */ - sender: string; - /** - * Transfer amount in micro-STX as integer string - */ - amount: string; - /** - * Hex encoded memo bytes associated with the transfer - */ - memo: string; - /** - * Block height at which this transfer occurred - */ - block_height: number; - /** - * The transaction ID in which this transfer occurred - */ - tx_id: string; - /** - * Indicates if the transfer is from a stx-transfer transaction or a contract-call transaction - */ - transfer_type: "bulk-send" | "stx-transfer"; - /** - * Index of the transaction within a block - */ - tx_index: number; -} - -export interface RpcAddressBalanceNotificationParams { - address: string; - balance: string; -} - -export interface RpcAddressBalanceNotificationResponse { - jsonrpc: "2.0"; - method: "address_balance_update"; - params: RpcAddressBalanceNotificationParams; -} - -export interface RpcAddressBalanceSubscriptionParams { - event: "address_balance_update"; - address: string; -} - -export interface RpcAddressBalanceSubscriptionRequest { - jsonrpc: "2.0"; - id: number | string; - method: "address_balance_update"; - params: RpcAddressBalanceSubscriptionParams; -} - -export interface RpcAddressTxNotificationParams { - address: string; - tx_id: string; - tx_type: TransactionType; - tx_status: TransactionStatus | MempoolTransactionStatus; -} - -export interface RpcAddressTxNotificationResponse { - jsonrpc: "2.0"; - method: "address_tx_update"; - params: RpcAddressTxNotificationParams; -} - -export interface RpcAddressTxSubscriptionParams { - event: "address_tx_update"; - address: string; -} - -export interface RpcAddressTxSubscriptionRequest { - jsonrpc: "2.0"; - id: number | string; - method: "address_tx_update"; - params: RpcAddressTxSubscriptionParams; -} - -export type RpcSubscriptionType = "tx_update" | "address_tx_update" | "address_balance_update"; - -export interface RpcTxUpdateNotificationParams { - tx_id: string; - tx_type: TransactionType; - tx_status: TransactionStatus | MempoolTransactionStatus; -} - -export interface RpcTxUpdateNotificationResponse { - jsonrpc: "2.0"; - method: "tx_update"; - params: RpcTxUpdateNotificationParams; -} - -export interface RpcTxUpdateSubscriptionParams { - event: "tx_update"; - tx_id: string; -} - -export interface RpcTxUpdateSubscriptionRequest { - jsonrpc: "2.0"; - id: number | string; - method: "tx_update"; - params: RpcTxUpdateSubscriptionParams; -} - From 73854ebc1a6c77f3419613acfc041bcaf68f722f Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Wed, 7 Jul 2021 15:09:54 -0500 Subject: [PATCH 18/44] chore: fix NFT/FT variable casing --- docs/api/tokens/fungible-token.schema.json | 1 + .../api/tokens/non-fungible-token.schema.json | 1 + src/event-stream/tokens-contract-handler.ts | 38 +++++++++---------- 3 files changed, 21 insertions(+), 19 deletions(-) diff --git a/docs/api/tokens/fungible-token.schema.json b/docs/api/tokens/fungible-token.schema.json index 59e90ad9a4..a8b4ecfb92 100644 --- a/docs/api/tokens/fungible-token.schema.json +++ b/docs/api/tokens/fungible-token.schema.json @@ -3,6 +3,7 @@ "$id": "fungible-token-metadata", "title": "FungibleTokenMetadataResponse", "type": "object", + "additionalProperties": false, "required": [ "name", "description", diff --git a/docs/api/tokens/non-fungible-token.schema.json b/docs/api/tokens/non-fungible-token.schema.json index 1e1cf8d6e8..3b00b66b39 100644 --- a/docs/api/tokens/non-fungible-token.schema.json +++ b/docs/api/tokens/non-fungible-token.schema.json @@ -3,6 +3,7 @@ "$id": "non-fungible-token-metadata", "title": "NonFungibleTokenMetadataResponse", "type": "object", + "additionalProperties": false, "required": ["name","description", "image_uri", "image_canonical_uri" ], "properties": { "name": { diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index cb2bd5301c..656b946c69 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -152,13 +152,13 @@ const NFT_FUNCTIONS: ClarityAbiFunction[] = [ }, ]; -interface NFTTokenMetadata { +interface NftTokenMetadata { name: string; imageUrl: string; description: string; } -interface FTTokenMetadata { +interface FtTokenMetadata { name: string; image: string; description: string; @@ -220,12 +220,12 @@ export class TokensContractHandler { async start() { if (this.contractAbi.fungible_tokens.length > 0) { if (this.isCompliant(FT_FUNCTIONS)) { - await this.handleFTContract(); + await this.handleFtContract(); } } if (this.contractAbi.non_fungible_tokens.length > 0) { if (this.isCompliant(NFT_FUNCTIONS)) { - await this.handleNFTContract(); + await this.handleNftContract(); } } } @@ -233,7 +233,7 @@ export class TokensContractHandler { /** * fetch Fungible contract metadata */ - private async handleFTContract() { + private async handleFtContract() { try { //make read-only call to contract const contractCallName = await this.makeReadOnlyContractCall('get-name', []); @@ -247,9 +247,9 @@ export class TokensContractHandler { const symbolCV = this.checkAndParseString(contractCallSymbol); const decimalsCV = this.checkAndParseUintCV(contractCallDecimals); - let metadata: FTTokenMetadata = { name: '', description: '', image: '' }; + let metadata: FtTokenMetadata = { name: '', description: '', image: '' }; //fetch metadata from the uri if possible - if (uriCV) metadata = await this.getMetadataFromUri(uriCV.data); + if (uriCV) metadata = await this.getMetadataFromUri(uriCV.data); const { name, description, image } = metadata; const fungibleTokenMetadata: DbFungibleTokenMetadata = { name: nameCV ? nameCV.data : name, //prefer the on-chain name @@ -262,7 +262,7 @@ export class TokensContractHandler { }; //store metadata in db - await this.storeFTMetadata(fungibleTokenMetadata); + await this.storeFtMetadata(fungibleTokenMetadata); } catch (error) { logger.error('error handling FT contract', error); throw error; @@ -272,7 +272,7 @@ export class TokensContractHandler { /** * fetch Non Fungible contract metadata */ - private async handleNFTContract() { + private async handleNftContract() { try { const contractCallTokenId = await this.makeReadOnlyContractCall('get-last-token-id', []); const tokenId = this.checkAndParseUintCV(contractCallTokenId); @@ -281,8 +281,8 @@ export class TokensContractHandler { const contractCallUri = await this.makeReadOnlyContractCall('get-token-uri', [tokenId]); const uriCV = this.checkAndParseOptionalString(contractCallUri); - let metadata: NFTTokenMetadata = { name: '', description: '', imageUrl: '' }; - if (uriCV) metadata = await this.getMetadataFromUri(uriCV.data); + let metadata: NftTokenMetadata = { name: '', description: '', imageUrl: '' }; + if (uriCV) metadata = await this.getMetadataFromUri(uriCV.data); const nonFungibleTokenMetadata: DbNonFungibleTokenMetadata = { name: metadata.name, @@ -291,7 +291,7 @@ export class TokensContractHandler { image_canonical_uri: uriCV ? uriCV.data : '', contract_id: `${this.contractAddress}.${this.contractName}`, }; - await this.storeNFTMetadata(nonFungibleTokenMetadata); + await this.storeNftMetadata(nonFungibleTokenMetadata); } } catch (error) { logger.error('error: error handling NFT contract', error); @@ -299,7 +299,7 @@ export class TokensContractHandler { } } - /**helpng method for creating http url */ + /** helper method for creating http url */ private makeHostedUrl(uri: string): string { const parsedUri = new URL(uri); if (parsedUri.protocol === 'http:' || parsedUri.protocol === 'https:') return uri; @@ -358,24 +358,24 @@ export class TokensContractHandler { } /** - *Store ft metadata to db + * Store ft metadata to db */ - private async storeFTMetadata(ft_metadata: DbFungibleTokenMetadata) { + private async storeFtMetadata(ft_metadata: DbFungibleTokenMetadata) { try { await this.db.updateFtMetadata(ft_metadata); } catch (error) { - throw new Error(`error occured while updating FT metadata ${error}`); + throw new Error(`error occurred while updating FT metadata ${error}`); } } /** - *store NFT Metadata to db + * Store NFT Metadata to db */ - private async storeNFTMetadata(nft_metadata: DbNonFungibleTokenMetadata) { + private async storeNftMetadata(nft_metadata: DbNonFungibleTokenMetadata) { try { await this.db.updateNFtMetadata(nft_metadata); } catch (error) { - throw new Error(`error occured while updating NFT metadata ${error}`); + throw new Error(`error occurred while updating NFT metadata ${error}`); } } From 38781b7def0675181b38aecfab9e6bce6104d9de Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Wed, 7 Jul 2021 15:43:44 -0500 Subject: [PATCH 19/44] chore: store token_uri in db, fix image_canonical_uri value --- .vscode/launch.json | 17 +++++++ docs/api/tokens/fungible-token.schema.json | 5 +++ .../api/tokens/non-fungible-token.schema.json | 44 ++++++++++++------- docs/generated.d.ts | 10 ++++- src/api/routes/tokens/tokens.ts | 14 +++++- src/datastore/common.ts | 2 + src/datastore/postgres-store.ts | 37 ++++++++++++---- src/event-stream/tokens-contract-handler.ts | 14 +++--- src/migrations/1621511823381_nft-metadata.ts | 4 ++ src/migrations/1621511832113_ft-metadata.ts | 4 ++ src/tests-tokens/tokens-metadata-tests.ts | 2 + 11 files changed, 118 insertions(+), 35 deletions(-) diff --git a/.vscode/launch.json b/.vscode/launch.json index cd1b7dae50..66daaf4ed4 100644 --- a/.vscode/launch.json +++ b/.vscode/launch.json @@ -143,6 +143,23 @@ "preLaunchTask": "stacks-node:deploy-dev", "postDebugTask": "stacks-node:stop-dev" }, + { + "type": "node", + "request": "launch", + "name": "Jest: Tokens", + "program": "${workspaceFolder}/node_modules/.bin/jest", + "args": [ + "--testTimeout=3600000", + "--runInBand", + "--no-cache", + "--config", + "${workspaceRoot}/jest.config.tokens.js" + ], + "outputCapture": "std", + "console": "integratedTerminal", + "preLaunchTask": "stacks-node:deploy-dev", + "postDebugTask": "stacks-node:stop-dev" + }, { "type": "node", "request": "launch", diff --git a/docs/api/tokens/fungible-token.schema.json b/docs/api/tokens/fungible-token.schema.json index a8b4ecfb92..c6f5f7fc42 100644 --- a/docs/api/tokens/fungible-token.schema.json +++ b/docs/api/tokens/fungible-token.schema.json @@ -5,6 +5,7 @@ "type": "object", "additionalProperties": false, "required": [ + "token_uri", "name", "description", "image_uri", @@ -13,6 +14,10 @@ "decimals" ], "properties": { + "token_uri": { + "type": "string", + "description": "An optional string that is a valid URI which resolves to this token's metadata. Can be empty." + }, "name": { "type": "string", "description": "Identifies the asset to which this token represents" diff --git a/docs/api/tokens/non-fungible-token.schema.json b/docs/api/tokens/non-fungible-token.schema.json index 3b00b66b39..13308df740 100644 --- a/docs/api/tokens/non-fungible-token.schema.json +++ b/docs/api/tokens/non-fungible-token.schema.json @@ -4,23 +4,33 @@ "title": "NonFungibleTokenMetadataResponse", "type": "object", "additionalProperties": false, - "required": ["name","description", "image_uri", "image_canonical_uri" ], + "required": [ + "token_uri", + "name", + "description", + "image_uri", + "image_canonical_uri" + ], "properties": { - "name": { - "type": "string", - "description": "Identifies the asset to which this token represents" - }, - "description": { - "type": "string", - "description": "Describes the asset to which this token represents" - }, - "image_uri": { - "type": "string", - "description": "A URI pointing to a resource with mime type image/* representing the asset to which this token represents. The API may provide a URI to a cached resource, dependending on configuration. Otherwise, this can be the same value as the canonical image URI." - }, - "image_canonical_uri": { - "type": "string", - "description": "The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive." - } + "token_uri": { + "type": "string", + "description": "An optional string that is a valid URI which resolves to this token's metadata. Can be empty." + }, + "name": { + "type": "string", + "description": "Identifies the asset to which this token represents" + }, + "description": { + "type": "string", + "description": "Describes the asset to which this token represents" + }, + "image_uri": { + "type": "string", + "description": "A URI pointing to a resource with mime type image/* representing the asset to which this token represents. The API may provide a URI to a cached resource, dependending on configuration. Otherwise, this can be the same value as the canonical image URI." + }, + "image_canonical_uri": { + "type": "string", + "description": "The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive." + } } } diff --git a/docs/generated.d.ts b/docs/generated.d.ts index 97d603771e..ff7935ad11 100644 --- a/docs/generated.d.ts +++ b/docs/generated.d.ts @@ -2673,6 +2673,10 @@ export interface RosettaPeers { [k: string]: unknown | undefined; } export interface FungibleTokenMetadataResponse { + /** + * An optional string that is a valid URI which resolves to this token's metadata. Can be empty. + */ + token_uri: string; /** * Identifies the asset to which this token represents */ @@ -2697,9 +2701,12 @@ export interface FungibleTokenMetadataResponse { * The number of decimal places in a token. */ decimals: number; - [k: string]: unknown | undefined; } export interface NonFungibleTokenMetadataResponse { + /** + * An optional string that is a valid URI which resolves to this token's metadata. Can be empty. + */ + token_uri: string; /** * Identifies the asset to which this token represents */ @@ -2716,7 +2723,6 @@ export interface NonFungibleTokenMetadataResponse { * The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive. */ image_canonical_uri: string; - [k: string]: unknown | undefined; } /** * GET request that returns transactions diff --git a/src/api/routes/tokens/tokens.ts b/src/api/routes/tokens/tokens.ts index 5e3d987f91..780d149b80 100644 --- a/src/api/routes/tokens/tokens.ts +++ b/src/api/routes/tokens/tokens.ts @@ -20,9 +20,18 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { return; } - const { name, description, image_uri, image_canonical_uri, symbol, decimals } = metadata.result; + const { + token_uri, + name, + description, + image_uri, + image_canonical_uri, + symbol, + decimals, + } = metadata.result; const response: FungibleTokenMetadataResponse = { + token_uri: token_uri, name: name, description: description, image_uri: image_uri, @@ -42,9 +51,10 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { res.status(404).json({ error: 'tokens not found' }); return; } - const { name, description, image_uri, image_canonical_uri } = metadata.result; + const { token_uri, name, description, image_uri, image_canonical_uri } = metadata.result; const response: NonFungibleTokenMetadataResponse = { + token_uri: token_uri, name: name, description: description, image_uri: image_uri, diff --git a/src/datastore/common.ts b/src/datastore/common.ts index 7ae1c2edfe..b3dfcf55b3 100644 --- a/src/datastore/common.ts +++ b/src/datastore/common.ts @@ -500,6 +500,7 @@ export interface DbRawEventRequest { payload: string; } export interface DbNonFungibleTokenMetadata { + token_uri: string; name: string; description: string; image_uri: string; @@ -513,6 +514,7 @@ export type BlockIdentifier = | { burnBlockHash: string } | { burnBlockHeight: number }; export interface DbFungibleTokenMetadata { + token_uri: string; name: string; description: string; image_uri: string; diff --git a/src/datastore/postgres-store.ts b/src/datastore/postgres-store.ts index 5db442b381..61973c33bb 100644 --- a/src/datastore/postgres-store.ts +++ b/src/datastore/postgres-store.ts @@ -5686,7 +5686,7 @@ export class PgDataStore return this.query(async client => { const queryResult = await client.query( ` - SELECT name, description, image_uri, image_canonical_uri, symbol, decimals, contract_id + SELECT token_uri, name, description, image_uri, image_canonical_uri, symbol, decimals, contract_id FROM ft_metadata WHERE contract_id = $1 LIMIT 1 @@ -5695,6 +5695,7 @@ export class PgDataStore ); if (queryResult.rowCount > 0) { const metadata: DbFungibleTokenMetadata = { + token_uri: queryResult.rows[0].token_uri, name: queryResult.rows[0].name, description: queryResult.rows[0].description, image_uri: queryResult.rows[0].image_uri, @@ -5717,7 +5718,7 @@ export class PgDataStore return this.query(async client => { const queryResult = await client.query( ` - SELECT name, description, image_uri, image_canonical_uri, contract_id + SELECT token_uri, name, description, image_uri, image_canonical_uri, contract_id FROM nft_metadata WHERE contract_id = $1 LIMIT 1 @@ -5726,6 +5727,7 @@ export class PgDataStore ); if (queryResult.rowCount > 0) { const metadata: DbNonFungibleTokenMetadata = { + token_uri: queryResult.rows[0].token_uri, name: queryResult.rows[0].name, description: queryResult.rows[0].description, image_uri: queryResult.rows[0].image_uri, @@ -5744,6 +5746,7 @@ export class PgDataStore async updateFtMetadata(ftMetadata: DbFungibleTokenMetadata): Promise { const { + token_uri, name, description, image_uri, @@ -5756,10 +5759,19 @@ export class PgDataStore const result = await client.query( ` INSERT INTO ft_metadata( - name, description, image_uri, image_canonical_uri, contract_id, symbol, decimals - ) values($1, $2, $3, $4, $5, $6, $7) + token_uri, name, description, image_uri, image_canonical_uri, contract_id, symbol, decimals + ) values($1, $2, $3, $4, $5, $6, $7, $8) `, - [name, description, image_uri, image_canonical_uri, contract_id, symbol, decimals] + [ + token_uri, + name, + description, + image_uri, + image_canonical_uri, + contract_id, + symbol, + decimals, + ] ); this.emit('tokensUpdate', contract_id); @@ -5768,15 +5780,22 @@ export class PgDataStore } async updateNFtMetadata(nftMetadata: DbNonFungibleTokenMetadata): Promise { - const { name, description, image_uri, image_canonical_uri, contract_id } = nftMetadata; + const { + token_uri, + name, + description, + image_uri, + image_canonical_uri, + contract_id, + } = nftMetadata; return await this.queryTx(async client => { const result = await client.query( ` INSERT INTO nft_metadata( - name, description, image_uri, image_canonical_uri, contract_id - ) values($1, $2, $3, $4, $5) + token_uri, name, description, image_uri, image_canonical_uri, contract_id + ) values($1, $2, $3, $4, $5, $6) `, - [name, description, image_uri, image_canonical_uri, contract_id] + [token_uri, name, description, image_uri, image_canonical_uri, contract_id] ); this.emit('tokensUpdate', contract_id); return result.rowCount; diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 656b946c69..edcf8d3364 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -252,10 +252,11 @@ export class TokensContractHandler { if (uriCV) metadata = await this.getMetadataFromUri(uriCV.data); const { name, description, image } = metadata; const fungibleTokenMetadata: DbFungibleTokenMetadata = { + token_uri: uriCV ? uriCV.data : '', name: nameCV ? nameCV.data : name, //prefer the on-chain name description: description, - image_uri: image, - image_canonical_uri: uriCV ? uriCV.data : '', + image_uri: image ? this.makeHostedUrl(image) : '', + image_canonical_uri: image, symbol: symbolCV ? symbolCV.data : '', decimals: decimalsCV ? Number(decimalsCV.value) : 0, contract_id: `${this.contractAddress}.${this.contractName}`, @@ -282,13 +283,16 @@ export class TokensContractHandler { const uriCV = this.checkAndParseOptionalString(contractCallUri); let metadata: NftTokenMetadata = { name: '', description: '', imageUrl: '' }; - if (uriCV) metadata = await this.getMetadataFromUri(uriCV.data); + if (uriCV) { + metadata = await this.getMetadataFromUri(uriCV.data); + } const nonFungibleTokenMetadata: DbNonFungibleTokenMetadata = { + token_uri: uriCV ? uriCV.data : '', name: metadata.name, description: metadata.description, - image_uri: metadata.imageUrl, - image_canonical_uri: uriCV ? uriCV.data : '', + image_uri: metadata.imageUrl ? this.makeHostedUrl(metadata.imageUrl) : '', + image_canonical_uri: metadata.imageUrl, contract_id: `${this.contractAddress}.${this.contractName}`, }; await this.storeNftMetadata(nonFungibleTokenMetadata); diff --git a/src/migrations/1621511823381_nft-metadata.ts b/src/migrations/1621511823381_nft-metadata.ts index b15ec65601..7e0859b398 100644 --- a/src/migrations/1621511823381_nft-metadata.ts +++ b/src/migrations/1621511823381_nft-metadata.ts @@ -13,6 +13,10 @@ export async function up(pgm: MigrationBuilder): Promise { type: 'string', notNull: true, }, + token_uri: { + type: 'string', + notNull: true, + }, description: { type: 'string', notNull: true, diff --git a/src/migrations/1621511832113_ft-metadata.ts b/src/migrations/1621511832113_ft-metadata.ts index 55952ac007..a2fbec1438 100644 --- a/src/migrations/1621511832113_ft-metadata.ts +++ b/src/migrations/1621511832113_ft-metadata.ts @@ -13,6 +13,10 @@ export async function up(pgm: MigrationBuilder): Promise { type: 'string', notNull: true, }, + token_uri: { + type: 'string', + notNull: true, + }, description: { type: 'string', notNull: true, diff --git a/src/tests-tokens/tokens-metadata-tests.ts b/src/tests-tokens/tokens-metadata-tests.ts index 4c0100bdca..7ade211bb8 100644 --- a/src/tests-tokens/tokens-metadata-tests.ts +++ b/src/tests-tokens/tokens-metadata-tests.ts @@ -143,6 +143,7 @@ describe('api tests', () => { `/extended/v1/tokens/${senderAddress}.beeple/nft/metadata` ); expect(query1.status).toBe(200); + expect(query1.body).toHaveProperty('token_uri'); expect(query1.body).toHaveProperty('name'); expect(query1.body).toHaveProperty('description'); expect(query1.body).toHaveProperty('image_uri'); @@ -179,6 +180,7 @@ describe('api tests', () => { `/extended/v1/tokens/${senderAddress}.hey-token/ft/metadata` ); + expect(query1.body).toHaveProperty('token_uri'); expect(query1.body).toHaveProperty('name'); expect(query1.body).toHaveProperty('description'); expect(query1.body).toHaveProperty('image_uri'); From 49a8b60e8b24ffea82c2e8495d3ce032e112c0fa Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Thu, 8 Jul 2021 12:48:31 +0500 Subject: [PATCH 20/44] fix: add token-uri in datastore tests --- src/tests/datastore-tests.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/tests/datastore-tests.ts b/src/tests/datastore-tests.ts index c86ff8cd00..81da212ba9 100644 --- a/src/tests/datastore-tests.ts +++ b/src/tests/datastore-tests.ts @@ -4091,6 +4091,7 @@ describe('postgres datastore', () => { test('pg token nft-metadata', async () => { const nftMetadata: DbNonFungibleTokenMetadata = { + token_uri: 'nft-tokenuri', name: 'nft-metadata', description: 'nft -metadata description', image_uri: 'nft-metadata image uri example', @@ -4108,6 +4109,7 @@ describe('postgres datastore', () => { test('pg token ft-metadata', async () => { const ftMetadata: DbFungibleTokenMetadata = { + token_uri: 'ft-token', name: 'ft-metadata', description: 'ft -metadata description', symbol: 'stx', From a94d53c0953840e5ec08d400b2c9ddeaf6487191 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Fri, 9 Jul 2021 18:18:52 -0500 Subject: [PATCH 21/44] feat: support Data URLs for json metadata and token images --- src/event-stream/tokens-contract-handler.ts | 79 ++++++++++++++---- src/helpers.ts | 42 ++++++++++ .../test-contracts/beeple-data-url-a.clar | 58 +++++++++++++ .../test-contracts/beeple-data-url-b.clar | 58 +++++++++++++ .../test-contracts/beeple-data-url-c.clar | 58 +++++++++++++ src/tests-tokens/tokens-metadata-tests.ts | 83 +++++++++++++++++++ 6 files changed, 364 insertions(+), 14 deletions(-) create mode 100644 src/tests-tokens/test-contracts/beeple-data-url-a.clar create mode 100644 src/tests-tokens/test-contracts/beeple-data-url-b.clar create mode 100644 src/tests-tokens/test-contracts/beeple-data-url-c.clar diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index edcf8d3364..b400ee918e 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -19,9 +19,10 @@ import { UIntCV, } from '@stacks/transactions'; import { GetStacksNetwork } from '../bns-helpers'; -import { logError, logger } from '../helpers'; +import { logError, logger, parseDataUrl } from '../helpers'; import { StacksNetwork } from '@stacks/network'; import PQueue from 'p-queue'; +import * as querystring from 'querystring'; const PUBLIC_IPFS = 'https://ipfs.io'; @@ -170,7 +171,7 @@ export class TokensProcessorQueue { this.queue = new PQueue({ concurrency: 1 }); } queueHandler(tokenContractHandler: TokensContractHandler) { - // TODO: This could get backed up quit a bit, for example while syncing from scratch. + // TODO: This could get backed up quite a bit, for example while syncing from scratch. // If the process is restarted, this queue is not currently persisted and all the queued // contracts will be thrown away. Eventually this should probably persist the queue in the db. @@ -249,14 +250,16 @@ export class TokensContractHandler { let metadata: FtTokenMetadata = { name: '', description: '', image: '' }; //fetch metadata from the uri if possible - if (uriCV) metadata = await this.getMetadataFromUri(uriCV.data); + if (uriCV) { + metadata = await this.getMetadataFromUri(uriCV.data); + } const { name, description, image } = metadata; const fungibleTokenMetadata: DbFungibleTokenMetadata = { token_uri: uriCV ? uriCV.data : '', - name: nameCV ? nameCV.data : name, //prefer the on-chain name + name: nameCV ? nameCV.data : name, // prefer the on-chain name description: description, - image_uri: image ? this.makeHostedUrl(image) : '', - image_canonical_uri: image, + image_uri: image ? this.getImageUrl(image) : '', + image_canonical_uri: image || '', symbol: symbolCV ? symbolCV.data : '', decimals: decimalsCV ? Number(decimalsCV.value) : 0, contract_id: `${this.contractAddress}.${this.contractName}`, @@ -291,8 +294,8 @@ export class TokensContractHandler { token_uri: uriCV ? uriCV.data : '', name: metadata.name, description: metadata.description, - image_uri: metadata.imageUrl ? this.makeHostedUrl(metadata.imageUrl) : '', - image_canonical_uri: metadata.imageUrl, + image_uri: metadata.imageUrl ? this.getImageUrl(metadata.imageUrl) : '', + image_canonical_uri: metadata.imageUrl || '', contract_id: `${this.contractAddress}.${this.contractName}`, }; await this.storeNftMetadata(nonFungibleTokenMetadata); @@ -303,19 +306,41 @@ export class TokensContractHandler { } } - /** helper method for creating http url */ - private makeHostedUrl(uri: string): string { + /** + * Helper method for creating http/s url for supported protocols. + * URLs with `http` or `https` protocols are returned as-is. + * URLs with `ipfs` or `ipns` protocols are returned with as an `https` url + * using a public IPFS gateway. + */ + private getFetchableUrl(uri: string): URL { const parsedUri = new URL(uri); - if (parsedUri.protocol === 'http:' || parsedUri.protocol === 'https:') return uri; + if (parsedUri.protocol === 'http:' || parsedUri.protocol === 'https:') return parsedUri; if (parsedUri.protocol === 'ipfs:') - return `${PUBLIC_IPFS}/${parsedUri.host}${parsedUri.pathname}`; + return new URL(`${PUBLIC_IPFS}/${parsedUri.host}${parsedUri.pathname}`); if (parsedUri.protocol === 'ipns:') - return `${PUBLIC_IPFS}/${parsedUri.host}${parsedUri.pathname}`; + return new URL(`${PUBLIC_IPFS}/${parsedUri.host}${parsedUri.pathname}`); throw new Error(`Unsupported uri protocol: ${uri}`); } + private getImageUrl(uri: string): string { + // Support images embedded in a Data URL + if (new URL(uri).protocol === 'data:') { + // const dataUrl = ParseDataUrl(uri); + const dataUrl = parseDataUrl(uri); + if (!dataUrl) { + throw new Error(`Data URL could not be parsed: ${uri}`); + } + if (!dataUrl.mediaType?.startsWith('image/')) { + throw new Error(`Token image is a Data URL with a non-image media type: ${uri}`); + } + return uri; + } + const fetchableUrl = this.getFetchableUrl(uri); + return fetchableUrl.toString(); + } + async makeApiCall(url: string): Promise { const result = await fetch(url); if (!result.ok) { @@ -339,7 +364,33 @@ export class TokensContractHandler { * fetch metadata from uri */ private async getMetadataFromUri(token_uri: string): Promise { - return await this.makeApiCall(this.makeHostedUrl(token_uri)); + // Support JSON embedded in a Data URL + if (new URL(token_uri).protocol === 'data:') { + const dataUrl = parseDataUrl(token_uri); + if (!dataUrl) { + throw new Error(`Data URL could not be parsed: ${token_uri}`); + } + let content: string; + // If media type is omitted it should default to percent-encoded `text/plain;charset=US-ASCII` + // https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/Data_URIs#syntax + // If media type is specified but without base64 then encoding is ambiguous, so check for + // percent-encoding or assume a literal string compatible with utf8. Because we're expecting + // a JSON object we can reliable check for a leading `%` char, otherwise assume unescaped JSON. + if (dataUrl.base64) { + content = Buffer.from(dataUrl.data, 'base64').toString('utf8'); + } else if (dataUrl.data.startsWith('%')) { + content = querystring.unescape(dataUrl.data); + } else { + content = dataUrl.data; + } + try { + return JSON.parse(content) as Type; + } catch (error) { + throw new Error(`Data URL could not be parsed as JSON: ${token_uri}`); + } + } + const httpUrl = this.getFetchableUrl(token_uri); + return await this.makeApiCall(httpUrl.toString()); } /** diff --git a/src/helpers.ts b/src/helpers.ts index c23018914c..1464eeeea7 100644 --- a/src/helpers.ts +++ b/src/helpers.ts @@ -829,6 +829,48 @@ export function normalizeHashString(input: string): string | false { return `0x${hashBuffer.toString('hex')}`; } +export function parseDataUrl( + s: string +): + | { mediaType?: string; contentType?: string; charset?: string; base64: boolean; data: string } + | false { + try { + const url = new URL(s); + if (url.protocol !== 'data:') { + return false; + } + const validDataUrlRegex = /^data:([a-z]+\/[a-z0-9-+.]+(;[a-z0-9-.!#$%*+.{}|~`]+=[a-z0-9-.!#$%*+.{}()|~`]+)*)?(;base64)?,(.*)$/i; + const parts = validDataUrlRegex.exec(s.trim()); + if (parts === null) { + return false; + } + const parsed: { + mediaType?: string; + contentType?: string; + charset?: string; + base64: boolean; + data: string; + } = { + base64: false, + data: '', + }; + if (parts[1]) { + parsed.mediaType = parts[1].toLowerCase(); + const mediaTypeParts = parts[1].split(';').map(x => x.toLowerCase()); + parsed.contentType = mediaTypeParts[0]; + mediaTypeParts.slice(1).forEach(attribute => { + const p = attribute.split('='); + Object.assign(parsed, { [p[0]]: p[1] }); + }); + } + parsed.base64 = !!parts[parts.length - 2]; + parsed.data = parts[parts.length - 1] || ''; + return parsed; + } catch (e) { + return false; + } +} + export function getSendManyContract(chainId: ChainID) { const contractId = chainId === ChainID.Mainnet diff --git a/src/tests-tokens/test-contracts/beeple-data-url-a.clar b/src/tests-tokens/test-contracts/beeple-data-url-a.clar new file mode 100644 index 0000000000..a773a93d5f --- /dev/null +++ b/src/tests-tokens/test-contracts/beeple-data-url-a.clar @@ -0,0 +1,58 @@ +;; (impl-trait 'STB44HYPYAT2BB2QE513NSP81HTMYWBJP02HPGK6.nft-trait.nft-trait) +(define-non-fungible-token beeple uint) + +;; Public functions +(define-constant nft-not-owned-err (err u401)) ;; unauthorized +(define-constant nft-not-found-err (err u404)) ;; not found +(define-constant sender-equals-recipient-err (err u405)) ;; method not allowed + +(define-private (nft-transfer-err (code uint)) + (if (is-eq u1 code) + nft-not-owned-err + (if (is-eq u2 code) + sender-equals-recipient-err + (if (is-eq u3 code) + nft-not-found-err + (err code))))) + +;; Transfers tokens to a specified principal. +(define-public (transfer (token-id uint) (sender principal) (recipient principal)) + (if (and + (is-eq tx-sender (unwrap! (nft-get-owner? beeple token-id) nft-not-found-err)) + (is-eq tx-sender sender) + (not (is-eq recipient sender))) + (match (nft-transfer? beeple token-id sender recipient) + success (ok success) + error (nft-transfer-err error)) + nft-not-owned-err)) + +;; Gets the owner of the specified token ID. +(define-read-only (get-owner (token-id uint)) + (ok (nft-get-owner? beeple token-id))) + +;; Gets the owner of the specified token ID. +(define-read-only (get-last-token-id) + (ok u1)) + +(define-read-only (get-token-uri (token-id uint)) + (ok (some "data:,%7B%22name%22%3A%22Heystack%22%2C%22description%22%3A%22Heystack%20is%20a%20SIP-010-compliant%20fungible%20token%22%2C%22imageUrl%22%3A%22https%3A%2F%2Fheystack.xyz%2Fassets%2FStacks128w.png%22%7D"))) + +(define-read-only (get-meta (token-id uint)) + (if (is-eq token-id u1) + (ok (some {name: "EVERYDAYS: THE FIRST 5000 DAYS", uri: "https://ipfsgateway.makersplace.com/ipfs/QmZ15eQX8FPjfrtdX3QYbrhZxJpbLpvDpsgb2p3VEH8Bqq", mime-type: "image/jpeg"})) + (ok none))) + +(define-read-only (get-nft-meta) + (ok (some {name: "beeple", uri: "https://ipfsgateway.makersplace.com/ipfs/QmZ15eQX8FPjfrtdX3QYbrhZxJpbLpvDpsgb2p3VEH8Bqq", mime-type: "image/jpeg"}))) + +(define-read-only (get-errstr (code uint)) + (ok (if (is-eq u401 code) + "nft-not-owned" + (if (is-eq u404 code) + "nft-not-found" + (if (is-eq u405 code) + "sender-equals-recipient" + "unknown-error"))))) + +;; Initialize the contract +(try! (nft-mint? beeple u1 tx-sender)) diff --git a/src/tests-tokens/test-contracts/beeple-data-url-b.clar b/src/tests-tokens/test-contracts/beeple-data-url-b.clar new file mode 100644 index 0000000000..a8dfbf21c5 --- /dev/null +++ b/src/tests-tokens/test-contracts/beeple-data-url-b.clar @@ -0,0 +1,58 @@ +;; (impl-trait 'STB44HYPYAT2BB2QE513NSP81HTMYWBJP02HPGK6.nft-trait.nft-trait) +(define-non-fungible-token beeple uint) + +;; Public functions +(define-constant nft-not-owned-err (err u401)) ;; unauthorized +(define-constant nft-not-found-err (err u404)) ;; not found +(define-constant sender-equals-recipient-err (err u405)) ;; method not allowed + +(define-private (nft-transfer-err (code uint)) + (if (is-eq u1 code) + nft-not-owned-err + (if (is-eq u2 code) + sender-equals-recipient-err + (if (is-eq u3 code) + nft-not-found-err + (err code))))) + +;; Transfers tokens to a specified principal. +(define-public (transfer (token-id uint) (sender principal) (recipient principal)) + (if (and + (is-eq tx-sender (unwrap! (nft-get-owner? beeple token-id) nft-not-found-err)) + (is-eq tx-sender sender) + (not (is-eq recipient sender))) + (match (nft-transfer? beeple token-id sender recipient) + success (ok success) + error (nft-transfer-err error)) + nft-not-owned-err)) + +;; Gets the owner of the specified token ID. +(define-read-only (get-owner (token-id uint)) + (ok (nft-get-owner? beeple token-id))) + +;; Gets the owner of the specified token ID. +(define-read-only (get-last-token-id) + (ok u1)) + +(define-read-only (get-token-uri (token-id uint)) + (ok (some "data:;base64,eyJuYW1lIjoiSGV5c3RhY2siLCJkZXNjcmlwdGlvbiI6IkhleXN0YWNrIGlzIGEgU0lQLTAxMC1jb21wbGlhbnQgZnVuZ2libGUgdG9rZW4iLCJpbWFnZVVybCI6Imh0dHBzOi8vaGV5c3RhY2sueHl6L2Fzc2V0cy9TdGFja3MxMjh3LnBuZyJ9"))) + +(define-read-only (get-meta (token-id uint)) + (if (is-eq token-id u1) + (ok (some {name: "EVERYDAYS: THE FIRST 5000 DAYS", uri: "https://ipfsgateway.makersplace.com/ipfs/QmZ15eQX8FPjfrtdX3QYbrhZxJpbLpvDpsgb2p3VEH8Bqq", mime-type: "image/jpeg"})) + (ok none))) + +(define-read-only (get-nft-meta) + (ok (some {name: "beeple", uri: "https://ipfsgateway.makersplace.com/ipfs/QmZ15eQX8FPjfrtdX3QYbrhZxJpbLpvDpsgb2p3VEH8Bqq", mime-type: "image/jpeg"}))) + +(define-read-only (get-errstr (code uint)) + (ok (if (is-eq u401 code) + "nft-not-owned" + (if (is-eq u404 code) + "nft-not-found" + (if (is-eq u405 code) + "sender-equals-recipient" + "unknown-error"))))) + +;; Initialize the contract +(try! (nft-mint? beeple u1 tx-sender)) diff --git a/src/tests-tokens/test-contracts/beeple-data-url-c.clar b/src/tests-tokens/test-contracts/beeple-data-url-c.clar new file mode 100644 index 0000000000..fa335337ac --- /dev/null +++ b/src/tests-tokens/test-contracts/beeple-data-url-c.clar @@ -0,0 +1,58 @@ +;; (impl-trait 'STB44HYPYAT2BB2QE513NSP81HTMYWBJP02HPGK6.nft-trait.nft-trait) +(define-non-fungible-token beeple uint) + +;; Public functions +(define-constant nft-not-owned-err (err u401)) ;; unauthorized +(define-constant nft-not-found-err (err u404)) ;; not found +(define-constant sender-equals-recipient-err (err u405)) ;; method not allowed + +(define-private (nft-transfer-err (code uint)) + (if (is-eq u1 code) + nft-not-owned-err + (if (is-eq u2 code) + sender-equals-recipient-err + (if (is-eq u3 code) + nft-not-found-err + (err code))))) + +;; Transfers tokens to a specified principal. +(define-public (transfer (token-id uint) (sender principal) (recipient principal)) + (if (and + (is-eq tx-sender (unwrap! (nft-get-owner? beeple token-id) nft-not-found-err)) + (is-eq tx-sender sender) + (not (is-eq recipient sender))) + (match (nft-transfer? beeple token-id sender recipient) + success (ok success) + error (nft-transfer-err error)) + nft-not-owned-err)) + +;; Gets the owner of the specified token ID. +(define-read-only (get-owner (token-id uint)) + (ok (nft-get-owner? beeple token-id))) + +;; Gets the owner of the specified token ID. +(define-read-only (get-last-token-id) + (ok u1)) + +(define-read-only (get-token-uri (token-id uint)) + (ok (some "data:application/json,{\"name\":\"Heystack\",\"description\":\"Heystack is a SIP-010-compliant fungible token\",\"imageUrl\":\"https://heystack.xyz/assets/Stacks128w.png\"}"))) + ;; (ok (some "data:text/html,"))) +(define-read-only (get-meta (token-id uint)) + (if (is-eq token-id u1) + (ok (some {name: "EVERYDAYS: THE FIRST 5000 DAYS", uri: "https://ipfsgateway.makersplace.com/ipfs/QmZ15eQX8FPjfrtdX3QYbrhZxJpbLpvDpsgb2p3VEH8Bqq", mime-type: "image/jpeg"})) + (ok none))) + +(define-read-only (get-nft-meta) + (ok (some {name: "beeple", uri: "https://ipfsgateway.makersplace.com/ipfs/QmZ15eQX8FPjfrtdX3QYbrhZxJpbLpvDpsgb2p3VEH8Bqq", mime-type: "image/jpeg"}))) + +(define-read-only (get-errstr (code uint)) + (ok (if (is-eq u401 code) + "nft-not-owned" + (if (is-eq u404 code) + "nft-not-found" + (if (is-eq u405 code) + "sender-equals-recipient" + "unknown-error"))))) + +;; Initialize the contract +(try! (nft-mint? beeple u1 tx-sender)) diff --git a/src/tests-tokens/tokens-metadata-tests.ts b/src/tests-tokens/tokens-metadata-tests.ts index 7ade211bb8..21034513e3 100644 --- a/src/tests-tokens/tokens-metadata-tests.ts +++ b/src/tests-tokens/tokens-metadata-tests.ts @@ -114,6 +114,87 @@ describe('api tests', () => { api = await startApiServer(db, ChainID.Testnet); }); + test('token nft-metadata data URL plain percent-encoded', async () => { + const contract1 = await deployContract( + 'beeple', + pKey, + 'src/tests-tokens/test-contracts/beeple-data-url-a.clar', + api + ); + const tx1 = await standByForTx(contract1.txId); + if (tx1.status != 1) logger.error('contract deploy error', tx1); + + await standByForTokens(contract1.contractId); + + const query = await db.getNftMetadata(contract1.contractId); + expect(query.found).toBe(true); + + const senderAddress = getAddressFromPrivateKey(pKey, stacksNetwork.version); + const query1 = await supertest(api.server).get( + `/extended/v1/tokens/${senderAddress}.beeple/nft/metadata` + ); + expect(query1.status).toBe(200); + expect(query1.body).toHaveProperty('token_uri'); + expect(query1.body).toHaveProperty('name'); + expect(query1.body).toHaveProperty('description'); + expect(query1.body).toHaveProperty('image_uri'); + expect(query1.body).toHaveProperty('image_canonical_uri'); + }); + + test('token nft-metadata data URL base64 w/o media type', async () => { + const contract1 = await deployContract( + 'beeple', + pKey, + 'src/tests-tokens/test-contracts/beeple-data-url-b.clar', + api + ); + const tx1 = await standByForTx(contract1.txId); + if (tx1.status != 1) logger.error('contract deploy error', tx1); + + await standByForTokens(contract1.contractId); + + const query = await db.getNftMetadata(contract1.contractId); + expect(query.found).toBe(true); + + const senderAddress = getAddressFromPrivateKey(pKey, stacksNetwork.version); + const query1 = await supertest(api.server).get( + `/extended/v1/tokens/${senderAddress}.beeple/nft/metadata` + ); + expect(query1.status).toBe(200); + expect(query1.body).toHaveProperty('token_uri'); + expect(query1.body).toHaveProperty('name'); + expect(query1.body).toHaveProperty('description'); + expect(query1.body).toHaveProperty('image_uri'); + expect(query1.body).toHaveProperty('image_canonical_uri'); + }); + + test('token nft-metadata data URL plain non-encoded', async () => { + const contract1 = await deployContract( + 'beeple', + pKey, + 'src/tests-tokens/test-contracts/beeple-data-url-c.clar', + api + ); + const tx1 = await standByForTx(contract1.txId); + if (tx1.status != 1) logger.error('contract deploy error', tx1); + + await standByForTokens(contract1.contractId); + + const query = await db.getNftMetadata(contract1.contractId); + expect(query.found).toBe(true); + + const senderAddress = getAddressFromPrivateKey(pKey, stacksNetwork.version); + const query1 = await supertest(api.server).get( + `/extended/v1/tokens/${senderAddress}.beeple/nft/metadata` + ); + expect(query1.status).toBe(200); + expect(query1.body).toHaveProperty('token_uri'); + expect(query1.body).toHaveProperty('name'); + expect(query1.body).toHaveProperty('description'); + expect(query1.body).toHaveProperty('image_uri'); + expect(query1.body).toHaveProperty('image_canonical_uri'); + }); + test('token nft-metadata', async () => { const contract = await deployContract( 'nft-trait', @@ -124,6 +205,8 @@ describe('api tests', () => { const tx = await standByForTx(contract.txId); if (tx.status != 1) logger.error('contract deploy error', tx); + // TODO: these example contracts need the 3rd party `get-token-uri` urls fetch-mocked + // so these tests pass if/when those resources become unavailable or change. const contract1 = await deployContract( 'beeple', pKey, From 1c8f75f167f6cb3063b3ac94fc9bd611cb6421a5 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Fri, 9 Jul 2021 18:24:59 -0500 Subject: [PATCH 22/44] chore: add max fetch byte size for metadata files --- src/event-stream/tokens-contract-handler.ts | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index b400ee918e..651a95bb31 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -23,6 +23,7 @@ import { logError, logger, parseDataUrl } from '../helpers'; import { StacksNetwork } from '@stacks/network'; import PQueue from 'p-queue'; import * as querystring from 'querystring'; +import fetch from 'node-fetch'; const PUBLIC_IPFS = 'https://ipfs.io'; @@ -341,8 +342,9 @@ export class TokensContractHandler { return fetchableUrl.toString(); } - async makeApiCall(url: string): Promise { - const result = await fetch(url); + async performFetch(url: string): Promise { + const MAX_PAYLOAD_SIZE = 1_000_000; // 1 megabyte + const result = await fetch(url, { size: MAX_PAYLOAD_SIZE }); if (!result.ok) { let msg = ''; try { @@ -390,7 +392,7 @@ export class TokensContractHandler { } } const httpUrl = this.getFetchableUrl(token_uri); - return await this.makeApiCall(httpUrl.toString()); + return await this.performFetch(httpUrl.toString()); } /** From a60819fb43797f362d4550e028758342120a3809 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Wed, 14 Jul 2021 19:12:09 +0500 Subject: [PATCH 23/44] feat: added a route to enumerate the list of ft and nft tokens --- src/api/routes/tokens/tokens.ts | 25 +++++++ src/datastore/common.ts | 9 +++ src/datastore/memory-store.ts | 14 ++++ src/datastore/postgres-store.ts | 76 +++++++++++++++++++++ src/event-stream/tokens-contract-handler.ts | 2 +- 5 files changed, 125 insertions(+), 1 deletion(-) diff --git a/src/api/routes/tokens/tokens.ts b/src/api/routes/tokens/tokens.ts index 780d149b80..6e934a16a7 100644 --- a/src/api/routes/tokens/tokens.ts +++ b/src/api/routes/tokens/tokens.ts @@ -5,11 +5,36 @@ import { FungibleTokenMetadataResponse, NonFungibleTokenMetadataResponse, } from '@stacks/stacks-blockchain-api-types'; +import { parseLimitQuery, parsePagingQueryInput } from './../../pagination'; + +const MAX_TOKENS_PER_REQUEST = 200; +const parseTokenQueryLimit = parseLimitQuery({ + maxItems: MAX_TOKENS_PER_REQUEST, + errorMsg: '`limit` must be equal to or less than ' + MAX_TOKENS_PER_REQUEST, +}); export function createTokenRouter(db: DataStore): RouterWithAsync { const router = addAsync(express.Router()); router.use(express.json()); + router.getAsync('/ft/metadata', async (req, res) => { + const limit = parseTokenQueryLimit(req.query.limit ?? 96); + const offset = parsePagingQueryInput(req.query.offset ?? 0); + + const { results, total } = await db.getFtMetadataList({ offset, limit }); + + res.status(200).json({ limit, offset, total, results }); + }); + + router.getAsync('/nft/metadata', async (req, res) => { + const limit = parseTokenQueryLimit(req.query.limit ?? 96); + const offset = parsePagingQueryInput(req.query.offset ?? 0); + + const { results, total } = await db.getNftMetadataList({ offset, limit }); + + res.status(200).json({ limit, offset, total, results }); + }); + //router for fungible tokens router.getAsync('/:contractId/ft/metadata', async (req, res) => { const { contractId } = req.params; diff --git a/src/datastore/common.ts b/src/datastore/common.ts index b3dfcf55b3..53480cacd3 100644 --- a/src/datastore/common.ts +++ b/src/datastore/common.ts @@ -791,6 +791,15 @@ export interface DataStore extends DataStoreEventEmitter { updateNFtMetadata(nftMetadata: DbNonFungibleTokenMetadata): Promise; updateFtMetadata(ftMetadata: DbFungibleTokenMetadata): Promise; + getFtMetadataList(args: { + limit: number; + offset: number; + }): Promise<{ results: DbFungibleTokenMetadata[]; total: number }>; + getNftMetadataList(args: { + limit: number; + offset: number; + }): Promise<{ results: DbNonFungibleTokenMetadata[]; total: number }>; + close(): Promise; } diff --git a/src/datastore/memory-store.ts b/src/datastore/memory-store.ts index c2c1bf0884..3b4a919768 100644 --- a/src/datastore/memory-store.ts +++ b/src/datastore/memory-store.ts @@ -716,4 +716,18 @@ export class MemoryDataStore updateFtMetadata(ftMetadata: DbFungibleTokenMetadata): Promise { throw new Error('Method not implemented.'); } + + getFtMetadataList(args: { + limit: number; + offset: number; + }): Promise<{ results: DbFungibleTokenMetadata[]; total: number }> { + throw new Error('Method not implemented.'); + } + + getNftMetadataList(args: { + limit: number; + offset: number; + }): Promise<{ results: DbNonFungibleTokenMetadata[]; total: number }> { + throw new Error('Method not implemented.'); + } } diff --git a/src/datastore/postgres-store.ts b/src/datastore/postgres-store.ts index 61973c33bb..33b53395ef 100644 --- a/src/datastore/postgres-store.ts +++ b/src/datastore/postgres-store.ts @@ -5802,6 +5802,82 @@ export class PgDataStore }); } + getFtMetadataList({ + limit, + offset, + }: { + limit: number; + offset: number; + }): Promise<{ results: DbFungibleTokenMetadata[]; total: number }> { + let totalQuery: QueryResult<{ count: number }>; + let resultQuery: QueryResult; + return this.queryTx(async client => { + totalQuery = await client.query<{ count: number }>( + ` + SELECT COUNT(*)::integer + FROM ft_metadata + ` + ); + resultQuery = await client.query( + ` + SELECT * + FROM ft_metadata + LIMIT $1 + OFFSET $2 + `, + [limit, offset] + ); + const parsed = resultQuery.rows.map(r => ({ + name: r.name, + description: r.description, + token_uri: r.token_uri, + image_uri: r.image_uri, + image_canonical_uri: r.image_canonical_uri, + decimals: r.decimals, + symbol: r.symbol, + contract_id: r.contract_id, + })); + return { results: parsed, total: totalQuery.rows[0].count }; + }); + } + + getNftMetadataList({ + limit, + offset, + }: { + limit: number; + offset: number; + }): Promise<{ results: DbNonFungibleTokenMetadata[]; total: number }> { + let totalQuery: QueryResult<{ count: number }>; + let resultQuery: QueryResult; + return this.queryTx(async client => { + totalQuery = await client.query<{ count: number }>( + ` + SELECT COUNT(*)::integer + FROM nft_metadata + ` + ); + resultQuery = await client.query( + ` + SELECT * + FROM nft_metadata + LIMIT $1 + OFFSET $2 + `, + [limit, offset] + ); + const parsed = resultQuery.rows.map(r => ({ + name: r.name, + description: r.description, + token_uri: r.token_uri, + image_uri: r.image_uri, + image_canonical_uri: r.image_canonical_uri, + contract_id: r.contract_id, + })); + return { results: parsed, total: totalQuery.rows[0].count }; + }); + } + async close(): Promise { await this.pool.end(); } diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 651a95bb31..58df5fa10b 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -465,7 +465,7 @@ export class TokensContractHandler { } private checkAndParseUintCV(responseCV: ClarityValue): UIntCV | undefined { - if (responseCV.type == ClarityType.ResponseOk && responseCV.value.type == ClarityType.UInt) { + if (responseCV.type === ClarityType.ResponseOk && responseCV.value.type === ClarityType.UInt) { return responseCV.value; } return; From a643cd908354a21a2086f8d47c33e3f58fd7051c Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Wed, 14 Jul 2021 19:22:35 +0500 Subject: [PATCH 24/44] test: fixed test cases with mock responses and added test cases for tokens list --- src/tests-tokens/tokens-metadata-tests.ts | 154 +++++++++++++++------- 1 file changed, 109 insertions(+), 45 deletions(-) diff --git a/src/tests-tokens/tokens-metadata-tests.ts b/src/tests-tokens/tokens-metadata-tests.ts index 21034513e3..cfe316825d 100644 --- a/src/tests-tokens/tokens-metadata-tests.ts +++ b/src/tests-tokens/tokens-metadata-tests.ts @@ -6,7 +6,13 @@ import { PostConditionMode, } from '@stacks/transactions'; import * as BN from 'bn.js'; -import { DbTx, DbMempoolTx, DbTxStatus } from '../datastore/common'; +import { + DbTx, + DbMempoolTx, + DbTxStatus, + DbFungibleTokenMetadata, + DbNonFungibleTokenMetadata, +} from '../datastore/common'; import { startApiServer, ApiServer } from '../api/init'; import { PgDataStore, cycleMigrations, runMigrations } from '../datastore/postgres-store'; import { PoolClient } from 'pg'; @@ -16,6 +22,7 @@ import { startEventServer } from '../event-stream/event-server'; import { getStacksTestnetNetwork } from '../rosetta-helpers'; import { StacksCoreRpcClient } from '../core-rpc/client'; import { logger } from '../helpers'; +import * as nock from 'nock'; const pKey = 'cb3df38053d132895220b9ce471f6b676db5b9bf0b4adefb55f2118ece2478df01'; const stacksNetwork = getStacksTestnetNetwork(); @@ -114,24 +121,21 @@ describe('api tests', () => { api = await startApiServer(db, ChainID.Testnet); }); + beforeEach(() => { + nock.cleanAll(); + }); + test('token nft-metadata data URL plain percent-encoded', async () => { const contract1 = await deployContract( - 'beeple', + 'beeple-a', pKey, 'src/tests-tokens/test-contracts/beeple-data-url-a.clar', api ); - const tx1 = await standByForTx(contract1.txId); - if (tx1.status != 1) logger.error('contract deploy error', tx1); - await standByForTokens(contract1.contractId); - const query = await db.getNftMetadata(contract1.contractId); - expect(query.found).toBe(true); - - const senderAddress = getAddressFromPrivateKey(pKey, stacksNetwork.version); const query1 = await supertest(api.server).get( - `/extended/v1/tokens/${senderAddress}.beeple/nft/metadata` + `/extended/v1/tokens/${contract1.contractId}/nft/metadata` ); expect(query1.status).toBe(200); expect(query1.body).toHaveProperty('token_uri'); @@ -143,22 +147,16 @@ describe('api tests', () => { test('token nft-metadata data URL base64 w/o media type', async () => { const contract1 = await deployContract( - 'beeple', + 'beeple-b', pKey, 'src/tests-tokens/test-contracts/beeple-data-url-b.clar', api ); - const tx1 = await standByForTx(contract1.txId); - if (tx1.status != 1) logger.error('contract deploy error', tx1); await standByForTokens(contract1.contractId); - const query = await db.getNftMetadata(contract1.contractId); - expect(query.found).toBe(true); - - const senderAddress = getAddressFromPrivateKey(pKey, stacksNetwork.version); const query1 = await supertest(api.server).get( - `/extended/v1/tokens/${senderAddress}.beeple/nft/metadata` + `/extended/v1/tokens/${contract1.contractId}/nft/metadata` ); expect(query1.status).toBe(200); expect(query1.body).toHaveProperty('token_uri'); @@ -170,22 +168,16 @@ describe('api tests', () => { test('token nft-metadata data URL plain non-encoded', async () => { const contract1 = await deployContract( - 'beeple', + 'beeple-c', pKey, 'src/tests-tokens/test-contracts/beeple-data-url-c.clar', api ); - const tx1 = await standByForTx(contract1.txId); - if (tx1.status != 1) logger.error('contract deploy error', tx1); await standByForTokens(contract1.contractId); - const query = await db.getNftMetadata(contract1.contractId); - expect(query.found).toBe(true); - - const senderAddress = getAddressFromPrivateKey(pKey, stacksNetwork.version); const query1 = await supertest(api.server).get( - `/extended/v1/tokens/${senderAddress}.beeple/nft/metadata` + `/extended/v1/tokens/${contract1.contractId}/nft/metadata` ); expect(query1.status).toBe(200); expect(query1.body).toHaveProperty('token_uri'); @@ -196,6 +188,18 @@ describe('api tests', () => { }); test('token nft-metadata', async () => { + //mock the response + const nftMetadata = { + name: 'EVERYDAYS: THE FIRST 5000 DAYS', + imageUrl: + 'https://ipfsgateway.makersplace.com/ipfs/QmZ15eQX8FPjfrtdX3QYbrhZxJpbLpvDpsgb2p3VEH8Bqq', + description: + 'I made a picture from start to finish every single day from May 1st, 2007 - January 7th, 2021. This is every motherfucking one of those pictures.', + }; + nock('https://ipfs.io') + .get('/ipfs/QmPAg1mjxcEQPPtqsLoEcauVedaeMH81WXDPvPx3VC5zUz') + .reply(200, nftMetadata); + const contract = await deployContract( 'nft-trait', pKey, @@ -205,35 +209,38 @@ describe('api tests', () => { const tx = await standByForTx(contract.txId); if (tx.status != 1) logger.error('contract deploy error', tx); - // TODO: these example contracts need the 3rd party `get-token-uri` urls fetch-mocked - // so these tests pass if/when those resources become unavailable or change. const contract1 = await deployContract( 'beeple', pKey, 'src/tests-tokens/test-contracts/beeple.clar', api ); - const tx1 = await standByForTx(contract1.txId); - if (tx1.status != 1) logger.error('contract deploy error', tx1); await standByForTokens(contract1.contractId); - const query = await db.getNftMetadata(contract1.contractId); - expect(query.found).toBe(true); - const senderAddress = getAddressFromPrivateKey(pKey, stacksNetwork.version); const query1 = await supertest(api.server).get( `/extended/v1/tokens/${senderAddress}.beeple/nft/metadata` ); expect(query1.status).toBe(200); expect(query1.body).toHaveProperty('token_uri'); - expect(query1.body).toHaveProperty('name'); - expect(query1.body).toHaveProperty('description'); - expect(query1.body).toHaveProperty('image_uri'); + expect(query1.body.name).toBe(nftMetadata.name); + expect(query1.body.description).toBe(nftMetadata.description); + expect(query1.body.image_uri).toBe(nftMetadata.imageUrl); expect(query1.body).toHaveProperty('image_canonical_uri'); }); test('token ft-metadata tests', async () => { + //mock the response + const ftMetadata = { + name: 'Heystack', + description: + 'Heystack is a SIP-010-compliant fungible token on the Stacks Blockchain, used on the Heystack app', + image: 'https://heystack.xyz/assets/Stacks128w.png', + }; + + nock('https://heystack.xyz').get('/token-metadata.json').reply(200, ftMetadata); + const contract = await deployContract( 'ft-trait', pKey, @@ -250,26 +257,83 @@ describe('api tests', () => { 'src/tests-tokens/test-contracts/hey-token.clar', api ); - const tx1 = await standByForTx(contract1.txId); - if (tx1.status != 1) logger.error('contract deploy error', tx1); await standByForTokens(contract1.contractId); - const query = await db.getFtMetadata(contract1.contractId); - expect(query.found).toBe(true); - - const senderAddress = getAddressFromPrivateKey(pKey, stacksNetwork.version); const query1 = await supertest(api.server).get( - `/extended/v1/tokens/${senderAddress}.hey-token/ft/metadata` + `/extended/v1/tokens/${contract1.contractId}/ft/metadata` ); expect(query1.body).toHaveProperty('token_uri'); expect(query1.body).toHaveProperty('name'); - expect(query1.body).toHaveProperty('description'); - expect(query1.body).toHaveProperty('image_uri'); + expect(query1.body.description).toBe(ftMetadata.description); + expect(query1.body.image_uri).toBe(ftMetadata.image); expect(query1.body).toHaveProperty('image_canonical_uri'); }); + test('token ft-metadata list', async () => { + for (let i = 0; i < 200; i++) { + const ftMetadata: DbFungibleTokenMetadata = { + token_uri: 'ft-token', + name: 'ft-metadata' + i, + description: 'ft -metadata description', + symbol: 'stx', + decimals: 5, + image_uri: 'ft-metadata image uri example', + image_canonical_uri: 'ft-metadata image canonical uri example', + contract_id: 'ABCDEFGHIJ.ft-metadata', + }; + await db.updateFtMetadata(ftMetadata); + } + + const query = await supertest(api.server).get(`/extended/v1/tokens/ft/metadata`); + expect(query.status).toBe(200); + expect(query.body.total).toBeGreaterThan(96); + expect(query.body.limit).toStrictEqual(96); + expect(query.body.offset).toStrictEqual(0); + expect(query.body.results.length).toStrictEqual(96); + + const query1 = await supertest(api.server).get( + `/extended/v1/tokens/ft/metadata?limit=20&offset=10` + ); + expect(query1.status).toBe(200); + expect(query1.body.total).toBeGreaterThanOrEqual(200); + expect(query1.body.limit).toStrictEqual(20); + expect(query1.body.offset).toStrictEqual(10); + expect(query1.body.results.length).toStrictEqual(20); + }); + + test('token nft-metadata list', async () => { + for (let i = 0; i < 200; i++) { + const nftMetadata: DbNonFungibleTokenMetadata = { + token_uri: 'nft-tokenuri', + name: 'nft-metadata' + i, + description: 'nft -metadata description' + i, + image_uri: 'nft-metadata image uri example', + image_canonical_uri: 'nft-metadata image canonical uri example', + contract_id: 'ABCDEFGHIJ.nft-metadata' + i, + }; + + await db.updateNFtMetadata(nftMetadata); + } + + const query = await supertest(api.server).get(`/extended/v1/tokens/nft/metadata`); + expect(query.status).toBe(200); + expect(query.body.total).toBeGreaterThan(96); + expect(query.body.limit).toStrictEqual(96); + expect(query.body.offset).toStrictEqual(0); + expect(query.body.results.length).toStrictEqual(96); + + const query1 = await supertest(api.server).get( + `/extended/v1/tokens/nft/metadata?limit=20&offset=10` + ); + expect(query1.status).toBe(200); + expect(query1.body.total).toBeGreaterThanOrEqual(200); + expect(query1.body.limit).toStrictEqual(20); + expect(query1.body.offset).toStrictEqual(10); + expect(query1.body.results.length).toStrictEqual(20); + }); + afterAll(async () => { await new Promise(resolve => eventServer.close(() => resolve(true))); await api.terminate(); From b7e34fde0a12f383d650b8a2ff2a95214fbcdfa2 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Thu, 15 Jul 2021 20:45:51 +0500 Subject: [PATCH 25/44] docs: update docs for ft and nft metadata endpoints --- ...e-tokens-metadata-list.example.schema.json | 16 +++ ...-fungible-tokens-metadata-list.schema.json | 33 ++++++ ...e-tokens-metadata-list.example.schema.json | 14 +++ ...-fungible-tokens-metadata-list.schema.json | 33 ++++++ .../tokens/fungible-token.schema.example.json | 7 ++ .../tokens/fungible-token.schema.json | 2 +- .../non-fungible-token.schema.example.json | 9 ++ .../tokens/non-fungible-token.schema.json | 2 +- docs/generated.d.ts | 51 ++++++++- docs/openapi.yaml | 108 ++++++++++++++++++ src/api/routes/tokens/tokens.ts | 28 ++++- 11 files changed, 291 insertions(+), 12 deletions(-) create mode 100644 docs/api/tokens/get-fungible-tokens-metadata-list.example.schema.json create mode 100644 docs/api/tokens/get-fungible-tokens-metadata-list.schema.json create mode 100644 docs/api/tokens/get-non-fungible-tokens-metadata-list.example.schema.json create mode 100644 docs/api/tokens/get-non-fungible-tokens-metadata-list.schema.json create mode 100644 docs/entities/tokens/fungible-token.schema.example.json rename docs/{api => entities}/tokens/fungible-token.schema.json (97%) create mode 100644 docs/entities/tokens/non-fungible-token.schema.example.json rename docs/{api => entities}/tokens/non-fungible-token.schema.json (96%) diff --git a/docs/api/tokens/get-fungible-tokens-metadata-list.example.schema.json b/docs/api/tokens/get-fungible-tokens-metadata-list.example.schema.json new file mode 100644 index 0000000000..3d914c70b8 --- /dev/null +++ b/docs/api/tokens/get-fungible-tokens-metadata-list.example.schema.json @@ -0,0 +1,16 @@ +{ + "limit": 1, + "offset": 0, + "total": 500, + "results": [ + { + "token_uri": "https://heystack.xyz/token-metadata.json", + "name": "Heystack", + "description": "Heystack is a SIP-010-compliant fungible token on the Stacks Blockchain, used on the Heystack app", + "image_uri": "https://heystack.xyz/assets/Stacks128w.png", + "image_canonical_uri": "https://heystack.xyz/assets/Stacks128w.png", + "symbol": "stx", + "decimals": 5 + } + ] +} diff --git a/docs/api/tokens/get-fungible-tokens-metadata-list.schema.json b/docs/api/tokens/get-fungible-tokens-metadata-list.schema.json new file mode 100644 index 0000000000..332fd19f03 --- /dev/null +++ b/docs/api/tokens/get-fungible-tokens-metadata-list.schema.json @@ -0,0 +1,33 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "description": "List of fungible tokens metadata", + "title": "FungibleTokensMetadataList", + "type": "object", + "required": [ + "results", + "limit", + "offset", + "total" + ], + "properties": { + "limit": { + "type": "integer", + "maximum": 200, + "description": "The number of tokens metadata to return" + }, + "offset": { + "type": "integer", + "description": "The number to tokens metadata to skip (starting at `0`)" + }, + "total": { + "type": "integer", + "description": "The number of tokens metadata available" + }, + "results": { + "type": "array", + "items": { + "$ref": "../../entities/tokens/fungible-token.schema.json" + } + } + } +} diff --git a/docs/api/tokens/get-non-fungible-tokens-metadata-list.example.schema.json b/docs/api/tokens/get-non-fungible-tokens-metadata-list.example.schema.json new file mode 100644 index 0000000000..d803a2a647 --- /dev/null +++ b/docs/api/tokens/get-non-fungible-tokens-metadata-list.example.schema.json @@ -0,0 +1,14 @@ +{ + "limit": 1, + "offset": 0, + "total": 500, + "results": [ + { + "token_uri": "https://pool.friedger.de/nft.json", + "name": "Friedger Pool", + "description": "Enjoying the stacking pool.", + "image_uri": "https://pool.friedger.de/nft.webp", + "image_canonical_uri": "https://pool.friedger.de/nft.webp" + } + ] +} diff --git a/docs/api/tokens/get-non-fungible-tokens-metadata-list.schema.json b/docs/api/tokens/get-non-fungible-tokens-metadata-list.schema.json new file mode 100644 index 0000000000..23fa26ffdc --- /dev/null +++ b/docs/api/tokens/get-non-fungible-tokens-metadata-list.schema.json @@ -0,0 +1,33 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "description": "List of non fungible tokens metadata", + "title": "NonFungibleTokensMetadataList", + "type": "object", + "required": [ + "results", + "limit", + "offset", + "total" + ], + "properties": { + "limit": { + "type": "integer", + "maximum": 200, + "description": "The number of tokens metadata to return" + }, + "offset": { + "type": "integer", + "description": "The number to tokens metadata to skip (starting at `0`)" + }, + "total": { + "type": "integer", + "description": "The number of tokens metadata available" + }, + "results": { + "type": "array", + "items": { + "$ref": "../../entities/tokens/non-fungible-token.schema.json" + } + } + } +} diff --git a/docs/entities/tokens/fungible-token.schema.example.json b/docs/entities/tokens/fungible-token.schema.example.json new file mode 100644 index 0000000000..c0c158f5eb --- /dev/null +++ b/docs/entities/tokens/fungible-token.schema.example.json @@ -0,0 +1,7 @@ +{ + "token_uri": "https://heystack.xyz/token-metadata.json", + "name": "Heystack", + "description": "Heystack is a SIP-010-compliant fungible token on the Stacks Blockchain, used on the Heystack app", + "image_uri": "https://heystack.xyz/assets/Stacks128w.png", + "image_canonical_uri": "https://heystack.xyz/assets/Stacks128w.png" +} diff --git a/docs/api/tokens/fungible-token.schema.json b/docs/entities/tokens/fungible-token.schema.json similarity index 97% rename from docs/api/tokens/fungible-token.schema.json rename to docs/entities/tokens/fungible-token.schema.json index c6f5f7fc42..49ebad8db1 100644 --- a/docs/api/tokens/fungible-token.schema.json +++ b/docs/entities/tokens/fungible-token.schema.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema", "$id": "fungible-token-metadata", - "title": "FungibleTokenMetadataResponse", + "title": "FungibleTokenMetadata", "type": "object", "additionalProperties": false, "required": [ diff --git a/docs/entities/tokens/non-fungible-token.schema.example.json b/docs/entities/tokens/non-fungible-token.schema.example.json new file mode 100644 index 0000000000..cc32ccb22c --- /dev/null +++ b/docs/entities/tokens/non-fungible-token.schema.example.json @@ -0,0 +1,9 @@ +{ + "token_uri": "https://pool.friedger.de/nft.json", + "name": "Friedger Pool", + "description": "Enjoying the stacking pool.", + "image_uri": "https://pool.friedger.de/nft.webp", + "image_canonical_uri": "https://pool.friedger.de/nft.webp", + "symbol": "stx", + "decimals": 5 +} diff --git a/docs/api/tokens/non-fungible-token.schema.json b/docs/entities/tokens/non-fungible-token.schema.json similarity index 96% rename from docs/api/tokens/non-fungible-token.schema.json rename to docs/entities/tokens/non-fungible-token.schema.json index 13308df740..6e612b1584 100644 --- a/docs/api/tokens/non-fungible-token.schema.json +++ b/docs/entities/tokens/non-fungible-token.schema.json @@ -1,7 +1,7 @@ { "$schema": "http://json-schema.org/draft-07/schema", "$id": "non-fungible-token-metadata", - "title": "NonFungibleTokenMetadataResponse", + "title": "NonFungibleTokenMetadata", "type": "object", "additionalProperties": false, "required": [ diff --git a/docs/generated.d.ts b/docs/generated.d.ts index ff7935ad11..62a15b9d3d 100644 --- a/docs/generated.d.ts +++ b/docs/generated.d.ts @@ -77,8 +77,11 @@ export type SchemaMergeRootStub = | RosettaNetworkOptionsResponse | RosettaStatusRequest | RosettaNetworkStatusResponse - | FungibleTokenMetadataResponse - | NonFungibleTokenMetadataResponse + | { + [k: string]: unknown | undefined; + } + | FungibleTokensMetadataList + | NonFungibleTokensMetadataList | MempoolTransactionListResponse | GetRawTransactionResult | TransactionResults @@ -185,6 +188,8 @@ export type SchemaMergeRootStub = | RosettaSyncStatus | TransactionIdentifier | RosettaTransaction + | FungibleTokenMetadata + | NonFungibleTokenMetadata | { event_index: number; [k: string]: unknown | undefined; @@ -2672,7 +2677,26 @@ export interface RosettaPeers { }; [k: string]: unknown | undefined; } -export interface FungibleTokenMetadataResponse { +/** + * List of fungible tokens metadata + */ +export interface FungibleTokensMetadataList { + /** + * The number of tokens metadata to return + */ + limit: number; + /** + * The number to tokens metadata to skip (starting at `0`) + */ + offset: number; + /** + * The number of tokens metadata available + */ + total: number; + results: FungibleTokenMetadata[]; + [k: string]: unknown | undefined; +} +export interface FungibleTokenMetadata { /** * An optional string that is a valid URI which resolves to this token's metadata. Can be empty. */ @@ -2702,7 +2726,26 @@ export interface FungibleTokenMetadataResponse { */ decimals: number; } -export interface NonFungibleTokenMetadataResponse { +/** + * List of non fungible tokens metadata + */ +export interface NonFungibleTokensMetadataList { + /** + * The number of tokens metadata to return + */ + limit: number; + /** + * The number to tokens metadata to skip (starting at `0`) + */ + offset: number; + /** + * The number of tokens metadata available + */ + total: number; + results: NonFungibleTokenMetadata[]; + [k: string]: unknown | undefined; +} +export interface NonFungibleTokenMetadata { /** * An optional string that is a valid URI which resolves to this token's metadata. Can be empty. */ diff --git a/docs/openapi.yaml b/docs/openapi.yaml index 21b040e728..c3133c0255 100644 --- a/docs/openapi.yaml +++ b/docs/openapi.yaml @@ -2539,3 +2539,111 @@ paths: $ref: ./api/transaction/get-mempool-transactions.schema.json example: $ref: ./api/transaction/get-mempool-transactions.example.json + + /extended/v1/tokens/ft/metadata: + get: + operationId: get_ft_metadata_list + summary: Fungible tokens metadata list + description: Get list of fungible tokens metadata + tags: + - tokens + parameters: + - name: limit + in: query + description: max number of tokens to fetch + required: false + schema: + type: integer + - name: offset + in: query + description: index of first tokens to fetch + required: false + schema: + type: integer + responses: + 200: + description: List of fungible tokens metadata + content: + application/json: + schema: + $ref: ./api/tokens/get-fungible-tokens-metadata-list.schema.json + example: + $ref: ./api/tokens/get-fungible-tokens-metadata-list.example.schema.json + + /extended/v1/tokens/nft/metadata: + get: + operationId: get_nft_metadata_list + summary: Non fungible tokens metadata list + description: Get list of non fungible tokens metadata + tags: + - tokens + parameters: + - name: limit + in: query + description: max number of tokens to fetch + required: false + schema: + type: integer + - name: offset + in: query + description: index of first tokens to fetch + required: false + schema: + type: integer + responses: + 200: + description: List of non fungible tokens metadata + content: + application/json: + schema: + $ref: ./api/tokens/get-non-fungible-tokens-metadata-list.schema.json + example: + $ref: ./api/tokens/get-non-fungible-tokens-metadata-list.example.schema.json + + /extended/v1/tokens/{contractId}/nft/metadata: + get: + operationId: get_contract_nft_metadata + summary: Non fungible tokens metadata for contract id + description: Get non fungible tokens metadata for given contract id + tags: + - tokens + parameters: + - name: contractId + in: path + description: token's contract id + required: true + schema: + type: string + responses: + 200: + description: Non fungible tokens metadata for contract id + content: + application/json: + schema: + $ref: ./entities/tokens/non-fungible-token.schema.json + example: + $ref: ./entities/tokens/non-fungible-token.schema.example.json + + /extended/v1/tokens/{contractId}/ft/metadata: + get: + operationId: get_contract_ft_metadata + summary: Fungible tokens metadata for contract id + description: Get fungible tokens metadata for given contract id + tags: + - tokens + parameters: + - name: contractId + in: path + description: token's contract id + required: true + schema: + type: string + responses: + 200: + description: Fungible tokens metadata for contract id + content: + application/json: + schema: + $ref: ./entities/tokens/fungible-token.schema.json + example: + $ref: ./entities/tokens/fungible-token.schema.example.json diff --git a/src/api/routes/tokens/tokens.ts b/src/api/routes/tokens/tokens.ts index 6e934a16a7..6f7f41f41c 100644 --- a/src/api/routes/tokens/tokens.ts +++ b/src/api/routes/tokens/tokens.ts @@ -2,8 +2,10 @@ import { addAsync, RouterWithAsync } from '@awaitjs/express'; import * as express from 'express'; import { DataStore } from '../../../datastore/common'; import { - FungibleTokenMetadataResponse, - NonFungibleTokenMetadataResponse, + FungibleTokenMetadata, + FungibleTokensMetadataList, + NonFungibleTokenMetadata, + NonFungibleTokensMetadataList, } from '@stacks/stacks-blockchain-api-types'; import { parseLimitQuery, parsePagingQueryInput } from './../../pagination'; @@ -23,7 +25,14 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { const { results, total } = await db.getFtMetadataList({ offset, limit }); - res.status(200).json({ limit, offset, total, results }); + const response: FungibleTokensMetadataList = { + limit: limit, + offset: offset, + total: total, + results: results, + }; + + res.status(200).json(response); }); router.getAsync('/nft/metadata', async (req, res) => { @@ -32,7 +41,14 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { const { results, total } = await db.getNftMetadataList({ offset, limit }); - res.status(200).json({ limit, offset, total, results }); + const response: NonFungibleTokensMetadataList = { + limit: limit, + offset: offset, + total: total, + results: results, + }; + + res.status(200).json(response); }); //router for fungible tokens @@ -55,7 +71,7 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { decimals, } = metadata.result; - const response: FungibleTokenMetadataResponse = { + const response: FungibleTokenMetadata = { token_uri: token_uri, name: name, description: description, @@ -78,7 +94,7 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { } const { token_uri, name, description, image_uri, image_canonical_uri } = metadata.result; - const response: NonFungibleTokenMetadataResponse = { + const response: NonFungibleTokenMetadata = { token_uri: token_uri, name: name, description: description, From dd6b449acad4d505a08e520692fbff2873f6994e Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Fri, 16 Jul 2021 23:17:27 +0500 Subject: [PATCH 26/44] test: add unit test case to mock and test large response payload --- src/event-stream/tokens-contract-handler.ts | 45 +- .../test-data/large-size-test-data.json | 65221 ++++++++++++++++ src/tests-tokens/tokens-metadata-tests.ts | 40 +- 3 files changed, 65264 insertions(+), 42 deletions(-) create mode 100644 src/tests-tokens/test-data/large-size-test-data.json diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 58df5fa10b..8dea88b456 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -341,27 +341,6 @@ export class TokensContractHandler { const fetchableUrl = this.getFetchableUrl(uri); return fetchableUrl.toString(); } - - async performFetch(url: string): Promise { - const MAX_PAYLOAD_SIZE = 1_000_000; // 1 megabyte - const result = await fetch(url, { size: MAX_PAYLOAD_SIZE }); - if (!result.ok) { - let msg = ''; - try { - msg = await result.text(); - } catch (error) { - logError(`Error getting text`, error); - } - throw new Error(`Response ${result.status}: ${result.statusText} fetching ${url} - ${msg}`); - } - try { - const resultString = await result.text(); - return JSON.parse(resultString) as Type; - } catch (error) { - logError(`Error reading response from ${url}`, error); - throw error; - } - } /** * fetch metadata from uri */ @@ -392,7 +371,7 @@ export class TokensContractHandler { } } const httpUrl = this.getFetchableUrl(token_uri); - return await this.performFetch(httpUrl.toString()); + return await performFetch(httpUrl.toString()); } /** @@ -503,3 +482,25 @@ export class TokensContractHandler { export function hasTokens(contract_abi: ClarityAbi): boolean { return contract_abi.fungible_tokens.length > 0 || contract_abi.non_fungible_tokens.length > 0; } + +export async function performFetch(url: string): Promise { + const MAX_PAYLOAD_SIZE = 1_000_000; // 1 megabyte + const result = await fetch(url, { size: MAX_PAYLOAD_SIZE }); + if (!result.ok) { + let msg = ''; + try { + msg = await result.text(); + } catch (error) { + logError(`Error getting text`, error); + } + throw new Error(`Response ${result.status}: ${result.statusText} fetching ${url} - ${msg}`); + } + + try { + const resultString = await result.text(); + return JSON.parse(resultString) as Type; + } catch (error) { + logError(`Error reading response from ${url}`, error); + throw error; + } +} diff --git a/src/tests-tokens/test-data/large-size-test-data.json b/src/tests-tokens/test-data/large-size-test-data.json new file mode 100644 index 0000000000..3b16f9a9dc --- /dev/null +++ b/src/tests-tokens/test-data/large-size-test-data.json @@ -0,0 +1,65221 @@ +{ + "result": [ + { + "emuIRN": "406752", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406752", + "curatorial_section": "Historic", + "object_number": "19124.14" + }, + { + "emuIRN": "406753", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406753", + "curatorial_section": "Historic", + "object_number": "19124.15" + }, + { + "emuIRN": "406754", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406754", + "curatorial_section": "Historic", + "object_number": "19124.16" + }, + { + "emuIRN": "406755", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406755", + "curatorial_section": "Historic", + "object_number": "19124.17" + }, + { + "emuIRN": "406756", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406756", + "curatorial_section": "Historic", + "object_number": "19124.18" + }, + { + "emuIRN": "406757", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406757", + "curatorial_section": "Historic", + "object_number": "19124.19" + }, + { + "emuIRN": "406758", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406758", + "curatorial_section": "Historic", + "object_number": "19124.20" + }, + { + "emuIRN": "406759", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406759", + "curatorial_section": "Historic", + "object_number": "19124.21" + }, + { + "emuIRN": "406760", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406760", + "curatorial_section": "Historic", + "object_number": "19124.22" + }, + { + "emuIRN": "406761", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406761", + "curatorial_section": "Historic", + "object_number": "19124.23" + }, + { + "emuIRN": "406762", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406762", + "curatorial_section": "Historic", + "object_number": "19124.24" + }, + { + "emuIRN": "406763", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406763", + "curatorial_section": "Historic", + "object_number": "19124.25" + }, + { + "emuIRN": "406764", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406764", + "curatorial_section": "Historic", + "object_number": "19124.26" + }, + { + "emuIRN": "330556", + "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", + "provenience": [ + "Europe (uncertain)" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/330556", + "curatorial_section": "Historic", + "object_number": "29-191-128" + }, + { + "emuIRN": "321909", + "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/321909", + "curatorial_section": "Historic", + "object_number": "29-191-129" + }, + { + "emuIRN": "127367", + "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/127367", + "curatorial_section": "Historic", + "object_number": "29-191-227" + }, + { + "emuIRN": "203363", + "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", + "technique": [ + "Painted" + ], + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Paint", + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/203363", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15792" + }, + { + "emuIRN": "185526", + "description": "Red and gold sphere with small metall loop on 1 end", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of H. C. Thomson, 1894" + ], + "object_name": [ + "Whistling Top" + ], + "url": "http://www.penn.museum/collections/object/185526", + "curatorial_section": "Historic", + "object_number": "17817" + }, + { + "emuIRN": "59206", + "description": "Wood ball with metal spike. Cord for spinning", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top", + "Cord" + ], + "url": "http://www.penn.museum/collections/object/59206", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19214" + }, + { + "emuIRN": "186142", + "description": "Turned wood, bell-shaped with metal spike.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/186142", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19216" + }, + { + "emuIRN": "234646", + "description": "Toy rolling disc - wooden.", + "provenience": [ + "Italy" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Henry H. Giglioli, 1896" + ], + "object_name": [ + "Spinning Toy (uncertain)", + "Rolling Disc" + ], + "url": "http://www.penn.museum/collections/object/234646", + "curatorial_section": "Historic", + "object_number": "19217" + }, + { + "emuIRN": "134935", + "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal", + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1897" + ], + "object_name": [ + "Pinwheel" + ], + "url": "http://www.penn.museum/collections/object/134935", + "curatorial_section": "Historic", + "object_number": "20037" + }, + { + "emuIRN": "340545", + "description": "Turned wood ball with metal peg. Smaller version of 19214.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/340545", + "curatorial_section": "Historic", + "object_number": "19215A" + }, + { + "emuIRN": "273066", + "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Top Die", + "Teetotum" + ], + "url": "http://www.penn.museum/collections/object/273066", + "curatorial_section": "Historic", + "object_number": "71-18-6" + }, + { + "emuIRN": "146612", + "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", + "provenience": [ + "Japan" + ], + "material": [ + "Brass", + "Tin" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/146612", + "curatorial_section": "Historic", + "object_number": "71-18-11" + }, + { + "emuIRN": "264736", + "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top" + ], + "url": "http://www.penn.museum/collections/object/264736", + "curatorial_section": "Historic", + "object_number": "71-18-41" + }, + { + "emuIRN": "128464", + "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", + "provenience": [ + "West Germany" + ], + "culture": [ + "German" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/128464", + "curatorial_section": "Historic", + "object_number": "71-18-45" + }, + { + "emuIRN": "102950", + "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top", + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/102950", + "curatorial_section": "Historic", + "object_number": "71-18-50" + }, + { + "emuIRN": "215073", + "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Gyroscope" + ], + "url": "http://www.penn.museum/collections/object/215073", + "curatorial_section": "Historic", + "object_number": "71-18-53" + }, + { + "emuIRN": "281519", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/281519", + "curatorial_section": "Historic", + "object_number": "71-18-10A" + }, + { + "emuIRN": "132216", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/132216", + "curatorial_section": "Historic", + "object_number": "71-18-10B" + }, + { + "emuIRN": "222994", + "description": "Turned wooden spinnters. A-D have stems.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/222994", + "curatorial_section": "Historic", + "object_number": "71-18-17A" + }, + { + "emuIRN": "293378", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/293378", + "curatorial_section": "Historic", + "object_number": "71-18-17B" + }, + { + "emuIRN": "244262", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/244262", + "curatorial_section": "Historic", + "object_number": "71-18-17C" + }, + { + "emuIRN": "97422", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/97422", + "curatorial_section": "Historic", + "object_number": "71-18-17D" + }, + { + "emuIRN": "283240", + "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/283240", + "curatorial_section": "Historic", + "object_number": "71-18-17E" + }, + { + "emuIRN": "199531", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/199531", + "curatorial_section": "Historic", + "object_number": "71-18-20A" + }, + { + "emuIRN": "315942", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/315942", + "curatorial_section": "Historic", + "object_number": "71-18-20B" + }, + { + "emuIRN": "154811", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/154811", + "curatorial_section": "Historic", + "object_number": "71-18-20C" + }, + { + "emuIRN": "119329", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/119329", + "curatorial_section": "Historic", + "object_number": "71-18-20D" + }, + { + "emuIRN": "138169", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/138169", + "curatorial_section": "Historic", + "object_number": "71-18-20E" + }, + { + "emuIRN": "168699", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/168699", + "curatorial_section": "Historic", + "object_number": "71-18-20F" + }, + { + "emuIRN": "165852", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/165852", + "curatorial_section": "Historic", + "object_number": "71-18-20G" + }, + { + "emuIRN": "307682", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/307682", + "curatorial_section": "Historic", + "object_number": "71-18-20H" + }, + { + "emuIRN": "336448", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336448", + "curatorial_section": "Historic", + "object_number": "71-18-32A" + }, + { + "emuIRN": "181753", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/181753", + "curatorial_section": "Historic", + "object_number": "71-18-32B" + }, + { + "emuIRN": "277851", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/277851", + "curatorial_section": "Historic", + "object_number": "71-18-32C" + }, + { + "emuIRN": "44213", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/44213", + "curatorial_section": "Historic", + "object_number": "71-18-32D" + }, + { + "emuIRN": "343371", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/343371", + "curatorial_section": "Historic", + "object_number": "71-18-32E" + }, + { + "emuIRN": "405192", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "period": [ + "Modern" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/405192", + "curatorial_section": "Historic", + "object_number": "71-18-32F" + }, + { + "emuIRN": "174014", + "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinning Toy", + "Supported Top", + "Whistle" + ], + "url": "http://www.penn.museum/collections/object/174014", + "curatorial_section": "Historic", + "object_number": "71-18-72" + }, + { + "emuIRN": "54377", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/54377", + "curatorial_section": "Historic", + "object_number": "71-18-71A" + }, + { + "emuIRN": "336914", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336914", + "curatorial_section": "Historic", + "object_number": "71-18-71B" + }, + { + "emuIRN": "40527", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel", + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/40527", + "curatorial_section": "Historic", + "object_number": "71-18-71C" + }, + { + "emuIRN": "81633", + "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "iconography": [ + "Dog", + "Flag" + ], + "material": [ + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81633", + "other_numbers": [ + "533107" + ], + "curatorial_section": "Historic", + "object_number": "73-1-9" + }, + { + "emuIRN": "315995", + "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/315995", + "curatorial_section": "Historic", + "object_number": "73-1-11" + }, + { + "emuIRN": "81890", + "description": "Bi-colored light plastic top / yo-yo", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81890", + "curatorial_section": "Historic", + "object_number": "73-1-12" + }, + { + "emuIRN": "158974", + "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/158974", + "curatorial_section": "Historic", + "object_number": "73-1-21" + }, + { + "emuIRN": "270492", + "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/270492", + "curatorial_section": "Historic", + "object_number": "73-1-15B" + }, + { + "emuIRN": "122561", + "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "material": [ + "Plastic", + "Nylon" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/122561", + "curatorial_section": "Historic", + "object_number": "75-13-1" + }, + { + "emuIRN": "169135", + "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", + "provenience": [ + "Wisconsin", + "Milwaukee" + ], + "culture": [ + "American" + ], + "creator": [ + "Jak Pak Inc." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/169135", + "curatorial_section": "Historic", + "object_number": "75-13-18" + }, + { + "emuIRN": "265153", + "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", + "provenience": [ + "New York", + "Brooklyn" + ], + "culture": [ + "American" + ], + "creator": [ + "American Magnetop Corp." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/265153", + "curatorial_section": "Historic", + "object_number": "75-13-19" + }, + { + "emuIRN": "258185", + "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Giant Plastics Corp." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/258185", + "curatorial_section": "Historic", + "object_number": "75-13-21" + }, + { + "emuIRN": "112910", + "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", + "provenience": [ + "England" + ], + "culture": [ + "English" + ], + "creator": [ + "Christie & Jay, Ltd" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/112910", + "curatorial_section": "Historic", + "object_number": "75-13-30" + }, + { + "emuIRN": "206818", + "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", + "provenience": [ + "Tennessee", + "Nashville" + ], + "culture": [ + "American" + ], + "creator": [ + "Kusan, Inc" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Yo-Yo", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/206818", + "curatorial_section": "Historic", + "object_number": "75-13-32" + }, + { + "emuIRN": "320134", + "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", + "provenience": [ + "New York", + "Brooklyn" + ], + "creator": [ + "Shimmel" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/320134", + "curatorial_section": "Historic", + "object_number": "75-13-33" + }, + { + "emuIRN": "13411", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/13411", + "curatorial_section": "Historic", + "object_number": "75-13-10A" + }, + { + "emuIRN": "2151", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/2151", + "curatorial_section": "Historic", + "object_number": "75-13-10B" + }, + { + "emuIRN": "227620", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/227620", + "curatorial_section": "Historic", + "object_number": "75-13-10C" + }, + { + "emuIRN": "205966", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/205966", + "curatorial_section": "Historic", + "object_number": "75-13-29A" + }, + { + "emuIRN": "281691", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/281691", + "curatorial_section": "Historic", + "object_number": "75-13-29B" + }, + { + "emuIRN": "99171", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/99171", + "curatorial_section": "Historic", + "object_number": "75-13-29C" + }, + { + "emuIRN": "101034", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/101034", + "curatorial_section": "Historic", + "object_number": "75-13-29D" + }, + { + "emuIRN": "308170", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/308170", + "curatorial_section": "Historic", + "object_number": "75-13-29E" + }, + { + "emuIRN": "212263", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/212263", + "curatorial_section": "Historic", + "object_number": "75-13-29F" + }, + { + "emuIRN": "171295", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/171295", + "curatorial_section": "Historic", + "object_number": "75-13-29G" + }, + { + "emuIRN": "252428", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/252428", + "curatorial_section": "Historic", + "object_number": "75-13-29H" + }, + { + "emuIRN": "33474", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/33474", + "curatorial_section": "Historic", + "object_number": "75-13-29I" + }, + { + "emuIRN": "64988", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/64988", + "curatorial_section": "Historic", + "object_number": "75-13-29J" + }, + { + "emuIRN": "149403", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/149403", + "curatorial_section": "Historic", + "object_number": "75-13-29K" + }, + { + "emuIRN": "192238", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/192238", + "curatorial_section": "Historic", + "object_number": "75-13-29L" + }, + { + "emuIRN": "87050", + "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/87050", + "curatorial_section": "Historic", + "object_number": "75-13-5A" + }, + { + "emuIRN": "241334", + "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", + "provenience": [ + "Hawthorne" + ], + "culture": [ + "American" + ], + "creator": [ + "Mattel, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/241334", + "curatorial_section": "Historic", + "object_number": "75-13-9D" + }, + { + "emuIRN": "77859", + "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/77859", + "curatorial_section": "Historic", + "object_number": "71-18-24" + }, + { + "emuIRN": "285019", + "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top", + "Musical Top" + ], + "url": "http://www.penn.museum/collections/object/285019", + "curatorial_section": "Historic", + "object_number": "71-18-27" + }, + { + "emuIRN": "37984", + "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/37984", + "curatorial_section": "Historic", + "object_number": "71-18-38" + }, + { + "emuIRN": "239276", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/239276", + "curatorial_section": "Historic", + "object_number": "71-18-28A" + }, + { + "emuIRN": "32312", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/32312", + "curatorial_section": "Historic", + "object_number": "71-18-28B" + }, + { + "emuIRN": "65727", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/65727", + "curatorial_section": "Historic", + "object_number": "71-18-28C" + }, + { + "emuIRN": "274339", + "description": "Wire puzzle with boot and cap.", + "provenience": [ + "Europe", + "France (uncertain)" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Wire Puzzle" + ], + "url": "http://www.penn.museum/collections/object/274339", + "curatorial_section": "Historic", + "object_number": "8812" + }, + { + "emuIRN": "159716", + "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Selchow & Richter" + ], + "material": [ + "Cardboard" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/159716", + "date_made_early": "1880", + "date_made": "9/7/1880", + "date_made_late": "1880", + "curatorial_section": "Historic", + "object_number": "15496" + }, + { + "emuIRN": "18643", + "description": "12 lithographed cards with pictures of children's games. Fused to 16555", + "technique": [ + "Lithograph" + ], + "provenience": [ + "France", + "Paris (France)" + ], + "iconography": [ + "Games" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Cards" + ], + "url": "http://www.penn.museum/collections/object/18643", + "curatorial_section": "Historic", + "object_number": "16231" + }, + { + "emuIRN": "34693", + "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Metal", + "Glass", + "Wood" + ], + "accession_credit_line": [ + "Gift of Mrs. John Harrison, 1894" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/34693", + "date_made_early": "1869", + "date_made": "c. 1894", + "date_made_late": "1894", + "curatorial_section": "Historic", + "object_number": "16401" + }, + { + "emuIRN": "93791", + "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", + "provenience": [ + "England", + "London" + ], + "culture": [ + "British" + ], + "accession_credit_line": [ + "Gift of Henry Jones, 1893" + ], + "object_name": [ + "Card Game", + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93791", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "16555" + }, + { + "emuIRN": "117728", + "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "creator": [ + "Donaldson Brothers" + ], + "material": [ + "Paper" + ], + "object_name": [ + "Puzzle", + "Advertisement" + ], + "url": "http://www.penn.museum/collections/object/117728", + "curatorial_section": "Historic", + "object_number": "18578" + }, + { + "emuIRN": "303943", + "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", + "provenience": [ + "Pennsylvania", + "Bucks County" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Glass", + "Metal", + "String", + "Cork" + ], + "accession_credit_line": [ + "Gift of Col. Henry D. Paxson, 1897" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/303943", + "curatorial_section": "Historic", + "object_number": "20067" + }, + { + "emuIRN": "287388", + "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Dr. Max Uhle, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/287388", + "curatorial_section": "Historic", + "object_number": "21082" + }, + { + "emuIRN": "140578", + "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/140578", + "curatorial_section": "Historic", + "object_number": "21458" + }, + { + "emuIRN": "120293", + "description": "Wood Board with instructions. Metal Arm.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120293", + "curatorial_section": "Historic", + "object_number": "21460" + }, + { + "emuIRN": "25280", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/25280", + "curatorial_section": "Historic", + "object_number": "21594A" + }, + { + "emuIRN": "406863", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/406863", + "curatorial_section": "Historic", + "object_number": "21594B" + }, + { + "emuIRN": "93703", + "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "The American Game and Puzzle Company" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93703", + "curatorial_section": "Historic", + "object_number": "29-191-146" + }, + { + "emuIRN": "64758", + "description": "Yamato Block Puzzle - 6 pieces of wood", + "provenience": [ + "Japan" + ], + "culture": [ + "Japanese" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64758", + "curatorial_section": "Historic", + "object_number": "29-191-159" + }, + { + "emuIRN": "64759", + "description": "See Dar Wonderful - 9 pieces of wood", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64759", + "curatorial_section": "Historic", + "object_number": "29-191-160" + }, + { + "emuIRN": "30391", + "description": "12 pieces", + "provenience": [ + "New York", + "New York City" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle", + "Reproduction (uncertain)" + ], + "url": "http://www.penn.museum/collections/object/30391", + "curatorial_section": "Historic", + "object_number": "29-191-161" + }, + { + "emuIRN": "22499", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/22499", + "other_numbers": [ + "4001" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157B" + }, + { + "emuIRN": "120252", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120252", + "other_numbers": [ + "4001?" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157C" + }, + { + "emuIRN": "156290", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/156290", + "other_numbers": [ + "4002" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157D" + }, + { + "emuIRN": "99398", + "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", + "provenience": [ + "Pennsylvania", + "Pittsburgh" + ], + "culture": [ + "American" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Charles Este, Jr., 1899" + ], + "object_name": [ + "Puzzle", + "Trick" + ], + "url": "http://www.penn.museum/collections/object/99398", + "curatorial_section": "Historic", + "object_number": "19783" + }, + { + "emuIRN": "130464", + "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/130464", + "native_name": [ + "Cartes a Jouer" + ], + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "7594" + }, + { + "emuIRN": "160242", + "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/160242", + "date_made_early": "1800", + "date_made": "1800-1899", + "date_made_late": "1899", + "curatorial_section": "Historic", + "object_number": "7595" + }, + { + "emuIRN": "157104", + "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1890" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "url": "http://www.penn.museum/collections/object/157104", + "date_made_early": "1800", + "date_made": "19th century", + "date_made_late": "1890", + "curatorial_section": "Historic", + "object_number": "7629" + }, + { + "emuIRN": "157105", + "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "C. L. Wust" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of J. D. Sergeant, 1890" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/157105", + "curatorial_section": "Historic", + "object_number": "7630" + }, + { + "emuIRN": "98559", + "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "B. Dondorf" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of W. Yorke Stevenson, 1891" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/98559", + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "other_numbers": [ + "27" + ], + "curatorial_section": "Historic", + "object_number": "7712" + }, + { + "emuIRN": "248509", + "description": "Card dominoes in box.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Card Game", + "Dominoe" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/248509", + "curatorial_section": "Historic", + "object_number": "8813" + }, + { + "emuIRN": "137944", + "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/137944", + "date_made_early": "1866", + "date_made": "c. 1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "9011" + }, + { + "emuIRN": "194220", + "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "creator": [ + "Watilliaux" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/194220", + "date_made_early": "1878", + "date_made": "1878", + "date_made_late": "1878", + "curatorial_section": "Historic", + "object_number": "9018" + }, + { + "emuIRN": "205296", + "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", + "technique": [ + "Printed" + ], + "provenience": [ + "Mexico (Central America)", + "Puebla (Mexican State)" + ], + "culture": [ + "Spanish" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of the US National Museum, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/205296", + "date_made_early": "1873", + "date_made": "1873-1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15360" + }, + { + "emuIRN": "21030", + "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Fortune Telling Cards" + ], + "url": "http://www.penn.museum/collections/object/21030", + "date_made_early": "1865", + "date_made": "pre 1890", + "date_made_late": "1890", + "other_numbers": [ + "43" + ], + "curatorial_section": "Historic", + "object_number": "15513" + }, + { + "emuIRN": "46932", + "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", + "provenience": [ + "Italy", + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/46932", + "date_made_early": "1880", + "date_made": "1880-1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15528" + }, + { + "emuIRN": "220035", + "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/220035", + "date_made_early": "29 Nov 1890", + "date_made": "11/29/1890", + "date_made_late": "29 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15529" + }, + { + "emuIRN": "220036", + "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/220036", + "date_made_early": "27 Oct 1890", + "date_made": "10/27/1890", + "date_made_late": "27 Oct 1890", + "other_numbers": [ + "42" + ], + "curatorial_section": "Historic", + "object_number": "15530" + }, + { + "emuIRN": "289473", + "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/289473", + "date_made_early": "17 Jan 1887", + "date_made": "1/17/1887", + "date_made_late": "17 Jan 1887", + "curatorial_section": "Historic", + "object_number": "15532" + }, + { + "emuIRN": "114394", + "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/114394", + "date_made_early": "1867", + "date_made": " pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15533" + }, + { + "emuIRN": "82994", + "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/82994", + "date_made_early": "17 Jun 1890", + "date_made": "6/17/1890", + "date_made_late": "17 Jun 1890", + "other_numbers": [ + "13" + ], + "curatorial_section": "Historic", + "object_number": "15534" + }, + { + "emuIRN": "233242", + "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/233242", + "date_made_early": "13 Mar 1891", + "date_made": "3/13/1891", + "date_made_late": "13 Mar 1891", + "other_numbers": [ + "5" + ], + "curatorial_section": "Historic", + "object_number": "15536" + }, + { + "emuIRN": "237987", + "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/237987", + "date_made_early": "13 Mar 1891", + "date_made": "pre 1892", + "date_made_late": "13 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15537" + }, + { + "emuIRN": "264110", + "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/264110", + "date_made_early": "1867", + "date_made": "pre 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15538" + }, + { + "emuIRN": "36188", + "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/36188", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15540" + }, + { + "emuIRN": "154504", + "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/154504", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15541" + }, + { + "emuIRN": "203963", + "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/203963", + "date_made_early": "27 Aug 1891", + "date_made": "8/27/1891", + "date_made_late": "27 Aug 1891", + "curatorial_section": "Historic", + "object_number": "15543" + }, + { + "emuIRN": "241994", + "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/241994", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15544" + }, + { + "emuIRN": "243680", + "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/243680", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15545" + }, + { + "emuIRN": "87145", + "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/87145", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15546" + }, + { + "emuIRN": "59271", + "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/59271", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15547" + }, + { + "emuIRN": "336096", + "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/336096", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15548" + }, + { + "emuIRN": "203973", + "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/203973", + "date_made_early": "09 Apr 1888", + "date_made": "4/9/1888", + "date_made_late": "09 Apr 1888", + "curatorial_section": "Historic", + "object_number": "15550" + }, + { + "emuIRN": "238541", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/238541", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15552" + }, + { + "emuIRN": "131933", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/131933", + "date_made_early": "16 Jun 1891", + "date_made": "6/16/1891", + "date_made_late": "16 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15553" + }, + { + "emuIRN": "158923", + "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/158923", + "date_made_early": "01 Jun 1891", + "date_made": "6/1/1891", + "date_made_late": "01 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15554" + }, + { + "emuIRN": "103187", + "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/103187", + "native_name": [ + "Tarocchino" + ], + "date_made_early": "03 Feb 1891", + "date_made": "2/3/1891", + "date_made_late": "03 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15555" + }, + { + "emuIRN": "178709", + "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", + "provenience": [ + "Italy", + "Povoletto-Udine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "F. L. Muccioli" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/178709", + "date_made_early": "09 May 1890", + "date_made": "5/9/1890", + "date_made_late": "09 May 1890", + "curatorial_section": "Historic", + "object_number": "15556" + }, + { + "emuIRN": "277112", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/277112", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15557" + }, + { + "emuIRN": "25552", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/25552", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15558" + }, + { + "emuIRN": "325482", + "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/325482", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1895", + "curatorial_section": "Historic", + "object_number": "15559" + }, + { + "emuIRN": "325483", + "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/325483", + "date_made_early": "12 Mar 2091", + "date_made": "3/12/91", + "date_made_late": "12 Mar 2091", + "curatorial_section": "Historic", + "object_number": "15560" + }, + { + "emuIRN": "48114", + "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/48114", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "22 Jun 1891", + "date_made": "6/22/1891", + "date_made_late": "22 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15561" + }, + { + "emuIRN": "167380", + "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/167380", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15562" + }, + { + "emuIRN": "321272", + "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Vincenzo Russo" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack", + "Neopolitan Pack" + ], + "url": "http://www.penn.museum/collections/object/321272", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "11 Feb 1891", + "date_made": "2/11/1891", + "date_made_late": "11 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15563" + }, + { + "emuIRN": "279915", + "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Luigi Pignalosa" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/279915", + "date_made_early": "14 Feb 1891", + "date_made": "2/14/1891", + "date_made_late": "14 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15564" + }, + { + "emuIRN": "157272", + "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/157272", + "date_made_early": "04 Oct 1888", + "date_made": "10/4/1888", + "date_made_late": "04 Oct 1888", + "curatorial_section": "Historic", + "object_number": "15566" + }, + { + "emuIRN": "88522", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/88522", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15567" + }, + { + "emuIRN": "177453", + "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/177453", + "date_made_early": "24 Mar 1891", + "date_made": "3/24/1891", + "date_made_late": "24 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15568" + }, + { + "emuIRN": "322855", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322855", + "date_made_early": "25 Nov 1890", + "date_made": "11/25/1890", + "date_made_late": "25 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15569" + }, + { + "emuIRN": "322856", + "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322856", + "date_made_early": "27 Jul 2091", + "date_made": "7/27/91", + "date_made_late": "27 Jul 2091", + "curatorial_section": "Historic", + "object_number": "15570" + }, + { + "emuIRN": "289232", + "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/289232", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15571" + }, + { + "emuIRN": "71704", + "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "L. Bartolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/71704", + "date_made_early": "02 Jul 1892", + "date_made": "7/2/1892", + "date_made_late": "02 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15572" + }, + { + "emuIRN": "341571", + "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Silvertrini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/341571", + "date_made_early": "01 Jul 1892", + "date_made": "7/1/1892", + "date_made_late": "01 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15573" + }, + { + "emuIRN": "231215", + "description": "Playing card deck - 44 cards", + "provenience": [ + "Italy", + "Bergamo" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Masenghini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Milanese Deck" + ], + "url": "http://www.penn.museum/collections/object/231215", + "curatorial_section": "Historic", + "object_number": "15575" + }, + { + "emuIRN": "290651", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", + "provenience": [ + "Italy", + "Trento" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giac. Bertoldi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/290651", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15577" + }, + { + "emuIRN": "116249", + "description": "Playing card deck - 40 cards, printed back with pink abstract designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/116249", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15578" + }, + { + "emuIRN": "76331", + "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/76331", + "date_made_early": "1867", + "date_made": "c.1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15579" + }, + { + "emuIRN": "76332", + "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/76332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15580" + }, + { + "emuIRN": "189908", + "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/189908", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15583" + }, + { + "emuIRN": "275719", + "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/275719", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15584" + }, + { + "emuIRN": "51584", + "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/51584", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15585" + }, + { + "emuIRN": "56004", + "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Crispolani" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/56004", + "date_made_early": "1850", + "date_made": "circa 1860", + "date_made_late": "1870", + "curatorial_section": "Historic", + "object_number": "15586" + }, + { + "emuIRN": "124979", + "description": "Playing card deck - Tarocchi/Tarot - 78 cards", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/124979", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15587" + }, + { + "emuIRN": "212458", + "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "url": "http://www.penn.museum/collections/object/212458", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15588" + }, + { + "emuIRN": "309331", + "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "G. C. Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309331", + "date_made_early": "30 Mar 1891", + "date_made": "3/30/1891", + "date_made_late": "30 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15589" + }, + { + "emuIRN": "309332", + "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15590" + }, + { + "emuIRN": "86979", + "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/86979", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15592" + }, + { + "emuIRN": "5817", + "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5817", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15594" + }, + { + "emuIRN": "170983", + "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Baby", + "Angel" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/170983", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15595" + }, + { + "emuIRN": "300071", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Tambourine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/300071", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15596" + }, + { + "emuIRN": "236603", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236603", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15597" + }, + { + "emuIRN": "141064", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141064", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15598" + }, + { + "emuIRN": "126294", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", + "provenience": [ + "Italy", + "Treviso" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Francesca Rino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/126294", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15599" + }, + { + "emuIRN": "309333", + "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", + "provenience": [ + "Italy", + "Parma (Italy)" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Faelli Carlo" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309333", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15600" + }, + { + "emuIRN": "261187", + "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Cassini Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Cucu" + ], + "url": "http://www.penn.museum/collections/object/261187", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15601" + }, + { + "emuIRN": "5818", + "description": "40 cards with wrapper. Printed back: green and blue plaid", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5818", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15604" + }, + { + "emuIRN": "236604", + "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236604", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15607" + }, + { + "emuIRN": "141065", + "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141065", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15608" + }, + { + "emuIRN": "319728", + "description": "Playing card deck - 40 cards", + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/319728", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15621" + }, + { + "emuIRN": "119150", + "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Florentine Pack" + ], + "url": "http://www.penn.museum/collections/object/119150", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15622" + }, + { + "emuIRN": "92457", + "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/92457", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15623" + }, + { + "emuIRN": "406753", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406753", + "curatorial_section": "Historic", + "object_number": "19124.15" + }, + { + "emuIRN": "406754", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406754", + "curatorial_section": "Historic", + "object_number": "19124.16" + }, + { + "emuIRN": "406755", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406755", + "curatorial_section": "Historic", + "object_number": "19124.17" + }, + { + "emuIRN": "406756", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406756", + "curatorial_section": "Historic", + "object_number": "19124.18" + }, + { + "emuIRN": "406757", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406757", + "curatorial_section": "Historic", + "object_number": "19124.19" + }, + { + "emuIRN": "406758", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406758", + "curatorial_section": "Historic", + "object_number": "19124.20" + }, + { + "emuIRN": "406759", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406759", + "curatorial_section": "Historic", + "object_number": "19124.21" + }, + { + "emuIRN": "406760", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406760", + "curatorial_section": "Historic", + "object_number": "19124.22" + }, + { + "emuIRN": "406761", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406761", + "curatorial_section": "Historic", + "object_number": "19124.23" + }, + { + "emuIRN": "406762", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406762", + "curatorial_section": "Historic", + "object_number": "19124.24" + }, + { + "emuIRN": "406763", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406763", + "curatorial_section": "Historic", + "object_number": "19124.25" + }, + { + "emuIRN": "406764", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406764", + "curatorial_section": "Historic", + "object_number": "19124.26" + }, + { + "emuIRN": "330556", + "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", + "provenience": [ + "Europe (uncertain)" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/330556", + "curatorial_section": "Historic", + "object_number": "29-191-128" + }, + { + "emuIRN": "321909", + "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/321909", + "curatorial_section": "Historic", + "object_number": "29-191-129" + }, + { + "emuIRN": "127367", + "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/127367", + "curatorial_section": "Historic", + "object_number": "29-191-227" + }, + { + "emuIRN": "203363", + "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", + "technique": [ + "Painted" + ], + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Paint", + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/203363", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15792" + }, + { + "emuIRN": "185526", + "description": "Red and gold sphere with small metall loop on 1 end", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of H. C. Thomson, 1894" + ], + "object_name": [ + "Whistling Top" + ], + "url": "http://www.penn.museum/collections/object/185526", + "curatorial_section": "Historic", + "object_number": "17817" + }, + { + "emuIRN": "59206", + "description": "Wood ball with metal spike. Cord for spinning", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top", + "Cord" + ], + "url": "http://www.penn.museum/collections/object/59206", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19214" + }, + { + "emuIRN": "186142", + "description": "Turned wood, bell-shaped with metal spike.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/186142", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19216" + }, + { + "emuIRN": "234646", + "description": "Toy rolling disc - wooden.", + "provenience": [ + "Italy" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Henry H. Giglioli, 1896" + ], + "object_name": [ + "Spinning Toy (uncertain)", + "Rolling Disc" + ], + "url": "http://www.penn.museum/collections/object/234646", + "curatorial_section": "Historic", + "object_number": "19217" + }, + { + "emuIRN": "134935", + "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal", + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1897" + ], + "object_name": [ + "Pinwheel" + ], + "url": "http://www.penn.museum/collections/object/134935", + "curatorial_section": "Historic", + "object_number": "20037" + }, + { + "emuIRN": "340545", + "description": "Turned wood ball with metal peg. Smaller version of 19214.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/340545", + "curatorial_section": "Historic", + "object_number": "19215A" + }, + { + "emuIRN": "273066", + "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Top Die", + "Teetotum" + ], + "url": "http://www.penn.museum/collections/object/273066", + "curatorial_section": "Historic", + "object_number": "71-18-6" + }, + { + "emuIRN": "146612", + "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", + "provenience": [ + "Japan" + ], + "material": [ + "Brass", + "Tin" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/146612", + "curatorial_section": "Historic", + "object_number": "71-18-11" + }, + { + "emuIRN": "264736", + "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top" + ], + "url": "http://www.penn.museum/collections/object/264736", + "curatorial_section": "Historic", + "object_number": "71-18-41" + }, + { + "emuIRN": "128464", + "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", + "provenience": [ + "West Germany" + ], + "culture": [ + "German" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/128464", + "curatorial_section": "Historic", + "object_number": "71-18-45" + }, + { + "emuIRN": "102950", + "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top", + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/102950", + "curatorial_section": "Historic", + "object_number": "71-18-50" + }, + { + "emuIRN": "215073", + "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Gyroscope" + ], + "url": "http://www.penn.museum/collections/object/215073", + "curatorial_section": "Historic", + "object_number": "71-18-53" + }, + { + "emuIRN": "281519", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/281519", + "curatorial_section": "Historic", + "object_number": "71-18-10A" + }, + { + "emuIRN": "132216", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/132216", + "curatorial_section": "Historic", + "object_number": "71-18-10B" + }, + { + "emuIRN": "222994", + "description": "Turned wooden spinnters. A-D have stems.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/222994", + "curatorial_section": "Historic", + "object_number": "71-18-17A" + }, + { + "emuIRN": "293378", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/293378", + "curatorial_section": "Historic", + "object_number": "71-18-17B" + }, + { + "emuIRN": "244262", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/244262", + "curatorial_section": "Historic", + "object_number": "71-18-17C" + }, + { + "emuIRN": "97422", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/97422", + "curatorial_section": "Historic", + "object_number": "71-18-17D" + }, + { + "emuIRN": "283240", + "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/283240", + "curatorial_section": "Historic", + "object_number": "71-18-17E" + }, + { + "emuIRN": "199531", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/199531", + "curatorial_section": "Historic", + "object_number": "71-18-20A" + }, + { + "emuIRN": "315942", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/315942", + "curatorial_section": "Historic", + "object_number": "71-18-20B" + }, + { + "emuIRN": "154811", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/154811", + "curatorial_section": "Historic", + "object_number": "71-18-20C" + }, + { + "emuIRN": "119329", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/119329", + "curatorial_section": "Historic", + "object_number": "71-18-20D" + }, + { + "emuIRN": "138169", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/138169", + "curatorial_section": "Historic", + "object_number": "71-18-20E" + }, + { + "emuIRN": "168699", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/168699", + "curatorial_section": "Historic", + "object_number": "71-18-20F" + }, + { + "emuIRN": "165852", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/165852", + "curatorial_section": "Historic", + "object_number": "71-18-20G" + }, + { + "emuIRN": "307682", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/307682", + "curatorial_section": "Historic", + "object_number": "71-18-20H" + }, + { + "emuIRN": "336448", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336448", + "curatorial_section": "Historic", + "object_number": "71-18-32A" + }, + { + "emuIRN": "181753", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/181753", + "curatorial_section": "Historic", + "object_number": "71-18-32B" + }, + { + "emuIRN": "277851", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/277851", + "curatorial_section": "Historic", + "object_number": "71-18-32C" + }, + { + "emuIRN": "44213", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/44213", + "curatorial_section": "Historic", + "object_number": "71-18-32D" + }, + { + "emuIRN": "343371", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/343371", + "curatorial_section": "Historic", + "object_number": "71-18-32E" + }, + { + "emuIRN": "405192", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "period": [ + "Modern" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/405192", + "curatorial_section": "Historic", + "object_number": "71-18-32F" + }, + { + "emuIRN": "174014", + "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinning Toy", + "Supported Top", + "Whistle" + ], + "url": "http://www.penn.museum/collections/object/174014", + "curatorial_section": "Historic", + "object_number": "71-18-72" + }, + { + "emuIRN": "54377", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/54377", + "curatorial_section": "Historic", + "object_number": "71-18-71A" + }, + { + "emuIRN": "336914", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336914", + "curatorial_section": "Historic", + "object_number": "71-18-71B" + }, + { + "emuIRN": "40527", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel", + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/40527", + "curatorial_section": "Historic", + "object_number": "71-18-71C" + }, + { + "emuIRN": "81633", + "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "iconography": [ + "Dog", + "Flag" + ], + "material": [ + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81633", + "other_numbers": [ + "533107" + ], + "curatorial_section": "Historic", + "object_number": "73-1-9" + }, + { + "emuIRN": "315995", + "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/315995", + "curatorial_section": "Historic", + "object_number": "73-1-11" + }, + { + "emuIRN": "81890", + "description": "Bi-colored light plastic top / yo-yo", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81890", + "curatorial_section": "Historic", + "object_number": "73-1-12" + }, + { + "emuIRN": "158974", + "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/158974", + "curatorial_section": "Historic", + "object_number": "73-1-21" + }, + { + "emuIRN": "270492", + "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/270492", + "curatorial_section": "Historic", + "object_number": "73-1-15B" + }, + { + "emuIRN": "122561", + "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "material": [ + "Plastic", + "Nylon" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/122561", + "curatorial_section": "Historic", + "object_number": "75-13-1" + }, + { + "emuIRN": "169135", + "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", + "provenience": [ + "Wisconsin", + "Milwaukee" + ], + "culture": [ + "American" + ], + "creator": [ + "Jak Pak Inc." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/169135", + "curatorial_section": "Historic", + "object_number": "75-13-18" + }, + { + "emuIRN": "265153", + "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", + "provenience": [ + "New York", + "Brooklyn" + ], + "culture": [ + "American" + ], + "creator": [ + "American Magnetop Corp." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/265153", + "curatorial_section": "Historic", + "object_number": "75-13-19" + }, + { + "emuIRN": "258185", + "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Giant Plastics Corp." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/258185", + "curatorial_section": "Historic", + "object_number": "75-13-21" + }, + { + "emuIRN": "112910", + "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", + "provenience": [ + "England" + ], + "culture": [ + "English" + ], + "creator": [ + "Christie & Jay, Ltd" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/112910", + "curatorial_section": "Historic", + "object_number": "75-13-30" + }, + { + "emuIRN": "206818", + "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", + "provenience": [ + "Tennessee", + "Nashville" + ], + "culture": [ + "American" + ], + "creator": [ + "Kusan, Inc" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Yo-Yo", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/206818", + "curatorial_section": "Historic", + "object_number": "75-13-32" + }, + { + "emuIRN": "320134", + "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", + "provenience": [ + "New York", + "Brooklyn" + ], + "creator": [ + "Shimmel" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/320134", + "curatorial_section": "Historic", + "object_number": "75-13-33" + }, + { + "emuIRN": "13411", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/13411", + "curatorial_section": "Historic", + "object_number": "75-13-10A" + }, + { + "emuIRN": "2151", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/2151", + "curatorial_section": "Historic", + "object_number": "75-13-10B" + }, + { + "emuIRN": "227620", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/227620", + "curatorial_section": "Historic", + "object_number": "75-13-10C" + }, + { + "emuIRN": "205966", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/205966", + "curatorial_section": "Historic", + "object_number": "75-13-29A" + }, + { + "emuIRN": "281691", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/281691", + "curatorial_section": "Historic", + "object_number": "75-13-29B" + }, + { + "emuIRN": "99171", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/99171", + "curatorial_section": "Historic", + "object_number": "75-13-29C" + }, + { + "emuIRN": "101034", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/101034", + "curatorial_section": "Historic", + "object_number": "75-13-29D" + }, + { + "emuIRN": "308170", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/308170", + "curatorial_section": "Historic", + "object_number": "75-13-29E" + }, + { + "emuIRN": "212263", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/212263", + "curatorial_section": "Historic", + "object_number": "75-13-29F" + }, + { + "emuIRN": "171295", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/171295", + "curatorial_section": "Historic", + "object_number": "75-13-29G" + }, + { + "emuIRN": "252428", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/252428", + "curatorial_section": "Historic", + "object_number": "75-13-29H" + }, + { + "emuIRN": "33474", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/33474", + "curatorial_section": "Historic", + "object_number": "75-13-29I" + }, + { + "emuIRN": "64988", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/64988", + "curatorial_section": "Historic", + "object_number": "75-13-29J" + }, + { + "emuIRN": "149403", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/149403", + "curatorial_section": "Historic", + "object_number": "75-13-29K" + }, + { + "emuIRN": "192238", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/192238", + "curatorial_section": "Historic", + "object_number": "75-13-29L" + }, + { + "emuIRN": "87050", + "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/87050", + "curatorial_section": "Historic", + "object_number": "75-13-5A" + }, + { + "emuIRN": "241334", + "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", + "provenience": [ + "Hawthorne" + ], + "culture": [ + "American" + ], + "creator": [ + "Mattel, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/241334", + "curatorial_section": "Historic", + "object_number": "75-13-9D" + }, + { + "emuIRN": "77859", + "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/77859", + "curatorial_section": "Historic", + "object_number": "71-18-24" + }, + { + "emuIRN": "285019", + "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top", + "Musical Top" + ], + "url": "http://www.penn.museum/collections/object/285019", + "curatorial_section": "Historic", + "object_number": "71-18-27" + }, + { + "emuIRN": "37984", + "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/37984", + "curatorial_section": "Historic", + "object_number": "71-18-38" + }, + { + "emuIRN": "239276", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/239276", + "curatorial_section": "Historic", + "object_number": "71-18-28A" + }, + { + "emuIRN": "32312", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/32312", + "curatorial_section": "Historic", + "object_number": "71-18-28B" + }, + { + "emuIRN": "65727", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/65727", + "curatorial_section": "Historic", + "object_number": "71-18-28C" + }, + { + "emuIRN": "274339", + "description": "Wire puzzle with boot and cap.", + "provenience": [ + "Europe", + "France (uncertain)" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Wire Puzzle" + ], + "url": "http://www.penn.museum/collections/object/274339", + "curatorial_section": "Historic", + "object_number": "8812" + }, + { + "emuIRN": "159716", + "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Selchow & Richter" + ], + "material": [ + "Cardboard" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/159716", + "date_made_early": "1880", + "date_made": "9/7/1880", + "date_made_late": "1880", + "curatorial_section": "Historic", + "object_number": "15496" + }, + { + "emuIRN": "18643", + "description": "12 lithographed cards with pictures of children's games. Fused to 16555", + "technique": [ + "Lithograph" + ], + "provenience": [ + "France", + "Paris (France)" + ], + "iconography": [ + "Games" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Cards" + ], + "url": "http://www.penn.museum/collections/object/18643", + "curatorial_section": "Historic", + "object_number": "16231" + }, + { + "emuIRN": "34693", + "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Metal", + "Glass", + "Wood" + ], + "accession_credit_line": [ + "Gift of Mrs. John Harrison, 1894" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/34693", + "date_made_early": "1869", + "date_made": "c. 1894", + "date_made_late": "1894", + "curatorial_section": "Historic", + "object_number": "16401" + }, + { + "emuIRN": "93791", + "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", + "provenience": [ + "England", + "London" + ], + "culture": [ + "British" + ], + "accession_credit_line": [ + "Gift of Henry Jones, 1893" + ], + "object_name": [ + "Card Game", + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93791", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "16555" + }, + { + "emuIRN": "117728", + "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "creator": [ + "Donaldson Brothers" + ], + "material": [ + "Paper" + ], + "object_name": [ + "Puzzle", + "Advertisement" + ], + "url": "http://www.penn.museum/collections/object/117728", + "curatorial_section": "Historic", + "object_number": "18578" + }, + { + "emuIRN": "303943", + "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", + "provenience": [ + "Pennsylvania", + "Bucks County" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Glass", + "Metal", + "String", + "Cork" + ], + "accession_credit_line": [ + "Gift of Col. Henry D. Paxson, 1897" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/303943", + "curatorial_section": "Historic", + "object_number": "20067" + }, + { + "emuIRN": "287388", + "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Dr. Max Uhle, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/287388", + "curatorial_section": "Historic", + "object_number": "21082" + }, + { + "emuIRN": "140578", + "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/140578", + "curatorial_section": "Historic", + "object_number": "21458" + }, + { + "emuIRN": "120293", + "description": "Wood Board with instructions. Metal Arm.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120293", + "curatorial_section": "Historic", + "object_number": "21460" + }, + { + "emuIRN": "25280", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/25280", + "curatorial_section": "Historic", + "object_number": "21594A" + }, + { + "emuIRN": "406863", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/406863", + "curatorial_section": "Historic", + "object_number": "21594B" + }, + { + "emuIRN": "93703", + "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "The American Game and Puzzle Company" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93703", + "curatorial_section": "Historic", + "object_number": "29-191-146" + }, + { + "emuIRN": "64758", + "description": "Yamato Block Puzzle - 6 pieces of wood", + "provenience": [ + "Japan" + ], + "culture": [ + "Japanese" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64758", + "curatorial_section": "Historic", + "object_number": "29-191-159" + }, + { + "emuIRN": "64759", + "description": "See Dar Wonderful - 9 pieces of wood", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64759", + "curatorial_section": "Historic", + "object_number": "29-191-160" + }, + { + "emuIRN": "30391", + "description": "12 pieces", + "provenience": [ + "New York", + "New York City" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle", + "Reproduction (uncertain)" + ], + "url": "http://www.penn.museum/collections/object/30391", + "curatorial_section": "Historic", + "object_number": "29-191-161" + }, + { + "emuIRN": "22499", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/22499", + "other_numbers": [ + "4001" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157B" + }, + { + "emuIRN": "120252", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120252", + "other_numbers": [ + "4001?" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157C" + }, + { + "emuIRN": "156290", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/156290", + "other_numbers": [ + "4002" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157D" + }, + { + "emuIRN": "99398", + "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", + "provenience": [ + "Pennsylvania", + "Pittsburgh" + ], + "culture": [ + "American" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Charles Este, Jr., 1899" + ], + "object_name": [ + "Puzzle", + "Trick" + ], + "url": "http://www.penn.museum/collections/object/99398", + "curatorial_section": "Historic", + "object_number": "19783" + }, + { + "emuIRN": "130464", + "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/130464", + "native_name": [ + "Cartes a Jouer" + ], + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "7594" + }, + { + "emuIRN": "160242", + "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/160242", + "date_made_early": "1800", + "date_made": "1800-1899", + "date_made_late": "1899", + "curatorial_section": "Historic", + "object_number": "7595" + }, + { + "emuIRN": "157104", + "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1890" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "url": "http://www.penn.museum/collections/object/157104", + "date_made_early": "1800", + "date_made": "19th century", + "date_made_late": "1890", + "curatorial_section": "Historic", + "object_number": "7629" + }, + { + "emuIRN": "157105", + "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "C. L. Wust" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of J. D. Sergeant, 1890" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/157105", + "curatorial_section": "Historic", + "object_number": "7630" + }, + { + "emuIRN": "98559", + "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "B. Dondorf" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of W. Yorke Stevenson, 1891" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/98559", + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "other_numbers": [ + "27" + ], + "curatorial_section": "Historic", + "object_number": "7712" + }, + { + "emuIRN": "248509", + "description": "Card dominoes in box.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Card Game", + "Dominoe" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/248509", + "curatorial_section": "Historic", + "object_number": "8813" + }, + { + "emuIRN": "137944", + "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/137944", + "date_made_early": "1866", + "date_made": "c. 1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "9011" + }, + { + "emuIRN": "194220", + "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "creator": [ + "Watilliaux" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/194220", + "date_made_early": "1878", + "date_made": "1878", + "date_made_late": "1878", + "curatorial_section": "Historic", + "object_number": "9018" + }, + { + "emuIRN": "205296", + "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", + "technique": [ + "Printed" + ], + "provenience": [ + "Mexico (Central America)", + "Puebla (Mexican State)" + ], + "culture": [ + "Spanish" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of the US National Museum, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/205296", + "date_made_early": "1873", + "date_made": "1873-1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15360" + }, + { + "emuIRN": "21030", + "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Fortune Telling Cards" + ], + "url": "http://www.penn.museum/collections/object/21030", + "date_made_early": "1865", + "date_made": "pre 1890", + "date_made_late": "1890", + "other_numbers": [ + "43" + ], + "curatorial_section": "Historic", + "object_number": "15513" + }, + { + "emuIRN": "46932", + "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", + "provenience": [ + "Italy", + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/46932", + "date_made_early": "1880", + "date_made": "1880-1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15528" + }, + { + "emuIRN": "220035", + "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/220035", + "date_made_early": "29 Nov 1890", + "date_made": "11/29/1890", + "date_made_late": "29 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15529" + }, + { + "emuIRN": "220036", + "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/220036", + "date_made_early": "27 Oct 1890", + "date_made": "10/27/1890", + "date_made_late": "27 Oct 1890", + "other_numbers": [ + "42" + ], + "curatorial_section": "Historic", + "object_number": "15530" + }, + { + "emuIRN": "289473", + "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/289473", + "date_made_early": "17 Jan 1887", + "date_made": "1/17/1887", + "date_made_late": "17 Jan 1887", + "curatorial_section": "Historic", + "object_number": "15532" + }, + { + "emuIRN": "114394", + "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/114394", + "date_made_early": "1867", + "date_made": " pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15533" + }, + { + "emuIRN": "82994", + "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/82994", + "date_made_early": "17 Jun 1890", + "date_made": "6/17/1890", + "date_made_late": "17 Jun 1890", + "other_numbers": [ + "13" + ], + "curatorial_section": "Historic", + "object_number": "15534" + }, + { + "emuIRN": "233242", + "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/233242", + "date_made_early": "13 Mar 1891", + "date_made": "3/13/1891", + "date_made_late": "13 Mar 1891", + "other_numbers": [ + "5" + ], + "curatorial_section": "Historic", + "object_number": "15536" + }, + { + "emuIRN": "237987", + "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/237987", + "date_made_early": "13 Mar 1891", + "date_made": "pre 1892", + "date_made_late": "13 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15537" + }, + { + "emuIRN": "264110", + "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/264110", + "date_made_early": "1867", + "date_made": "pre 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15538" + }, + { + "emuIRN": "36188", + "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/36188", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15540" + }, + { + "emuIRN": "154504", + "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/154504", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15541" + }, + { + "emuIRN": "203963", + "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/203963", + "date_made_early": "27 Aug 1891", + "date_made": "8/27/1891", + "date_made_late": "27 Aug 1891", + "curatorial_section": "Historic", + "object_number": "15543" + }, + { + "emuIRN": "241994", + "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/241994", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15544" + }, + { + "emuIRN": "243680", + "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/243680", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15545" + }, + { + "emuIRN": "87145", + "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/87145", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15546" + }, + { + "emuIRN": "59271", + "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/59271", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15547" + }, + { + "emuIRN": "336096", + "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/336096", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15548" + }, + { + "emuIRN": "203973", + "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/203973", + "date_made_early": "09 Apr 1888", + "date_made": "4/9/1888", + "date_made_late": "09 Apr 1888", + "curatorial_section": "Historic", + "object_number": "15550" + }, + { + "emuIRN": "238541", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/238541", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15552" + }, + { + "emuIRN": "131933", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/131933", + "date_made_early": "16 Jun 1891", + "date_made": "6/16/1891", + "date_made_late": "16 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15553" + }, + { + "emuIRN": "158923", + "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/158923", + "date_made_early": "01 Jun 1891", + "date_made": "6/1/1891", + "date_made_late": "01 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15554" + }, + { + "emuIRN": "103187", + "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/103187", + "native_name": [ + "Tarocchino" + ], + "date_made_early": "03 Feb 1891", + "date_made": "2/3/1891", + "date_made_late": "03 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15555" + }, + { + "emuIRN": "178709", + "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", + "provenience": [ + "Italy", + "Povoletto-Udine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "F. L. Muccioli" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/178709", + "date_made_early": "09 May 1890", + "date_made": "5/9/1890", + "date_made_late": "09 May 1890", + "curatorial_section": "Historic", + "object_number": "15556" + }, + { + "emuIRN": "277112", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/277112", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15557" + }, + { + "emuIRN": "25552", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/25552", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15558" + }, + { + "emuIRN": "325482", + "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/325482", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1895", + "curatorial_section": "Historic", + "object_number": "15559" + }, + { + "emuIRN": "325483", + "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/325483", + "date_made_early": "12 Mar 2091", + "date_made": "3/12/91", + "date_made_late": "12 Mar 2091", + "curatorial_section": "Historic", + "object_number": "15560" + }, + { + "emuIRN": "48114", + "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/48114", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "22 Jun 1891", + "date_made": "6/22/1891", + "date_made_late": "22 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15561" + }, + { + "emuIRN": "167380", + "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/167380", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15562" + }, + { + "emuIRN": "321272", + "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Vincenzo Russo" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack", + "Neopolitan Pack" + ], + "url": "http://www.penn.museum/collections/object/321272", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "11 Feb 1891", + "date_made": "2/11/1891", + "date_made_late": "11 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15563" + }, + { + "emuIRN": "279915", + "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Luigi Pignalosa" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/279915", + "date_made_early": "14 Feb 1891", + "date_made": "2/14/1891", + "date_made_late": "14 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15564" + }, + { + "emuIRN": "157272", + "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/157272", + "date_made_early": "04 Oct 1888", + "date_made": "10/4/1888", + "date_made_late": "04 Oct 1888", + "curatorial_section": "Historic", + "object_number": "15566" + }, + { + "emuIRN": "88522", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/88522", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15567" + }, + { + "emuIRN": "177453", + "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/177453", + "date_made_early": "24 Mar 1891", + "date_made": "3/24/1891", + "date_made_late": "24 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15568" + }, + { + "emuIRN": "322855", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322855", + "date_made_early": "25 Nov 1890", + "date_made": "11/25/1890", + "date_made_late": "25 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15569" + }, + { + "emuIRN": "322856", + "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322856", + "date_made_early": "27 Jul 2091", + "date_made": "7/27/91", + "date_made_late": "27 Jul 2091", + "curatorial_section": "Historic", + "object_number": "15570" + }, + { + "emuIRN": "289232", + "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/289232", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15571" + }, + { + "emuIRN": "71704", + "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "L. Bartolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/71704", + "date_made_early": "02 Jul 1892", + "date_made": "7/2/1892", + "date_made_late": "02 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15572" + }, + { + "emuIRN": "341571", + "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Silvertrini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/341571", + "date_made_early": "01 Jul 1892", + "date_made": "7/1/1892", + "date_made_late": "01 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15573" + }, + { + "emuIRN": "231215", + "description": "Playing card deck - 44 cards", + "provenience": [ + "Italy", + "Bergamo" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Masenghini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Milanese Deck" + ], + "url": "http://www.penn.museum/collections/object/231215", + "curatorial_section": "Historic", + "object_number": "15575" + }, + { + "emuIRN": "290651", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", + "provenience": [ + "Italy", + "Trento" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giac. Bertoldi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/290651", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15577" + }, + { + "emuIRN": "116249", + "description": "Playing card deck - 40 cards, printed back with pink abstract designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/116249", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15578" + }, + { + "emuIRN": "76331", + "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/76331", + "date_made_early": "1867", + "date_made": "c.1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15579" + }, + { + "emuIRN": "76332", + "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/76332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15580" + }, + { + "emuIRN": "189908", + "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/189908", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15583" + }, + { + "emuIRN": "275719", + "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/275719", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15584" + }, + { + "emuIRN": "51584", + "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/51584", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15585" + }, + { + "emuIRN": "56004", + "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Crispolani" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/56004", + "date_made_early": "1850", + "date_made": "circa 1860", + "date_made_late": "1870", + "curatorial_section": "Historic", + "object_number": "15586" + }, + { + "emuIRN": "124979", + "description": "Playing card deck - Tarocchi/Tarot - 78 cards", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/124979", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15587" + }, + { + "emuIRN": "212458", + "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "url": "http://www.penn.museum/collections/object/212458", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15588" + }, + { + "emuIRN": "309331", + "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "G. C. Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309331", + "date_made_early": "30 Mar 1891", + "date_made": "3/30/1891", + "date_made_late": "30 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15589" + }, + { + "emuIRN": "309332", + "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15590" + }, + { + "emuIRN": "86979", + "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/86979", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15592" + }, + { + "emuIRN": "5817", + "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5817", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15594" + }, + { + "emuIRN": "170983", + "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Baby", + "Angel" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/170983", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15595" + }, + { + "emuIRN": "300071", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Tambourine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/300071", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15596" + }, + { + "emuIRN": "236603", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236603", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15597" + }, + { + "emuIRN": "141064", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141064", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15598" + }, + { + "emuIRN": "126294", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", + "provenience": [ + "Italy", + "Treviso" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Francesca Rino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/126294", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15599" + }, + { + "emuIRN": "309333", + "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", + "provenience": [ + "Italy", + "Parma (Italy)" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Faelli Carlo" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309333", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15600" + }, + { + "emuIRN": "261187", + "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Cassini Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Cucu" + ], + "url": "http://www.penn.museum/collections/object/261187", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15601" + }, + { + "emuIRN": "5818", + "description": "40 cards with wrapper. Printed back: green and blue plaid", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5818", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15604" + }, + { + "emuIRN": "236604", + "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236604", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15607" + }, + { + "emuIRN": "141065", + "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141065", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15608" + }, + { + "emuIRN": "319728", + "description": "Playing card deck - 40 cards", + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/319728", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15621" + }, + { + "emuIRN": "119150", + "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Florentine Pack" + ], + "url": "http://www.penn.museum/collections/object/119150", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15622" + }, + { + "emuIRN": "92457", + "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/92457", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15623" + }, + { + "emuIRN": "406753", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406753", + "curatorial_section": "Historic", + "object_number": "19124.15" + }, + { + "emuIRN": "406754", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406754", + "curatorial_section": "Historic", + "object_number": "19124.16" + }, + { + "emuIRN": "406755", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406755", + "curatorial_section": "Historic", + "object_number": "19124.17" + }, + { + "emuIRN": "406756", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406756", + "curatorial_section": "Historic", + "object_number": "19124.18" + }, + { + "emuIRN": "406757", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406757", + "curatorial_section": "Historic", + "object_number": "19124.19" + }, + { + "emuIRN": "406758", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406758", + "curatorial_section": "Historic", + "object_number": "19124.20" + }, + { + "emuIRN": "406759", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406759", + "curatorial_section": "Historic", + "object_number": "19124.21" + }, + { + "emuIRN": "406760", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406760", + "curatorial_section": "Historic", + "object_number": "19124.22" + }, + { + "emuIRN": "406761", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406761", + "curatorial_section": "Historic", + "object_number": "19124.23" + }, + { + "emuIRN": "406762", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406762", + "curatorial_section": "Historic", + "object_number": "19124.24" + }, + { + "emuIRN": "406763", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406763", + "curatorial_section": "Historic", + "object_number": "19124.25" + }, + { + "emuIRN": "406764", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406764", + "curatorial_section": "Historic", + "object_number": "19124.26" + }, + { + "emuIRN": "330556", + "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", + "provenience": [ + "Europe (uncertain)" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/330556", + "curatorial_section": "Historic", + "object_number": "29-191-128" + }, + { + "emuIRN": "321909", + "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/321909", + "curatorial_section": "Historic", + "object_number": "29-191-129" + }, + { + "emuIRN": "127367", + "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/127367", + "curatorial_section": "Historic", + "object_number": "29-191-227" + }, + { + "emuIRN": "203363", + "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", + "technique": [ + "Painted" + ], + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Paint", + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/203363", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15792" + }, + { + "emuIRN": "185526", + "description": "Red and gold sphere with small metall loop on 1 end", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of H. C. Thomson, 1894" + ], + "object_name": [ + "Whistling Top" + ], + "url": "http://www.penn.museum/collections/object/185526", + "curatorial_section": "Historic", + "object_number": "17817" + }, + { + "emuIRN": "59206", + "description": "Wood ball with metal spike. Cord for spinning", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top", + "Cord" + ], + "url": "http://www.penn.museum/collections/object/59206", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19214" + }, + { + "emuIRN": "186142", + "description": "Turned wood, bell-shaped with metal spike.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/186142", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19216" + }, + { + "emuIRN": "234646", + "description": "Toy rolling disc - wooden.", + "provenience": [ + "Italy" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Henry H. Giglioli, 1896" + ], + "object_name": [ + "Spinning Toy (uncertain)", + "Rolling Disc" + ], + "url": "http://www.penn.museum/collections/object/234646", + "curatorial_section": "Historic", + "object_number": "19217" + }, + { + "emuIRN": "134935", + "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal", + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1897" + ], + "object_name": [ + "Pinwheel" + ], + "url": "http://www.penn.museum/collections/object/134935", + "curatorial_section": "Historic", + "object_number": "20037" + }, + { + "emuIRN": "340545", + "description": "Turned wood ball with metal peg. Smaller version of 19214.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/340545", + "curatorial_section": "Historic", + "object_number": "19215A" + }, + { + "emuIRN": "273066", + "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Top Die", + "Teetotum" + ], + "url": "http://www.penn.museum/collections/object/273066", + "curatorial_section": "Historic", + "object_number": "71-18-6" + }, + { + "emuIRN": "146612", + "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", + "provenience": [ + "Japan" + ], + "material": [ + "Brass", + "Tin" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/146612", + "curatorial_section": "Historic", + "object_number": "71-18-11" + }, + { + "emuIRN": "264736", + "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top" + ], + "url": "http://www.penn.museum/collections/object/264736", + "curatorial_section": "Historic", + "object_number": "71-18-41" + }, + { + "emuIRN": "128464", + "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", + "provenience": [ + "West Germany" + ], + "culture": [ + "German" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/128464", + "curatorial_section": "Historic", + "object_number": "71-18-45" + }, + { + "emuIRN": "102950", + "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top", + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/102950", + "curatorial_section": "Historic", + "object_number": "71-18-50" + }, + { + "emuIRN": "215073", + "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Gyroscope" + ], + "url": "http://www.penn.museum/collections/object/215073", + "curatorial_section": "Historic", + "object_number": "71-18-53" + }, + { + "emuIRN": "281519", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/281519", + "curatorial_section": "Historic", + "object_number": "71-18-10A" + }, + { + "emuIRN": "132216", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/132216", + "curatorial_section": "Historic", + "object_number": "71-18-10B" + }, + { + "emuIRN": "222994", + "description": "Turned wooden spinnters. A-D have stems.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/222994", + "curatorial_section": "Historic", + "object_number": "71-18-17A" + }, + { + "emuIRN": "293378", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/293378", + "curatorial_section": "Historic", + "object_number": "71-18-17B" + }, + { + "emuIRN": "244262", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/244262", + "curatorial_section": "Historic", + "object_number": "71-18-17C" + }, + { + "emuIRN": "97422", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/97422", + "curatorial_section": "Historic", + "object_number": "71-18-17D" + }, + { + "emuIRN": "283240", + "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/283240", + "curatorial_section": "Historic", + "object_number": "71-18-17E" + }, + { + "emuIRN": "199531", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/199531", + "curatorial_section": "Historic", + "object_number": "71-18-20A" + }, + { + "emuIRN": "315942", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/315942", + "curatorial_section": "Historic", + "object_number": "71-18-20B" + }, + { + "emuIRN": "154811", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/154811", + "curatorial_section": "Historic", + "object_number": "71-18-20C" + }, + { + "emuIRN": "119329", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/119329", + "curatorial_section": "Historic", + "object_number": "71-18-20D" + }, + { + "emuIRN": "138169", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/138169", + "curatorial_section": "Historic", + "object_number": "71-18-20E" + }, + { + "emuIRN": "168699", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/168699", + "curatorial_section": "Historic", + "object_number": "71-18-20F" + }, + { + "emuIRN": "165852", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/165852", + "curatorial_section": "Historic", + "object_number": "71-18-20G" + }, + { + "emuIRN": "307682", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/307682", + "curatorial_section": "Historic", + "object_number": "71-18-20H" + }, + { + "emuIRN": "336448", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336448", + "curatorial_section": "Historic", + "object_number": "71-18-32A" + }, + { + "emuIRN": "181753", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/181753", + "curatorial_section": "Historic", + "object_number": "71-18-32B" + }, + { + "emuIRN": "277851", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/277851", + "curatorial_section": "Historic", + "object_number": "71-18-32C" + }, + { + "emuIRN": "44213", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/44213", + "curatorial_section": "Historic", + "object_number": "71-18-32D" + }, + { + "emuIRN": "343371", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/343371", + "curatorial_section": "Historic", + "object_number": "71-18-32E" + }, + { + "emuIRN": "405192", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "period": [ + "Modern" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/405192", + "curatorial_section": "Historic", + "object_number": "71-18-32F" + }, + { + "emuIRN": "174014", + "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinning Toy", + "Supported Top", + "Whistle" + ], + "url": "http://www.penn.museum/collections/object/174014", + "curatorial_section": "Historic", + "object_number": "71-18-72" + }, + { + "emuIRN": "54377", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/54377", + "curatorial_section": "Historic", + "object_number": "71-18-71A" + }, + { + "emuIRN": "336914", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336914", + "curatorial_section": "Historic", + "object_number": "71-18-71B" + }, + { + "emuIRN": "40527", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel", + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/40527", + "curatorial_section": "Historic", + "object_number": "71-18-71C" + }, + { + "emuIRN": "81633", + "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "iconography": [ + "Dog", + "Flag" + ], + "material": [ + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81633", + "other_numbers": [ + "533107" + ], + "curatorial_section": "Historic", + "object_number": "73-1-9" + }, + { + "emuIRN": "315995", + "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/315995", + "curatorial_section": "Historic", + "object_number": "73-1-11" + }, + { + "emuIRN": "81890", + "description": "Bi-colored light plastic top / yo-yo", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81890", + "curatorial_section": "Historic", + "object_number": "73-1-12" + }, + { + "emuIRN": "158974", + "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/158974", + "curatorial_section": "Historic", + "object_number": "73-1-21" + }, + { + "emuIRN": "270492", + "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/270492", + "curatorial_section": "Historic", + "object_number": "73-1-15B" + }, + { + "emuIRN": "122561", + "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "material": [ + "Plastic", + "Nylon" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/122561", + "curatorial_section": "Historic", + "object_number": "75-13-1" + }, + { + "emuIRN": "169135", + "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", + "provenience": [ + "Wisconsin", + "Milwaukee" + ], + "culture": [ + "American" + ], + "creator": [ + "Jak Pak Inc." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/169135", + "curatorial_section": "Historic", + "object_number": "75-13-18" + }, + { + "emuIRN": "265153", + "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", + "provenience": [ + "New York", + "Brooklyn" + ], + "culture": [ + "American" + ], + "creator": [ + "American Magnetop Corp." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/265153", + "curatorial_section": "Historic", + "object_number": "75-13-19" + }, + { + "emuIRN": "258185", + "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Giant Plastics Corp." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/258185", + "curatorial_section": "Historic", + "object_number": "75-13-21" + }, + { + "emuIRN": "112910", + "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", + "provenience": [ + "England" + ], + "culture": [ + "English" + ], + "creator": [ + "Christie & Jay, Ltd" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/112910", + "curatorial_section": "Historic", + "object_number": "75-13-30" + }, + { + "emuIRN": "206818", + "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", + "provenience": [ + "Tennessee", + "Nashville" + ], + "culture": [ + "American" + ], + "creator": [ + "Kusan, Inc" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Yo-Yo", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/206818", + "curatorial_section": "Historic", + "object_number": "75-13-32" + }, + { + "emuIRN": "320134", + "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", + "provenience": [ + "New York", + "Brooklyn" + ], + "creator": [ + "Shimmel" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/320134", + "curatorial_section": "Historic", + "object_number": "75-13-33" + }, + { + "emuIRN": "13411", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/13411", + "curatorial_section": "Historic", + "object_number": "75-13-10A" + }, + { + "emuIRN": "2151", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/2151", + "curatorial_section": "Historic", + "object_number": "75-13-10B" + }, + { + "emuIRN": "227620", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/227620", + "curatorial_section": "Historic", + "object_number": "75-13-10C" + }, + { + "emuIRN": "205966", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/205966", + "curatorial_section": "Historic", + "object_number": "75-13-29A" + }, + { + "emuIRN": "281691", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/281691", + "curatorial_section": "Historic", + "object_number": "75-13-29B" + }, + { + "emuIRN": "99171", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/99171", + "curatorial_section": "Historic", + "object_number": "75-13-29C" + }, + { + "emuIRN": "101034", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/101034", + "curatorial_section": "Historic", + "object_number": "75-13-29D" + }, + { + "emuIRN": "308170", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/308170", + "curatorial_section": "Historic", + "object_number": "75-13-29E" + }, + { + "emuIRN": "212263", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/212263", + "curatorial_section": "Historic", + "object_number": "75-13-29F" + }, + { + "emuIRN": "171295", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/171295", + "curatorial_section": "Historic", + "object_number": "75-13-29G" + }, + { + "emuIRN": "252428", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/252428", + "curatorial_section": "Historic", + "object_number": "75-13-29H" + }, + { + "emuIRN": "33474", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/33474", + "curatorial_section": "Historic", + "object_number": "75-13-29I" + }, + { + "emuIRN": "64988", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/64988", + "curatorial_section": "Historic", + "object_number": "75-13-29J" + }, + { + "emuIRN": "149403", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/149403", + "curatorial_section": "Historic", + "object_number": "75-13-29K" + }, + { + "emuIRN": "192238", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/192238", + "curatorial_section": "Historic", + "object_number": "75-13-29L" + }, + { + "emuIRN": "87050", + "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/87050", + "curatorial_section": "Historic", + "object_number": "75-13-5A" + }, + { + "emuIRN": "241334", + "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", + "provenience": [ + "Hawthorne" + ], + "culture": [ + "American" + ], + "creator": [ + "Mattel, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/241334", + "curatorial_section": "Historic", + "object_number": "75-13-9D" + }, + { + "emuIRN": "77859", + "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/77859", + "curatorial_section": "Historic", + "object_number": "71-18-24" + }, + { + "emuIRN": "285019", + "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top", + "Musical Top" + ], + "url": "http://www.penn.museum/collections/object/285019", + "curatorial_section": "Historic", + "object_number": "71-18-27" + }, + { + "emuIRN": "37984", + "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/37984", + "curatorial_section": "Historic", + "object_number": "71-18-38" + }, + { + "emuIRN": "239276", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/239276", + "curatorial_section": "Historic", + "object_number": "71-18-28A" + }, + { + "emuIRN": "32312", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/32312", + "curatorial_section": "Historic", + "object_number": "71-18-28B" + }, + { + "emuIRN": "65727", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/65727", + "curatorial_section": "Historic", + "object_number": "71-18-28C" + }, + { + "emuIRN": "274339", + "description": "Wire puzzle with boot and cap.", + "provenience": [ + "Europe", + "France (uncertain)" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Wire Puzzle" + ], + "url": "http://www.penn.museum/collections/object/274339", + "curatorial_section": "Historic", + "object_number": "8812" + }, + { + "emuIRN": "159716", + "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Selchow & Richter" + ], + "material": [ + "Cardboard" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/159716", + "date_made_early": "1880", + "date_made": "9/7/1880", + "date_made_late": "1880", + "curatorial_section": "Historic", + "object_number": "15496" + }, + { + "emuIRN": "18643", + "description": "12 lithographed cards with pictures of children's games. Fused to 16555", + "technique": [ + "Lithograph" + ], + "provenience": [ + "France", + "Paris (France)" + ], + "iconography": [ + "Games" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Cards" + ], + "url": "http://www.penn.museum/collections/object/18643", + "curatorial_section": "Historic", + "object_number": "16231" + }, + { + "emuIRN": "34693", + "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Metal", + "Glass", + "Wood" + ], + "accession_credit_line": [ + "Gift of Mrs. John Harrison, 1894" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/34693", + "date_made_early": "1869", + "date_made": "c. 1894", + "date_made_late": "1894", + "curatorial_section": "Historic", + "object_number": "16401" + }, + { + "emuIRN": "93791", + "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", + "provenience": [ + "England", + "London" + ], + "culture": [ + "British" + ], + "accession_credit_line": [ + "Gift of Henry Jones, 1893" + ], + "object_name": [ + "Card Game", + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93791", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "16555" + }, + { + "emuIRN": "117728", + "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "creator": [ + "Donaldson Brothers" + ], + "material": [ + "Paper" + ], + "object_name": [ + "Puzzle", + "Advertisement" + ], + "url": "http://www.penn.museum/collections/object/117728", + "curatorial_section": "Historic", + "object_number": "18578" + }, + { + "emuIRN": "303943", + "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", + "provenience": [ + "Pennsylvania", + "Bucks County" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Glass", + "Metal", + "String", + "Cork" + ], + "accession_credit_line": [ + "Gift of Col. Henry D. Paxson, 1897" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/303943", + "curatorial_section": "Historic", + "object_number": "20067" + }, + { + "emuIRN": "287388", + "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Dr. Max Uhle, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/287388", + "curatorial_section": "Historic", + "object_number": "21082" + }, + { + "emuIRN": "140578", + "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/140578", + "curatorial_section": "Historic", + "object_number": "21458" + }, + { + "emuIRN": "120293", + "description": "Wood Board with instructions. Metal Arm.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120293", + "curatorial_section": "Historic", + "object_number": "21460" + }, + { + "emuIRN": "25280", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/25280", + "curatorial_section": "Historic", + "object_number": "21594A" + }, + { + "emuIRN": "406863", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/406863", + "curatorial_section": "Historic", + "object_number": "21594B" + }, + { + "emuIRN": "93703", + "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "The American Game and Puzzle Company" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93703", + "curatorial_section": "Historic", + "object_number": "29-191-146" + }, + { + "emuIRN": "64758", + "description": "Yamato Block Puzzle - 6 pieces of wood", + "provenience": [ + "Japan" + ], + "culture": [ + "Japanese" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64758", + "curatorial_section": "Historic", + "object_number": "29-191-159" + }, + { + "emuIRN": "64759", + "description": "See Dar Wonderful - 9 pieces of wood", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64759", + "curatorial_section": "Historic", + "object_number": "29-191-160" + }, + { + "emuIRN": "30391", + "description": "12 pieces", + "provenience": [ + "New York", + "New York City" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle", + "Reproduction (uncertain)" + ], + "url": "http://www.penn.museum/collections/object/30391", + "curatorial_section": "Historic", + "object_number": "29-191-161" + }, + { + "emuIRN": "22499", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/22499", + "other_numbers": [ + "4001" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157B" + }, + { + "emuIRN": "120252", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120252", + "other_numbers": [ + "4001?" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157C" + }, + { + "emuIRN": "156290", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/156290", + "other_numbers": [ + "4002" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157D" + }, + { + "emuIRN": "99398", + "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", + "provenience": [ + "Pennsylvania", + "Pittsburgh" + ], + "culture": [ + "American" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Charles Este, Jr., 1899" + ], + "object_name": [ + "Puzzle", + "Trick" + ], + "url": "http://www.penn.museum/collections/object/99398", + "curatorial_section": "Historic", + "object_number": "19783" + }, + { + "emuIRN": "130464", + "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/130464", + "native_name": [ + "Cartes a Jouer" + ], + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "7594" + }, + { + "emuIRN": "160242", + "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/160242", + "date_made_early": "1800", + "date_made": "1800-1899", + "date_made_late": "1899", + "curatorial_section": "Historic", + "object_number": "7595" + }, + { + "emuIRN": "157104", + "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1890" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "url": "http://www.penn.museum/collections/object/157104", + "date_made_early": "1800", + "date_made": "19th century", + "date_made_late": "1890", + "curatorial_section": "Historic", + "object_number": "7629" + }, + { + "emuIRN": "157105", + "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "C. L. Wust" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of J. D. Sergeant, 1890" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/157105", + "curatorial_section": "Historic", + "object_number": "7630" + }, + { + "emuIRN": "98559", + "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "B. Dondorf" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of W. Yorke Stevenson, 1891" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/98559", + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "other_numbers": [ + "27" + ], + "curatorial_section": "Historic", + "object_number": "7712" + }, + { + "emuIRN": "248509", + "description": "Card dominoes in box.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Card Game", + "Dominoe" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/248509", + "curatorial_section": "Historic", + "object_number": "8813" + }, + { + "emuIRN": "137944", + "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/137944", + "date_made_early": "1866", + "date_made": "c. 1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "9011" + }, + { + "emuIRN": "194220", + "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "creator": [ + "Watilliaux" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/194220", + "date_made_early": "1878", + "date_made": "1878", + "date_made_late": "1878", + "curatorial_section": "Historic", + "object_number": "9018" + }, + { + "emuIRN": "205296", + "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", + "technique": [ + "Printed" + ], + "provenience": [ + "Mexico (Central America)", + "Puebla (Mexican State)" + ], + "culture": [ + "Spanish" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of the US National Museum, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/205296", + "date_made_early": "1873", + "date_made": "1873-1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15360" + }, + { + "emuIRN": "21030", + "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Fortune Telling Cards" + ], + "url": "http://www.penn.museum/collections/object/21030", + "date_made_early": "1865", + "date_made": "pre 1890", + "date_made_late": "1890", + "other_numbers": [ + "43" + ], + "curatorial_section": "Historic", + "object_number": "15513" + }, + { + "emuIRN": "46932", + "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", + "provenience": [ + "Italy", + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/46932", + "date_made_early": "1880", + "date_made": "1880-1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15528" + }, + { + "emuIRN": "220035", + "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/220035", + "date_made_early": "29 Nov 1890", + "date_made": "11/29/1890", + "date_made_late": "29 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15529" + }, + { + "emuIRN": "220036", + "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/220036", + "date_made_early": "27 Oct 1890", + "date_made": "10/27/1890", + "date_made_late": "27 Oct 1890", + "other_numbers": [ + "42" + ], + "curatorial_section": "Historic", + "object_number": "15530" + }, + { + "emuIRN": "289473", + "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/289473", + "date_made_early": "17 Jan 1887", + "date_made": "1/17/1887", + "date_made_late": "17 Jan 1887", + "curatorial_section": "Historic", + "object_number": "15532" + }, + { + "emuIRN": "114394", + "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/114394", + "date_made_early": "1867", + "date_made": " pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15533" + }, + { + "emuIRN": "82994", + "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/82994", + "date_made_early": "17 Jun 1890", + "date_made": "6/17/1890", + "date_made_late": "17 Jun 1890", + "other_numbers": [ + "13" + ], + "curatorial_section": "Historic", + "object_number": "15534" + }, + { + "emuIRN": "233242", + "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/233242", + "date_made_early": "13 Mar 1891", + "date_made": "3/13/1891", + "date_made_late": "13 Mar 1891", + "other_numbers": [ + "5" + ], + "curatorial_section": "Historic", + "object_number": "15536" + }, + { + "emuIRN": "237987", + "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/237987", + "date_made_early": "13 Mar 1891", + "date_made": "pre 1892", + "date_made_late": "13 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15537" + }, + { + "emuIRN": "264110", + "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/264110", + "date_made_early": "1867", + "date_made": "pre 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15538" + }, + { + "emuIRN": "36188", + "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/36188", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15540" + }, + { + "emuIRN": "154504", + "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/154504", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15541" + }, + { + "emuIRN": "203963", + "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/203963", + "date_made_early": "27 Aug 1891", + "date_made": "8/27/1891", + "date_made_late": "27 Aug 1891", + "curatorial_section": "Historic", + "object_number": "15543" + }, + { + "emuIRN": "241994", + "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/241994", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15544" + }, + { + "emuIRN": "243680", + "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/243680", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15545" + }, + { + "emuIRN": "87145", + "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/87145", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15546" + }, + { + "emuIRN": "59271", + "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/59271", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15547" + }, + { + "emuIRN": "336096", + "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/336096", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15548" + }, + { + "emuIRN": "203973", + "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/203973", + "date_made_early": "09 Apr 1888", + "date_made": "4/9/1888", + "date_made_late": "09 Apr 1888", + "curatorial_section": "Historic", + "object_number": "15550" + }, + { + "emuIRN": "238541", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/238541", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15552" + }, + { + "emuIRN": "131933", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/131933", + "date_made_early": "16 Jun 1891", + "date_made": "6/16/1891", + "date_made_late": "16 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15553" + }, + { + "emuIRN": "158923", + "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/158923", + "date_made_early": "01 Jun 1891", + "date_made": "6/1/1891", + "date_made_late": "01 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15554" + }, + { + "emuIRN": "103187", + "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/103187", + "native_name": [ + "Tarocchino" + ], + "date_made_early": "03 Feb 1891", + "date_made": "2/3/1891", + "date_made_late": "03 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15555" + }, + { + "emuIRN": "178709", + "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", + "provenience": [ + "Italy", + "Povoletto-Udine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "F. L. Muccioli" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/178709", + "date_made_early": "09 May 1890", + "date_made": "5/9/1890", + "date_made_late": "09 May 1890", + "curatorial_section": "Historic", + "object_number": "15556" + }, + { + "emuIRN": "277112", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/277112", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15557" + }, + { + "emuIRN": "25552", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/25552", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15558" + }, + { + "emuIRN": "325482", + "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/325482", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1895", + "curatorial_section": "Historic", + "object_number": "15559" + }, + { + "emuIRN": "325483", + "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/325483", + "date_made_early": "12 Mar 2091", + "date_made": "3/12/91", + "date_made_late": "12 Mar 2091", + "curatorial_section": "Historic", + "object_number": "15560" + }, + { + "emuIRN": "48114", + "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/48114", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "22 Jun 1891", + "date_made": "6/22/1891", + "date_made_late": "22 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15561" + }, + { + "emuIRN": "167380", + "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/167380", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15562" + }, + { + "emuIRN": "321272", + "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Vincenzo Russo" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack", + "Neopolitan Pack" + ], + "url": "http://www.penn.museum/collections/object/321272", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "11 Feb 1891", + "date_made": "2/11/1891", + "date_made_late": "11 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15563" + }, + { + "emuIRN": "279915", + "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Luigi Pignalosa" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/279915", + "date_made_early": "14 Feb 1891", + "date_made": "2/14/1891", + "date_made_late": "14 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15564" + }, + { + "emuIRN": "157272", + "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/157272", + "date_made_early": "04 Oct 1888", + "date_made": "10/4/1888", + "date_made_late": "04 Oct 1888", + "curatorial_section": "Historic", + "object_number": "15566" + }, + { + "emuIRN": "88522", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/88522", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15567" + }, + { + "emuIRN": "177453", + "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/177453", + "date_made_early": "24 Mar 1891", + "date_made": "3/24/1891", + "date_made_late": "24 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15568" + }, + { + "emuIRN": "322855", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322855", + "date_made_early": "25 Nov 1890", + "date_made": "11/25/1890", + "date_made_late": "25 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15569" + }, + { + "emuIRN": "322856", + "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322856", + "date_made_early": "27 Jul 2091", + "date_made": "7/27/91", + "date_made_late": "27 Jul 2091", + "curatorial_section": "Historic", + "object_number": "15570" + }, + { + "emuIRN": "289232", + "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/289232", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15571" + }, + { + "emuIRN": "71704", + "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "L. Bartolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/71704", + "date_made_early": "02 Jul 1892", + "date_made": "7/2/1892", + "date_made_late": "02 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15572" + }, + { + "emuIRN": "341571", + "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Silvertrini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/341571", + "date_made_early": "01 Jul 1892", + "date_made": "7/1/1892", + "date_made_late": "01 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15573" + }, + { + "emuIRN": "231215", + "description": "Playing card deck - 44 cards", + "provenience": [ + "Italy", + "Bergamo" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Masenghini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Milanese Deck" + ], + "url": "http://www.penn.museum/collections/object/231215", + "curatorial_section": "Historic", + "object_number": "15575" + }, + { + "emuIRN": "290651", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", + "provenience": [ + "Italy", + "Trento" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giac. Bertoldi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/290651", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15577" + }, + { + "emuIRN": "116249", + "description": "Playing card deck - 40 cards, printed back with pink abstract designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/116249", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15578" + }, + { + "emuIRN": "76331", + "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/76331", + "date_made_early": "1867", + "date_made": "c.1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15579" + }, + { + "emuIRN": "76332", + "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/76332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15580" + }, + { + "emuIRN": "189908", + "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/189908", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15583" + }, + { + "emuIRN": "275719", + "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/275719", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15584" + }, + { + "emuIRN": "51584", + "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/51584", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15585" + }, + { + "emuIRN": "56004", + "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Crispolani" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/56004", + "date_made_early": "1850", + "date_made": "circa 1860", + "date_made_late": "1870", + "curatorial_section": "Historic", + "object_number": "15586" + }, + { + "emuIRN": "124979", + "description": "Playing card deck - Tarocchi/Tarot - 78 cards", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/124979", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15587" + }, + { + "emuIRN": "212458", + "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "url": "http://www.penn.museum/collections/object/212458", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15588" + }, + { + "emuIRN": "309331", + "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "G. C. Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309331", + "date_made_early": "30 Mar 1891", + "date_made": "3/30/1891", + "date_made_late": "30 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15589" + }, + { + "emuIRN": "309332", + "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15590" + }, + { + "emuIRN": "86979", + "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/86979", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15592" + }, + { + "emuIRN": "5817", + "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5817", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15594" + }, + { + "emuIRN": "170983", + "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Baby", + "Angel" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/170983", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15595" + }, + { + "emuIRN": "300071", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Tambourine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/300071", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15596" + }, + { + "emuIRN": "236603", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236603", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15597" + }, + { + "emuIRN": "141064", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141064", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15598" + }, + { + "emuIRN": "126294", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", + "provenience": [ + "Italy", + "Treviso" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Francesca Rino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/126294", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15599" + }, + { + "emuIRN": "309333", + "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", + "provenience": [ + "Italy", + "Parma (Italy)" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Faelli Carlo" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309333", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15600" + }, + { + "emuIRN": "261187", + "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Cassini Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Cucu" + ], + "url": "http://www.penn.museum/collections/object/261187", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15601" + }, + { + "emuIRN": "5818", + "description": "40 cards with wrapper. Printed back: green and blue plaid", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5818", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15604" + }, + { + "emuIRN": "236604", + "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236604", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15607" + }, + { + "emuIRN": "141065", + "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141065", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15608" + }, + { + "emuIRN": "319728", + "description": "Playing card deck - 40 cards", + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/319728", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15621" + }, + { + "emuIRN": "119150", + "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Florentine Pack" + ], + "url": "http://www.penn.museum/collections/object/119150", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15622" + }, + { + "emuIRN": "92457", + "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/92457", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15623" + }, + { + "emuIRN": "406753", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406753", + "curatorial_section": "Historic", + "object_number": "19124.15" + }, + { + "emuIRN": "406754", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406754", + "curatorial_section": "Historic", + "object_number": "19124.16" + }, + { + "emuIRN": "406755", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406755", + "curatorial_section": "Historic", + "object_number": "19124.17" + }, + { + "emuIRN": "406756", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406756", + "curatorial_section": "Historic", + "object_number": "19124.18" + }, + { + "emuIRN": "406757", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406757", + "curatorial_section": "Historic", + "object_number": "19124.19" + }, + { + "emuIRN": "406758", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406758", + "curatorial_section": "Historic", + "object_number": "19124.20" + }, + { + "emuIRN": "406759", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406759", + "curatorial_section": "Historic", + "object_number": "19124.21" + }, + { + "emuIRN": "406760", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406760", + "curatorial_section": "Historic", + "object_number": "19124.22" + }, + { + "emuIRN": "406761", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406761", + "curatorial_section": "Historic", + "object_number": "19124.23" + }, + { + "emuIRN": "406762", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406762", + "curatorial_section": "Historic", + "object_number": "19124.24" + }, + { + "emuIRN": "406763", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406763", + "curatorial_section": "Historic", + "object_number": "19124.25" + }, + { + "emuIRN": "406764", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406764", + "curatorial_section": "Historic", + "object_number": "19124.26" + }, + { + "emuIRN": "330556", + "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", + "provenience": [ + "Europe (uncertain)" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/330556", + "curatorial_section": "Historic", + "object_number": "29-191-128" + }, + { + "emuIRN": "321909", + "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/321909", + "curatorial_section": "Historic", + "object_number": "29-191-129" + }, + { + "emuIRN": "127367", + "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/127367", + "curatorial_section": "Historic", + "object_number": "29-191-227" + }, + { + "emuIRN": "203363", + "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", + "technique": [ + "Painted" + ], + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Paint", + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/203363", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15792" + }, + { + "emuIRN": "185526", + "description": "Red and gold sphere with small metall loop on 1 end", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of H. C. Thomson, 1894" + ], + "object_name": [ + "Whistling Top" + ], + "url": "http://www.penn.museum/collections/object/185526", + "curatorial_section": "Historic", + "object_number": "17817" + }, + { + "emuIRN": "59206", + "description": "Wood ball with metal spike. Cord for spinning", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top", + "Cord" + ], + "url": "http://www.penn.museum/collections/object/59206", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19214" + }, + { + "emuIRN": "186142", + "description": "Turned wood, bell-shaped with metal spike.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/186142", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19216" + }, + { + "emuIRN": "234646", + "description": "Toy rolling disc - wooden.", + "provenience": [ + "Italy" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Henry H. Giglioli, 1896" + ], + "object_name": [ + "Spinning Toy (uncertain)", + "Rolling Disc" + ], + "url": "http://www.penn.museum/collections/object/234646", + "curatorial_section": "Historic", + "object_number": "19217" + }, + { + "emuIRN": "134935", + "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal", + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1897" + ], + "object_name": [ + "Pinwheel" + ], + "url": "http://www.penn.museum/collections/object/134935", + "curatorial_section": "Historic", + "object_number": "20037" + }, + { + "emuIRN": "340545", + "description": "Turned wood ball with metal peg. Smaller version of 19214.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/340545", + "curatorial_section": "Historic", + "object_number": "19215A" + }, + { + "emuIRN": "273066", + "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Top Die", + "Teetotum" + ], + "url": "http://www.penn.museum/collections/object/273066", + "curatorial_section": "Historic", + "object_number": "71-18-6" + }, + { + "emuIRN": "146612", + "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", + "provenience": [ + "Japan" + ], + "material": [ + "Brass", + "Tin" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/146612", + "curatorial_section": "Historic", + "object_number": "71-18-11" + }, + { + "emuIRN": "264736", + "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top" + ], + "url": "http://www.penn.museum/collections/object/264736", + "curatorial_section": "Historic", + "object_number": "71-18-41" + }, + { + "emuIRN": "128464", + "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", + "provenience": [ + "West Germany" + ], + "culture": [ + "German" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/128464", + "curatorial_section": "Historic", + "object_number": "71-18-45" + }, + { + "emuIRN": "102950", + "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top", + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/102950", + "curatorial_section": "Historic", + "object_number": "71-18-50" + }, + { + "emuIRN": "215073", + "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Gyroscope" + ], + "url": "http://www.penn.museum/collections/object/215073", + "curatorial_section": "Historic", + "object_number": "71-18-53" + }, + { + "emuIRN": "281519", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/281519", + "curatorial_section": "Historic", + "object_number": "71-18-10A" + }, + { + "emuIRN": "132216", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/132216", + "curatorial_section": "Historic", + "object_number": "71-18-10B" + }, + { + "emuIRN": "222994", + "description": "Turned wooden spinnters. A-D have stems.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/222994", + "curatorial_section": "Historic", + "object_number": "71-18-17A" + }, + { + "emuIRN": "293378", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/293378", + "curatorial_section": "Historic", + "object_number": "71-18-17B" + }, + { + "emuIRN": "244262", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/244262", + "curatorial_section": "Historic", + "object_number": "71-18-17C" + }, + { + "emuIRN": "97422", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/97422", + "curatorial_section": "Historic", + "object_number": "71-18-17D" + }, + { + "emuIRN": "283240", + "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/283240", + "curatorial_section": "Historic", + "object_number": "71-18-17E" + }, + { + "emuIRN": "199531", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/199531", + "curatorial_section": "Historic", + "object_number": "71-18-20A" + }, + { + "emuIRN": "315942", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/315942", + "curatorial_section": "Historic", + "object_number": "71-18-20B" + }, + { + "emuIRN": "154811", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/154811", + "curatorial_section": "Historic", + "object_number": "71-18-20C" + }, + { + "emuIRN": "119329", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/119329", + "curatorial_section": "Historic", + "object_number": "71-18-20D" + }, + { + "emuIRN": "138169", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/138169", + "curatorial_section": "Historic", + "object_number": "71-18-20E" + }, + { + "emuIRN": "168699", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/168699", + "curatorial_section": "Historic", + "object_number": "71-18-20F" + }, + { + "emuIRN": "165852", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/165852", + "curatorial_section": "Historic", + "object_number": "71-18-20G" + }, + { + "emuIRN": "307682", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/307682", + "curatorial_section": "Historic", + "object_number": "71-18-20H" + }, + { + "emuIRN": "336448", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336448", + "curatorial_section": "Historic", + "object_number": "71-18-32A" + }, + { + "emuIRN": "181753", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/181753", + "curatorial_section": "Historic", + "object_number": "71-18-32B" + }, + { + "emuIRN": "277851", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/277851", + "curatorial_section": "Historic", + "object_number": "71-18-32C" + }, + { + "emuIRN": "44213", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/44213", + "curatorial_section": "Historic", + "object_number": "71-18-32D" + }, + { + "emuIRN": "343371", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/343371", + "curatorial_section": "Historic", + "object_number": "71-18-32E" + }, + { + "emuIRN": "405192", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "period": [ + "Modern" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/405192", + "curatorial_section": "Historic", + "object_number": "71-18-32F" + }, + { + "emuIRN": "174014", + "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinning Toy", + "Supported Top", + "Whistle" + ], + "url": "http://www.penn.museum/collections/object/174014", + "curatorial_section": "Historic", + "object_number": "71-18-72" + }, + { + "emuIRN": "54377", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/54377", + "curatorial_section": "Historic", + "object_number": "71-18-71A" + }, + { + "emuIRN": "336914", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336914", + "curatorial_section": "Historic", + "object_number": "71-18-71B" + }, + { + "emuIRN": "40527", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel", + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/40527", + "curatorial_section": "Historic", + "object_number": "71-18-71C" + }, + { + "emuIRN": "81633", + "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "iconography": [ + "Dog", + "Flag" + ], + "material": [ + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81633", + "other_numbers": [ + "533107" + ], + "curatorial_section": "Historic", + "object_number": "73-1-9" + }, + { + "emuIRN": "315995", + "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/315995", + "curatorial_section": "Historic", + "object_number": "73-1-11" + }, + { + "emuIRN": "81890", + "description": "Bi-colored light plastic top / yo-yo", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81890", + "curatorial_section": "Historic", + "object_number": "73-1-12" + }, + { + "emuIRN": "158974", + "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/158974", + "curatorial_section": "Historic", + "object_number": "73-1-21" + }, + { + "emuIRN": "270492", + "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/270492", + "curatorial_section": "Historic", + "object_number": "73-1-15B" + }, + { + "emuIRN": "122561", + "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "material": [ + "Plastic", + "Nylon" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/122561", + "curatorial_section": "Historic", + "object_number": "75-13-1" + }, + { + "emuIRN": "169135", + "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", + "provenience": [ + "Wisconsin", + "Milwaukee" + ], + "culture": [ + "American" + ], + "creator": [ + "Jak Pak Inc." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/169135", + "curatorial_section": "Historic", + "object_number": "75-13-18" + }, + { + "emuIRN": "265153", + "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", + "provenience": [ + "New York", + "Brooklyn" + ], + "culture": [ + "American" + ], + "creator": [ + "American Magnetop Corp." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/265153", + "curatorial_section": "Historic", + "object_number": "75-13-19" + }, + { + "emuIRN": "258185", + "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Giant Plastics Corp." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/258185", + "curatorial_section": "Historic", + "object_number": "75-13-21" + }, + { + "emuIRN": "112910", + "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", + "provenience": [ + "England" + ], + "culture": [ + "English" + ], + "creator": [ + "Christie & Jay, Ltd" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/112910", + "curatorial_section": "Historic", + "object_number": "75-13-30" + }, + { + "emuIRN": "206818", + "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", + "provenience": [ + "Tennessee", + "Nashville" + ], + "culture": [ + "American" + ], + "creator": [ + "Kusan, Inc" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Yo-Yo", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/206818", + "curatorial_section": "Historic", + "object_number": "75-13-32" + }, + { + "emuIRN": "320134", + "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", + "provenience": [ + "New York", + "Brooklyn" + ], + "creator": [ + "Shimmel" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/320134", + "curatorial_section": "Historic", + "object_number": "75-13-33" + }, + { + "emuIRN": "13411", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/13411", + "curatorial_section": "Historic", + "object_number": "75-13-10A" + }, + { + "emuIRN": "2151", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/2151", + "curatorial_section": "Historic", + "object_number": "75-13-10B" + }, + { + "emuIRN": "227620", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/227620", + "curatorial_section": "Historic", + "object_number": "75-13-10C" + }, + { + "emuIRN": "205966", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/205966", + "curatorial_section": "Historic", + "object_number": "75-13-29A" + }, + { + "emuIRN": "281691", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/281691", + "curatorial_section": "Historic", + "object_number": "75-13-29B" + }, + { + "emuIRN": "99171", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/99171", + "curatorial_section": "Historic", + "object_number": "75-13-29C" + }, + { + "emuIRN": "101034", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/101034", + "curatorial_section": "Historic", + "object_number": "75-13-29D" + }, + { + "emuIRN": "308170", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/308170", + "curatorial_section": "Historic", + "object_number": "75-13-29E" + }, + { + "emuIRN": "212263", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/212263", + "curatorial_section": "Historic", + "object_number": "75-13-29F" + }, + { + "emuIRN": "171295", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/171295", + "curatorial_section": "Historic", + "object_number": "75-13-29G" + }, + { + "emuIRN": "252428", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/252428", + "curatorial_section": "Historic", + "object_number": "75-13-29H" + }, + { + "emuIRN": "33474", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/33474", + "curatorial_section": "Historic", + "object_number": "75-13-29I" + }, + { + "emuIRN": "64988", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/64988", + "curatorial_section": "Historic", + "object_number": "75-13-29J" + }, + { + "emuIRN": "149403", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/149403", + "curatorial_section": "Historic", + "object_number": "75-13-29K" + }, + { + "emuIRN": "192238", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/192238", + "curatorial_section": "Historic", + "object_number": "75-13-29L" + }, + { + "emuIRN": "87050", + "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/87050", + "curatorial_section": "Historic", + "object_number": "75-13-5A" + }, + { + "emuIRN": "241334", + "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", + "provenience": [ + "Hawthorne" + ], + "culture": [ + "American" + ], + "creator": [ + "Mattel, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/241334", + "curatorial_section": "Historic", + "object_number": "75-13-9D" + }, + { + "emuIRN": "77859", + "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/77859", + "curatorial_section": "Historic", + "object_number": "71-18-24" + }, + { + "emuIRN": "285019", + "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top", + "Musical Top" + ], + "url": "http://www.penn.museum/collections/object/285019", + "curatorial_section": "Historic", + "object_number": "71-18-27" + }, + { + "emuIRN": "37984", + "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/37984", + "curatorial_section": "Historic", + "object_number": "71-18-38" + }, + { + "emuIRN": "239276", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/239276", + "curatorial_section": "Historic", + "object_number": "71-18-28A" + }, + { + "emuIRN": "32312", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/32312", + "curatorial_section": "Historic", + "object_number": "71-18-28B" + }, + { + "emuIRN": "65727", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/65727", + "curatorial_section": "Historic", + "object_number": "71-18-28C" + }, + { + "emuIRN": "274339", + "description": "Wire puzzle with boot and cap.", + "provenience": [ + "Europe", + "France (uncertain)" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Wire Puzzle" + ], + "url": "http://www.penn.museum/collections/object/274339", + "curatorial_section": "Historic", + "object_number": "8812" + }, + { + "emuIRN": "159716", + "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Selchow & Richter" + ], + "material": [ + "Cardboard" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/159716", + "date_made_early": "1880", + "date_made": "9/7/1880", + "date_made_late": "1880", + "curatorial_section": "Historic", + "object_number": "15496" + }, + { + "emuIRN": "18643", + "description": "12 lithographed cards with pictures of children's games. Fused to 16555", + "technique": [ + "Lithograph" + ], + "provenience": [ + "France", + "Paris (France)" + ], + "iconography": [ + "Games" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Cards" + ], + "url": "http://www.penn.museum/collections/object/18643", + "curatorial_section": "Historic", + "object_number": "16231" + }, + { + "emuIRN": "34693", + "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Metal", + "Glass", + "Wood" + ], + "accession_credit_line": [ + "Gift of Mrs. John Harrison, 1894" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/34693", + "date_made_early": "1869", + "date_made": "c. 1894", + "date_made_late": "1894", + "curatorial_section": "Historic", + "object_number": "16401" + }, + { + "emuIRN": "93791", + "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", + "provenience": [ + "England", + "London" + ], + "culture": [ + "British" + ], + "accession_credit_line": [ + "Gift of Henry Jones, 1893" + ], + "object_name": [ + "Card Game", + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93791", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "16555" + }, + { + "emuIRN": "117728", + "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "creator": [ + "Donaldson Brothers" + ], + "material": [ + "Paper" + ], + "object_name": [ + "Puzzle", + "Advertisement" + ], + "url": "http://www.penn.museum/collections/object/117728", + "curatorial_section": "Historic", + "object_number": "18578" + }, + { + "emuIRN": "303943", + "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", + "provenience": [ + "Pennsylvania", + "Bucks County" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Glass", + "Metal", + "String", + "Cork" + ], + "accession_credit_line": [ + "Gift of Col. Henry D. Paxson, 1897" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/303943", + "curatorial_section": "Historic", + "object_number": "20067" + }, + { + "emuIRN": "287388", + "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Dr. Max Uhle, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/287388", + "curatorial_section": "Historic", + "object_number": "21082" + }, + { + "emuIRN": "140578", + "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/140578", + "curatorial_section": "Historic", + "object_number": "21458" + }, + { + "emuIRN": "120293", + "description": "Wood Board with instructions. Metal Arm.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120293", + "curatorial_section": "Historic", + "object_number": "21460" + }, + { + "emuIRN": "25280", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/25280", + "curatorial_section": "Historic", + "object_number": "21594A" + }, + { + "emuIRN": "406863", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/406863", + "curatorial_section": "Historic", + "object_number": "21594B" + }, + { + "emuIRN": "93703", + "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "The American Game and Puzzle Company" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93703", + "curatorial_section": "Historic", + "object_number": "29-191-146" + }, + { + "emuIRN": "64758", + "description": "Yamato Block Puzzle - 6 pieces of wood", + "provenience": [ + "Japan" + ], + "culture": [ + "Japanese" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64758", + "curatorial_section": "Historic", + "object_number": "29-191-159" + }, + { + "emuIRN": "64759", + "description": "See Dar Wonderful - 9 pieces of wood", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64759", + "curatorial_section": "Historic", + "object_number": "29-191-160" + }, + { + "emuIRN": "30391", + "description": "12 pieces", + "provenience": [ + "New York", + "New York City" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle", + "Reproduction (uncertain)" + ], + "url": "http://www.penn.museum/collections/object/30391", + "curatorial_section": "Historic", + "object_number": "29-191-161" + }, + { + "emuIRN": "22499", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/22499", + "other_numbers": [ + "4001" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157B" + }, + { + "emuIRN": "120252", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120252", + "other_numbers": [ + "4001?" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157C" + }, + { + "emuIRN": "156290", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/156290", + "other_numbers": [ + "4002" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157D" + }, + { + "emuIRN": "99398", + "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", + "provenience": [ + "Pennsylvania", + "Pittsburgh" + ], + "culture": [ + "American" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Charles Este, Jr., 1899" + ], + "object_name": [ + "Puzzle", + "Trick" + ], + "url": "http://www.penn.museum/collections/object/99398", + "curatorial_section": "Historic", + "object_number": "19783" + }, + { + "emuIRN": "130464", + "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/130464", + "native_name": [ + "Cartes a Jouer" + ], + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "7594" + }, + { + "emuIRN": "160242", + "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/160242", + "date_made_early": "1800", + "date_made": "1800-1899", + "date_made_late": "1899", + "curatorial_section": "Historic", + "object_number": "7595" + }, + { + "emuIRN": "157104", + "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1890" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "url": "http://www.penn.museum/collections/object/157104", + "date_made_early": "1800", + "date_made": "19th century", + "date_made_late": "1890", + "curatorial_section": "Historic", + "object_number": "7629" + }, + { + "emuIRN": "157105", + "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "C. L. Wust" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of J. D. Sergeant, 1890" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/157105", + "curatorial_section": "Historic", + "object_number": "7630" + }, + { + "emuIRN": "98559", + "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "B. Dondorf" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of W. Yorke Stevenson, 1891" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/98559", + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "other_numbers": [ + "27" + ], + "curatorial_section": "Historic", + "object_number": "7712" + }, + { + "emuIRN": "248509", + "description": "Card dominoes in box.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Card Game", + "Dominoe" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/248509", + "curatorial_section": "Historic", + "object_number": "8813" + }, + { + "emuIRN": "137944", + "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/137944", + "date_made_early": "1866", + "date_made": "c. 1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "9011" + }, + { + "emuIRN": "194220", + "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "creator": [ + "Watilliaux" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/194220", + "date_made_early": "1878", + "date_made": "1878", + "date_made_late": "1878", + "curatorial_section": "Historic", + "object_number": "9018" + }, + { + "emuIRN": "205296", + "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", + "technique": [ + "Printed" + ], + "provenience": [ + "Mexico (Central America)", + "Puebla (Mexican State)" + ], + "culture": [ + "Spanish" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of the US National Museum, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/205296", + "date_made_early": "1873", + "date_made": "1873-1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15360" + }, + { + "emuIRN": "21030", + "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Fortune Telling Cards" + ], + "url": "http://www.penn.museum/collections/object/21030", + "date_made_early": "1865", + "date_made": "pre 1890", + "date_made_late": "1890", + "other_numbers": [ + "43" + ], + "curatorial_section": "Historic", + "object_number": "15513" + }, + { + "emuIRN": "46932", + "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", + "provenience": [ + "Italy", + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/46932", + "date_made_early": "1880", + "date_made": "1880-1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15528" + }, + { + "emuIRN": "220035", + "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/220035", + "date_made_early": "29 Nov 1890", + "date_made": "11/29/1890", + "date_made_late": "29 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15529" + }, + { + "emuIRN": "220036", + "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/220036", + "date_made_early": "27 Oct 1890", + "date_made": "10/27/1890", + "date_made_late": "27 Oct 1890", + "other_numbers": [ + "42" + ], + "curatorial_section": "Historic", + "object_number": "15530" + }, + { + "emuIRN": "289473", + "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/289473", + "date_made_early": "17 Jan 1887", + "date_made": "1/17/1887", + "date_made_late": "17 Jan 1887", + "curatorial_section": "Historic", + "object_number": "15532" + }, + { + "emuIRN": "114394", + "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/114394", + "date_made_early": "1867", + "date_made": " pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15533" + }, + { + "emuIRN": "82994", + "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/82994", + "date_made_early": "17 Jun 1890", + "date_made": "6/17/1890", + "date_made_late": "17 Jun 1890", + "other_numbers": [ + "13" + ], + "curatorial_section": "Historic", + "object_number": "15534" + }, + { + "emuIRN": "233242", + "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/233242", + "date_made_early": "13 Mar 1891", + "date_made": "3/13/1891", + "date_made_late": "13 Mar 1891", + "other_numbers": [ + "5" + ], + "curatorial_section": "Historic", + "object_number": "15536" + }, + { + "emuIRN": "237987", + "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/237987", + "date_made_early": "13 Mar 1891", + "date_made": "pre 1892", + "date_made_late": "13 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15537" + }, + { + "emuIRN": "264110", + "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/264110", + "date_made_early": "1867", + "date_made": "pre 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15538" + }, + { + "emuIRN": "36188", + "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/36188", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15540" + }, + { + "emuIRN": "154504", + "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/154504", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15541" + }, + { + "emuIRN": "203963", + "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/203963", + "date_made_early": "27 Aug 1891", + "date_made": "8/27/1891", + "date_made_late": "27 Aug 1891", + "curatorial_section": "Historic", + "object_number": "15543" + }, + { + "emuIRN": "241994", + "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/241994", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15544" + }, + { + "emuIRN": "243680", + "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/243680", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15545" + }, + { + "emuIRN": "87145", + "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/87145", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15546" + }, + { + "emuIRN": "59271", + "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/59271", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15547" + }, + { + "emuIRN": "336096", + "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/336096", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15548" + }, + { + "emuIRN": "203973", + "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/203973", + "date_made_early": "09 Apr 1888", + "date_made": "4/9/1888", + "date_made_late": "09 Apr 1888", + "curatorial_section": "Historic", + "object_number": "15550" + }, + { + "emuIRN": "238541", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/238541", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15552" + }, + { + "emuIRN": "131933", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/131933", + "date_made_early": "16 Jun 1891", + "date_made": "6/16/1891", + "date_made_late": "16 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15553" + }, + { + "emuIRN": "158923", + "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/158923", + "date_made_early": "01 Jun 1891", + "date_made": "6/1/1891", + "date_made_late": "01 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15554" + }, + { + "emuIRN": "103187", + "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/103187", + "native_name": [ + "Tarocchino" + ], + "date_made_early": "03 Feb 1891", + "date_made": "2/3/1891", + "date_made_late": "03 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15555" + }, + { + "emuIRN": "178709", + "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", + "provenience": [ + "Italy", + "Povoletto-Udine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "F. L. Muccioli" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/178709", + "date_made_early": "09 May 1890", + "date_made": "5/9/1890", + "date_made_late": "09 May 1890", + "curatorial_section": "Historic", + "object_number": "15556" + }, + { + "emuIRN": "277112", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/277112", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15557" + }, + { + "emuIRN": "25552", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/25552", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15558" + }, + { + "emuIRN": "325482", + "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/325482", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1895", + "curatorial_section": "Historic", + "object_number": "15559" + }, + { + "emuIRN": "325483", + "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/325483", + "date_made_early": "12 Mar 2091", + "date_made": "3/12/91", + "date_made_late": "12 Mar 2091", + "curatorial_section": "Historic", + "object_number": "15560" + }, + { + "emuIRN": "48114", + "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/48114", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "22 Jun 1891", + "date_made": "6/22/1891", + "date_made_late": "22 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15561" + }, + { + "emuIRN": "167380", + "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/167380", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15562" + }, + { + "emuIRN": "321272", + "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Vincenzo Russo" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack", + "Neopolitan Pack" + ], + "url": "http://www.penn.museum/collections/object/321272", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "11 Feb 1891", + "date_made": "2/11/1891", + "date_made_late": "11 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15563" + }, + { + "emuIRN": "279915", + "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Luigi Pignalosa" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/279915", + "date_made_early": "14 Feb 1891", + "date_made": "2/14/1891", + "date_made_late": "14 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15564" + }, + { + "emuIRN": "157272", + "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/157272", + "date_made_early": "04 Oct 1888", + "date_made": "10/4/1888", + "date_made_late": "04 Oct 1888", + "curatorial_section": "Historic", + "object_number": "15566" + }, + { + "emuIRN": "88522", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/88522", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15567" + }, + { + "emuIRN": "177453", + "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/177453", + "date_made_early": "24 Mar 1891", + "date_made": "3/24/1891", + "date_made_late": "24 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15568" + }, + { + "emuIRN": "322855", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322855", + "date_made_early": "25 Nov 1890", + "date_made": "11/25/1890", + "date_made_late": "25 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15569" + }, + { + "emuIRN": "322856", + "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322856", + "date_made_early": "27 Jul 2091", + "date_made": "7/27/91", + "date_made_late": "27 Jul 2091", + "curatorial_section": "Historic", + "object_number": "15570" + }, + { + "emuIRN": "289232", + "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/289232", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15571" + }, + { + "emuIRN": "71704", + "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "L. Bartolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/71704", + "date_made_early": "02 Jul 1892", + "date_made": "7/2/1892", + "date_made_late": "02 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15572" + }, + { + "emuIRN": "341571", + "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Silvertrini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/341571", + "date_made_early": "01 Jul 1892", + "date_made": "7/1/1892", + "date_made_late": "01 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15573" + }, + { + "emuIRN": "231215", + "description": "Playing card deck - 44 cards", + "provenience": [ + "Italy", + "Bergamo" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Masenghini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Milanese Deck" + ], + "url": "http://www.penn.museum/collections/object/231215", + "curatorial_section": "Historic", + "object_number": "15575" + }, + { + "emuIRN": "290651", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", + "provenience": [ + "Italy", + "Trento" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giac. Bertoldi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/290651", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15577" + }, + { + "emuIRN": "116249", + "description": "Playing card deck - 40 cards, printed back with pink abstract designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/116249", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15578" + }, + { + "emuIRN": "76331", + "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/76331", + "date_made_early": "1867", + "date_made": "c.1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15579" + }, + { + "emuIRN": "76332", + "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/76332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15580" + }, + { + "emuIRN": "189908", + "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/189908", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15583" + }, + { + "emuIRN": "275719", + "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/275719", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15584" + }, + { + "emuIRN": "51584", + "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/51584", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15585" + }, + { + "emuIRN": "56004", + "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Crispolani" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/56004", + "date_made_early": "1850", + "date_made": "circa 1860", + "date_made_late": "1870", + "curatorial_section": "Historic", + "object_number": "15586" + }, + { + "emuIRN": "124979", + "description": "Playing card deck - Tarocchi/Tarot - 78 cards", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/124979", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15587" + }, + { + "emuIRN": "212458", + "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "url": "http://www.penn.museum/collections/object/212458", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15588" + }, + { + "emuIRN": "309331", + "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "G. C. Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309331", + "date_made_early": "30 Mar 1891", + "date_made": "3/30/1891", + "date_made_late": "30 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15589" + }, + { + "emuIRN": "309332", + "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15590" + }, + { + "emuIRN": "86979", + "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/86979", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15592" + }, + { + "emuIRN": "5817", + "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5817", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15594" + }, + { + "emuIRN": "170983", + "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Baby", + "Angel" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/170983", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15595" + }, + { + "emuIRN": "300071", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Tambourine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/300071", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15596" + }, + { + "emuIRN": "236603", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236603", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15597" + }, + { + "emuIRN": "141064", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141064", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15598" + }, + { + "emuIRN": "126294", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", + "provenience": [ + "Italy", + "Treviso" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Francesca Rino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/126294", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15599" + }, + { + "emuIRN": "309333", + "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", + "provenience": [ + "Italy", + "Parma (Italy)" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Faelli Carlo" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309333", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15600" + }, + { + "emuIRN": "261187", + "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Cassini Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Cucu" + ], + "url": "http://www.penn.museum/collections/object/261187", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15601" + }, + { + "emuIRN": "5818", + "description": "40 cards with wrapper. Printed back: green and blue plaid", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5818", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15604" + }, + { + "emuIRN": "236604", + "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236604", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15607" + }, + { + "emuIRN": "141065", + "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141065", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15608" + }, + { + "emuIRN": "319728", + "description": "Playing card deck - 40 cards", + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/319728", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15621" + }, + { + "emuIRN": "119150", + "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Florentine Pack" + ], + "url": "http://www.penn.museum/collections/object/119150", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15622" + }, + { + "emuIRN": "92457", + "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/92457", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15623" + }, + { + "emuIRN": "406753", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406753", + "curatorial_section": "Historic", + "object_number": "19124.15" + }, + { + "emuIRN": "406754", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406754", + "curatorial_section": "Historic", + "object_number": "19124.16" + }, + { + "emuIRN": "406755", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406755", + "curatorial_section": "Historic", + "object_number": "19124.17" + }, + { + "emuIRN": "406756", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406756", + "curatorial_section": "Historic", + "object_number": "19124.18" + }, + { + "emuIRN": "406757", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406757", + "curatorial_section": "Historic", + "object_number": "19124.19" + }, + { + "emuIRN": "406758", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406758", + "curatorial_section": "Historic", + "object_number": "19124.20" + }, + { + "emuIRN": "406759", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406759", + "curatorial_section": "Historic", + "object_number": "19124.21" + }, + { + "emuIRN": "406760", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406760", + "curatorial_section": "Historic", + "object_number": "19124.22" + }, + { + "emuIRN": "406761", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406761", + "curatorial_section": "Historic", + "object_number": "19124.23" + }, + { + "emuIRN": "406762", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406762", + "curatorial_section": "Historic", + "object_number": "19124.24" + }, + { + "emuIRN": "406763", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406763", + "curatorial_section": "Historic", + "object_number": "19124.25" + }, + { + "emuIRN": "406764", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406764", + "curatorial_section": "Historic", + "object_number": "19124.26" + }, + { + "emuIRN": "330556", + "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", + "provenience": [ + "Europe (uncertain)" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/330556", + "curatorial_section": "Historic", + "object_number": "29-191-128" + }, + { + "emuIRN": "321909", + "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/321909", + "curatorial_section": "Historic", + "object_number": "29-191-129" + }, + { + "emuIRN": "127367", + "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/127367", + "curatorial_section": "Historic", + "object_number": "29-191-227" + }, + { + "emuIRN": "203363", + "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", + "technique": [ + "Painted" + ], + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Paint", + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/203363", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15792" + }, + { + "emuIRN": "185526", + "description": "Red and gold sphere with small metall loop on 1 end", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of H. C. Thomson, 1894" + ], + "object_name": [ + "Whistling Top" + ], + "url": "http://www.penn.museum/collections/object/185526", + "curatorial_section": "Historic", + "object_number": "17817" + }, + { + "emuIRN": "59206", + "description": "Wood ball with metal spike. Cord for spinning", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top", + "Cord" + ], + "url": "http://www.penn.museum/collections/object/59206", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19214" + }, + { + "emuIRN": "186142", + "description": "Turned wood, bell-shaped with metal spike.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/186142", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19216" + }, + { + "emuIRN": "234646", + "description": "Toy rolling disc - wooden.", + "provenience": [ + "Italy" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Henry H. Giglioli, 1896" + ], + "object_name": [ + "Spinning Toy (uncertain)", + "Rolling Disc" + ], + "url": "http://www.penn.museum/collections/object/234646", + "curatorial_section": "Historic", + "object_number": "19217" + }, + { + "emuIRN": "134935", + "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal", + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1897" + ], + "object_name": [ + "Pinwheel" + ], + "url": "http://www.penn.museum/collections/object/134935", + "curatorial_section": "Historic", + "object_number": "20037" + }, + { + "emuIRN": "340545", + "description": "Turned wood ball with metal peg. Smaller version of 19214.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/340545", + "curatorial_section": "Historic", + "object_number": "19215A" + }, + { + "emuIRN": "273066", + "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Top Die", + "Teetotum" + ], + "url": "http://www.penn.museum/collections/object/273066", + "curatorial_section": "Historic", + "object_number": "71-18-6" + }, + { + "emuIRN": "146612", + "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", + "provenience": [ + "Japan" + ], + "material": [ + "Brass", + "Tin" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/146612", + "curatorial_section": "Historic", + "object_number": "71-18-11" + }, + { + "emuIRN": "264736", + "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top" + ], + "url": "http://www.penn.museum/collections/object/264736", + "curatorial_section": "Historic", + "object_number": "71-18-41" + }, + { + "emuIRN": "128464", + "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", + "provenience": [ + "West Germany" + ], + "culture": [ + "German" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/128464", + "curatorial_section": "Historic", + "object_number": "71-18-45" + }, + { + "emuIRN": "102950", + "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top", + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/102950", + "curatorial_section": "Historic", + "object_number": "71-18-50" + }, + { + "emuIRN": "215073", + "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Gyroscope" + ], + "url": "http://www.penn.museum/collections/object/215073", + "curatorial_section": "Historic", + "object_number": "71-18-53" + }, + { + "emuIRN": "281519", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/281519", + "curatorial_section": "Historic", + "object_number": "71-18-10A" + }, + { + "emuIRN": "132216", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/132216", + "curatorial_section": "Historic", + "object_number": "71-18-10B" + }, + { + "emuIRN": "222994", + "description": "Turned wooden spinnters. A-D have stems.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/222994", + "curatorial_section": "Historic", + "object_number": "71-18-17A" + }, + { + "emuIRN": "293378", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/293378", + "curatorial_section": "Historic", + "object_number": "71-18-17B" + }, + { + "emuIRN": "244262", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/244262", + "curatorial_section": "Historic", + "object_number": "71-18-17C" + }, + { + "emuIRN": "97422", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/97422", + "curatorial_section": "Historic", + "object_number": "71-18-17D" + }, + { + "emuIRN": "283240", + "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/283240", + "curatorial_section": "Historic", + "object_number": "71-18-17E" + }, + { + "emuIRN": "199531", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/199531", + "curatorial_section": "Historic", + "object_number": "71-18-20A" + }, + { + "emuIRN": "315942", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/315942", + "curatorial_section": "Historic", + "object_number": "71-18-20B" + }, + { + "emuIRN": "154811", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/154811", + "curatorial_section": "Historic", + "object_number": "71-18-20C" + }, + { + "emuIRN": "119329", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/119329", + "curatorial_section": "Historic", + "object_number": "71-18-20D" + }, + { + "emuIRN": "138169", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/138169", + "curatorial_section": "Historic", + "object_number": "71-18-20E" + }, + { + "emuIRN": "168699", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/168699", + "curatorial_section": "Historic", + "object_number": "71-18-20F" + }, + { + "emuIRN": "165852", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/165852", + "curatorial_section": "Historic", + "object_number": "71-18-20G" + }, + { + "emuIRN": "307682", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/307682", + "curatorial_section": "Historic", + "object_number": "71-18-20H" + }, + { + "emuIRN": "336448", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336448", + "curatorial_section": "Historic", + "object_number": "71-18-32A" + }, + { + "emuIRN": "181753", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/181753", + "curatorial_section": "Historic", + "object_number": "71-18-32B" + }, + { + "emuIRN": "277851", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/277851", + "curatorial_section": "Historic", + "object_number": "71-18-32C" + }, + { + "emuIRN": "44213", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/44213", + "curatorial_section": "Historic", + "object_number": "71-18-32D" + }, + { + "emuIRN": "343371", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/343371", + "curatorial_section": "Historic", + "object_number": "71-18-32E" + }, + { + "emuIRN": "405192", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "period": [ + "Modern" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/405192", + "curatorial_section": "Historic", + "object_number": "71-18-32F" + }, + { + "emuIRN": "174014", + "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinning Toy", + "Supported Top", + "Whistle" + ], + "url": "http://www.penn.museum/collections/object/174014", + "curatorial_section": "Historic", + "object_number": "71-18-72" + }, + { + "emuIRN": "54377", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/54377", + "curatorial_section": "Historic", + "object_number": "71-18-71A" + }, + { + "emuIRN": "336914", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336914", + "curatorial_section": "Historic", + "object_number": "71-18-71B" + }, + { + "emuIRN": "40527", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel", + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/40527", + "curatorial_section": "Historic", + "object_number": "71-18-71C" + }, + { + "emuIRN": "81633", + "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "iconography": [ + "Dog", + "Flag" + ], + "material": [ + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81633", + "other_numbers": [ + "533107" + ], + "curatorial_section": "Historic", + "object_number": "73-1-9" + }, + { + "emuIRN": "315995", + "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/315995", + "curatorial_section": "Historic", + "object_number": "73-1-11" + }, + { + "emuIRN": "81890", + "description": "Bi-colored light plastic top / yo-yo", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81890", + "curatorial_section": "Historic", + "object_number": "73-1-12" + }, + { + "emuIRN": "158974", + "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/158974", + "curatorial_section": "Historic", + "object_number": "73-1-21" + }, + { + "emuIRN": "270492", + "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/270492", + "curatorial_section": "Historic", + "object_number": "73-1-15B" + }, + { + "emuIRN": "122561", + "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "material": [ + "Plastic", + "Nylon" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/122561", + "curatorial_section": "Historic", + "object_number": "75-13-1" + }, + { + "emuIRN": "169135", + "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", + "provenience": [ + "Wisconsin", + "Milwaukee" + ], + "culture": [ + "American" + ], + "creator": [ + "Jak Pak Inc." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/169135", + "curatorial_section": "Historic", + "object_number": "75-13-18" + }, + { + "emuIRN": "265153", + "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", + "provenience": [ + "New York", + "Brooklyn" + ], + "culture": [ + "American" + ], + "creator": [ + "American Magnetop Corp." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/265153", + "curatorial_section": "Historic", + "object_number": "75-13-19" + }, + { + "emuIRN": "258185", + "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Giant Plastics Corp." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/258185", + "curatorial_section": "Historic", + "object_number": "75-13-21" + }, + { + "emuIRN": "112910", + "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", + "provenience": [ + "England" + ], + "culture": [ + "English" + ], + "creator": [ + "Christie & Jay, Ltd" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/112910", + "curatorial_section": "Historic", + "object_number": "75-13-30" + }, + { + "emuIRN": "206818", + "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", + "provenience": [ + "Tennessee", + "Nashville" + ], + "culture": [ + "American" + ], + "creator": [ + "Kusan, Inc" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Yo-Yo", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/206818", + "curatorial_section": "Historic", + "object_number": "75-13-32" + }, + { + "emuIRN": "320134", + "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", + "provenience": [ + "New York", + "Brooklyn" + ], + "creator": [ + "Shimmel" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/320134", + "curatorial_section": "Historic", + "object_number": "75-13-33" + }, + { + "emuIRN": "13411", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/13411", + "curatorial_section": "Historic", + "object_number": "75-13-10A" + }, + { + "emuIRN": "2151", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/2151", + "curatorial_section": "Historic", + "object_number": "75-13-10B" + }, + { + "emuIRN": "227620", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/227620", + "curatorial_section": "Historic", + "object_number": "75-13-10C" + }, + { + "emuIRN": "205966", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/205966", + "curatorial_section": "Historic", + "object_number": "75-13-29A" + }, + { + "emuIRN": "281691", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/281691", + "curatorial_section": "Historic", + "object_number": "75-13-29B" + }, + { + "emuIRN": "99171", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/99171", + "curatorial_section": "Historic", + "object_number": "75-13-29C" + }, + { + "emuIRN": "101034", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/101034", + "curatorial_section": "Historic", + "object_number": "75-13-29D" + }, + { + "emuIRN": "308170", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/308170", + "curatorial_section": "Historic", + "object_number": "75-13-29E" + }, + { + "emuIRN": "212263", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/212263", + "curatorial_section": "Historic", + "object_number": "75-13-29F" + }, + { + "emuIRN": "171295", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/171295", + "curatorial_section": "Historic", + "object_number": "75-13-29G" + }, + { + "emuIRN": "252428", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/252428", + "curatorial_section": "Historic", + "object_number": "75-13-29H" + }, + { + "emuIRN": "33474", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/33474", + "curatorial_section": "Historic", + "object_number": "75-13-29I" + }, + { + "emuIRN": "64988", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/64988", + "curatorial_section": "Historic", + "object_number": "75-13-29J" + }, + { + "emuIRN": "149403", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/149403", + "curatorial_section": "Historic", + "object_number": "75-13-29K" + }, + { + "emuIRN": "192238", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/192238", + "curatorial_section": "Historic", + "object_number": "75-13-29L" + }, + { + "emuIRN": "87050", + "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/87050", + "curatorial_section": "Historic", + "object_number": "75-13-5A" + }, + { + "emuIRN": "241334", + "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", + "provenience": [ + "Hawthorne" + ], + "culture": [ + "American" + ], + "creator": [ + "Mattel, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/241334", + "curatorial_section": "Historic", + "object_number": "75-13-9D" + }, + { + "emuIRN": "77859", + "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/77859", + "curatorial_section": "Historic", + "object_number": "71-18-24" + }, + { + "emuIRN": "285019", + "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top", + "Musical Top" + ], + "url": "http://www.penn.museum/collections/object/285019", + "curatorial_section": "Historic", + "object_number": "71-18-27" + }, + { + "emuIRN": "37984", + "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/37984", + "curatorial_section": "Historic", + "object_number": "71-18-38" + }, + { + "emuIRN": "239276", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/239276", + "curatorial_section": "Historic", + "object_number": "71-18-28A" + }, + { + "emuIRN": "32312", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/32312", + "curatorial_section": "Historic", + "object_number": "71-18-28B" + }, + { + "emuIRN": "65727", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/65727", + "curatorial_section": "Historic", + "object_number": "71-18-28C" + }, + { + "emuIRN": "274339", + "description": "Wire puzzle with boot and cap.", + "provenience": [ + "Europe", + "France (uncertain)" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Wire Puzzle" + ], + "url": "http://www.penn.museum/collections/object/274339", + "curatorial_section": "Historic", + "object_number": "8812" + }, + { + "emuIRN": "159716", + "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Selchow & Richter" + ], + "material": [ + "Cardboard" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/159716", + "date_made_early": "1880", + "date_made": "9/7/1880", + "date_made_late": "1880", + "curatorial_section": "Historic", + "object_number": "15496" + }, + { + "emuIRN": "18643", + "description": "12 lithographed cards with pictures of children's games. Fused to 16555", + "technique": [ + "Lithograph" + ], + "provenience": [ + "France", + "Paris (France)" + ], + "iconography": [ + "Games" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Cards" + ], + "url": "http://www.penn.museum/collections/object/18643", + "curatorial_section": "Historic", + "object_number": "16231" + }, + { + "emuIRN": "34693", + "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Metal", + "Glass", + "Wood" + ], + "accession_credit_line": [ + "Gift of Mrs. John Harrison, 1894" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/34693", + "date_made_early": "1869", + "date_made": "c. 1894", + "date_made_late": "1894", + "curatorial_section": "Historic", + "object_number": "16401" + }, + { + "emuIRN": "93791", + "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", + "provenience": [ + "England", + "London" + ], + "culture": [ + "British" + ], + "accession_credit_line": [ + "Gift of Henry Jones, 1893" + ], + "object_name": [ + "Card Game", + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93791", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "16555" + }, + { + "emuIRN": "117728", + "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "creator": [ + "Donaldson Brothers" + ], + "material": [ + "Paper" + ], + "object_name": [ + "Puzzle", + "Advertisement" + ], + "url": "http://www.penn.museum/collections/object/117728", + "curatorial_section": "Historic", + "object_number": "18578" + }, + { + "emuIRN": "303943", + "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", + "provenience": [ + "Pennsylvania", + "Bucks County" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Glass", + "Metal", + "String", + "Cork" + ], + "accession_credit_line": [ + "Gift of Col. Henry D. Paxson, 1897" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/303943", + "curatorial_section": "Historic", + "object_number": "20067" + }, + { + "emuIRN": "287388", + "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Dr. Max Uhle, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/287388", + "curatorial_section": "Historic", + "object_number": "21082" + }, + { + "emuIRN": "140578", + "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/140578", + "curatorial_section": "Historic", + "object_number": "21458" + }, + { + "emuIRN": "120293", + "description": "Wood Board with instructions. Metal Arm.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120293", + "curatorial_section": "Historic", + "object_number": "21460" + }, + { + "emuIRN": "25280", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/25280", + "curatorial_section": "Historic", + "object_number": "21594A" + }, + { + "emuIRN": "406863", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/406863", + "curatorial_section": "Historic", + "object_number": "21594B" + }, + { + "emuIRN": "93703", + "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "The American Game and Puzzle Company" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93703", + "curatorial_section": "Historic", + "object_number": "29-191-146" + }, + { + "emuIRN": "64758", + "description": "Yamato Block Puzzle - 6 pieces of wood", + "provenience": [ + "Japan" + ], + "culture": [ + "Japanese" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64758", + "curatorial_section": "Historic", + "object_number": "29-191-159" + }, + { + "emuIRN": "64759", + "description": "See Dar Wonderful - 9 pieces of wood", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64759", + "curatorial_section": "Historic", + "object_number": "29-191-160" + }, + { + "emuIRN": "30391", + "description": "12 pieces", + "provenience": [ + "New York", + "New York City" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle", + "Reproduction (uncertain)" + ], + "url": "http://www.penn.museum/collections/object/30391", + "curatorial_section": "Historic", + "object_number": "29-191-161" + }, + { + "emuIRN": "22499", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/22499", + "other_numbers": [ + "4001" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157B" + }, + { + "emuIRN": "120252", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120252", + "other_numbers": [ + "4001?" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157C" + }, + { + "emuIRN": "156290", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/156290", + "other_numbers": [ + "4002" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157D" + }, + { + "emuIRN": "99398", + "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", + "provenience": [ + "Pennsylvania", + "Pittsburgh" + ], + "culture": [ + "American" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Charles Este, Jr., 1899" + ], + "object_name": [ + "Puzzle", + "Trick" + ], + "url": "http://www.penn.museum/collections/object/99398", + "curatorial_section": "Historic", + "object_number": "19783" + }, + { + "emuIRN": "130464", + "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/130464", + "native_name": [ + "Cartes a Jouer" + ], + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "7594" + }, + { + "emuIRN": "160242", + "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/160242", + "date_made_early": "1800", + "date_made": "1800-1899", + "date_made_late": "1899", + "curatorial_section": "Historic", + "object_number": "7595" + }, + { + "emuIRN": "157104", + "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1890" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "url": "http://www.penn.museum/collections/object/157104", + "date_made_early": "1800", + "date_made": "19th century", + "date_made_late": "1890", + "curatorial_section": "Historic", + "object_number": "7629" + }, + { + "emuIRN": "157105", + "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "C. L. Wust" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of J. D. Sergeant, 1890" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/157105", + "curatorial_section": "Historic", + "object_number": "7630" + }, + { + "emuIRN": "98559", + "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "B. Dondorf" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of W. Yorke Stevenson, 1891" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/98559", + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "other_numbers": [ + "27" + ], + "curatorial_section": "Historic", + "object_number": "7712" + }, + { + "emuIRN": "248509", + "description": "Card dominoes in box.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Card Game", + "Dominoe" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/248509", + "curatorial_section": "Historic", + "object_number": "8813" + }, + { + "emuIRN": "137944", + "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/137944", + "date_made_early": "1866", + "date_made": "c. 1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "9011" + }, + { + "emuIRN": "194220", + "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "creator": [ + "Watilliaux" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/194220", + "date_made_early": "1878", + "date_made": "1878", + "date_made_late": "1878", + "curatorial_section": "Historic", + "object_number": "9018" + }, + { + "emuIRN": "205296", + "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", + "technique": [ + "Printed" + ], + "provenience": [ + "Mexico (Central America)", + "Puebla (Mexican State)" + ], + "culture": [ + "Spanish" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of the US National Museum, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/205296", + "date_made_early": "1873", + "date_made": "1873-1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15360" + }, + { + "emuIRN": "21030", + "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Fortune Telling Cards" + ], + "url": "http://www.penn.museum/collections/object/21030", + "date_made_early": "1865", + "date_made": "pre 1890", + "date_made_late": "1890", + "other_numbers": [ + "43" + ], + "curatorial_section": "Historic", + "object_number": "15513" + }, + { + "emuIRN": "46932", + "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", + "provenience": [ + "Italy", + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/46932", + "date_made_early": "1880", + "date_made": "1880-1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15528" + }, + { + "emuIRN": "220035", + "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/220035", + "date_made_early": "29 Nov 1890", + "date_made": "11/29/1890", + "date_made_late": "29 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15529" + }, + { + "emuIRN": "220036", + "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/220036", + "date_made_early": "27 Oct 1890", + "date_made": "10/27/1890", + "date_made_late": "27 Oct 1890", + "other_numbers": [ + "42" + ], + "curatorial_section": "Historic", + "object_number": "15530" + }, + { + "emuIRN": "289473", + "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/289473", + "date_made_early": "17 Jan 1887", + "date_made": "1/17/1887", + "date_made_late": "17 Jan 1887", + "curatorial_section": "Historic", + "object_number": "15532" + }, + { + "emuIRN": "114394", + "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/114394", + "date_made_early": "1867", + "date_made": " pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15533" + }, + { + "emuIRN": "82994", + "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/82994", + "date_made_early": "17 Jun 1890", + "date_made": "6/17/1890", + "date_made_late": "17 Jun 1890", + "other_numbers": [ + "13" + ], + "curatorial_section": "Historic", + "object_number": "15534" + }, + { + "emuIRN": "233242", + "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/233242", + "date_made_early": "13 Mar 1891", + "date_made": "3/13/1891", + "date_made_late": "13 Mar 1891", + "other_numbers": [ + "5" + ], + "curatorial_section": "Historic", + "object_number": "15536" + }, + { + "emuIRN": "237987", + "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/237987", + "date_made_early": "13 Mar 1891", + "date_made": "pre 1892", + "date_made_late": "13 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15537" + }, + { + "emuIRN": "264110", + "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/264110", + "date_made_early": "1867", + "date_made": "pre 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15538" + }, + { + "emuIRN": "36188", + "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/36188", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15540" + }, + { + "emuIRN": "154504", + "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/154504", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15541" + }, + { + "emuIRN": "203963", + "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/203963", + "date_made_early": "27 Aug 1891", + "date_made": "8/27/1891", + "date_made_late": "27 Aug 1891", + "curatorial_section": "Historic", + "object_number": "15543" + }, + { + "emuIRN": "241994", + "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/241994", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15544" + }, + { + "emuIRN": "243680", + "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/243680", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15545" + }, + { + "emuIRN": "87145", + "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/87145", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15546" + }, + { + "emuIRN": "59271", + "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/59271", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15547" + }, + { + "emuIRN": "336096", + "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/336096", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15548" + }, + { + "emuIRN": "203973", + "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/203973", + "date_made_early": "09 Apr 1888", + "date_made": "4/9/1888", + "date_made_late": "09 Apr 1888", + "curatorial_section": "Historic", + "object_number": "15550" + }, + { + "emuIRN": "238541", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/238541", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15552" + }, + { + "emuIRN": "131933", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/131933", + "date_made_early": "16 Jun 1891", + "date_made": "6/16/1891", + "date_made_late": "16 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15553" + }, + { + "emuIRN": "158923", + "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/158923", + "date_made_early": "01 Jun 1891", + "date_made": "6/1/1891", + "date_made_late": "01 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15554" + }, + { + "emuIRN": "103187", + "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/103187", + "native_name": [ + "Tarocchino" + ], + "date_made_early": "03 Feb 1891", + "date_made": "2/3/1891", + "date_made_late": "03 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15555" + }, + { + "emuIRN": "178709", + "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", + "provenience": [ + "Italy", + "Povoletto-Udine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "F. L. Muccioli" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/178709", + "date_made_early": "09 May 1890", + "date_made": "5/9/1890", + "date_made_late": "09 May 1890", + "curatorial_section": "Historic", + "object_number": "15556" + }, + { + "emuIRN": "277112", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/277112", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15557" + }, + { + "emuIRN": "25552", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/25552", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15558" + }, + { + "emuIRN": "325482", + "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/325482", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1895", + "curatorial_section": "Historic", + "object_number": "15559" + }, + { + "emuIRN": "325483", + "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/325483", + "date_made_early": "12 Mar 2091", + "date_made": "3/12/91", + "date_made_late": "12 Mar 2091", + "curatorial_section": "Historic", + "object_number": "15560" + }, + { + "emuIRN": "48114", + "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/48114", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "22 Jun 1891", + "date_made": "6/22/1891", + "date_made_late": "22 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15561" + }, + { + "emuIRN": "167380", + "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/167380", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15562" + }, + { + "emuIRN": "321272", + "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Vincenzo Russo" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack", + "Neopolitan Pack" + ], + "url": "http://www.penn.museum/collections/object/321272", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "11 Feb 1891", + "date_made": "2/11/1891", + "date_made_late": "11 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15563" + }, + { + "emuIRN": "279915", + "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Luigi Pignalosa" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/279915", + "date_made_early": "14 Feb 1891", + "date_made": "2/14/1891", + "date_made_late": "14 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15564" + }, + { + "emuIRN": "157272", + "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/157272", + "date_made_early": "04 Oct 1888", + "date_made": "10/4/1888", + "date_made_late": "04 Oct 1888", + "curatorial_section": "Historic", + "object_number": "15566" + }, + { + "emuIRN": "88522", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/88522", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15567" + }, + { + "emuIRN": "177453", + "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/177453", + "date_made_early": "24 Mar 1891", + "date_made": "3/24/1891", + "date_made_late": "24 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15568" + }, + { + "emuIRN": "322855", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322855", + "date_made_early": "25 Nov 1890", + "date_made": "11/25/1890", + "date_made_late": "25 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15569" + }, + { + "emuIRN": "322856", + "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322856", + "date_made_early": "27 Jul 2091", + "date_made": "7/27/91", + "date_made_late": "27 Jul 2091", + "curatorial_section": "Historic", + "object_number": "15570" + }, + { + "emuIRN": "289232", + "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/289232", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15571" + }, + { + "emuIRN": "71704", + "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "L. Bartolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/71704", + "date_made_early": "02 Jul 1892", + "date_made": "7/2/1892", + "date_made_late": "02 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15572" + }, + { + "emuIRN": "341571", + "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Silvertrini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/341571", + "date_made_early": "01 Jul 1892", + "date_made": "7/1/1892", + "date_made_late": "01 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15573" + }, + { + "emuIRN": "231215", + "description": "Playing card deck - 44 cards", + "provenience": [ + "Italy", + "Bergamo" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Masenghini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Milanese Deck" + ], + "url": "http://www.penn.museum/collections/object/231215", + "curatorial_section": "Historic", + "object_number": "15575" + }, + { + "emuIRN": "290651", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", + "provenience": [ + "Italy", + "Trento" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giac. Bertoldi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/290651", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15577" + }, + { + "emuIRN": "116249", + "description": "Playing card deck - 40 cards, printed back with pink abstract designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/116249", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15578" + }, + { + "emuIRN": "76331", + "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/76331", + "date_made_early": "1867", + "date_made": "c.1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15579" + }, + { + "emuIRN": "76332", + "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/76332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15580" + }, + { + "emuIRN": "189908", + "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/189908", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15583" + }, + { + "emuIRN": "275719", + "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/275719", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15584" + }, + { + "emuIRN": "51584", + "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/51584", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15585" + }, + { + "emuIRN": "56004", + "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Crispolani" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/56004", + "date_made_early": "1850", + "date_made": "circa 1860", + "date_made_late": "1870", + "curatorial_section": "Historic", + "object_number": "15586" + }, + { + "emuIRN": "124979", + "description": "Playing card deck - Tarocchi/Tarot - 78 cards", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/124979", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15587" + }, + { + "emuIRN": "212458", + "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "url": "http://www.penn.museum/collections/object/212458", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15588" + }, + { + "emuIRN": "309331", + "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "G. C. Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309331", + "date_made_early": "30 Mar 1891", + "date_made": "3/30/1891", + "date_made_late": "30 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15589" + }, + { + "emuIRN": "309332", + "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15590" + }, + { + "emuIRN": "86979", + "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/86979", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15592" + }, + { + "emuIRN": "5817", + "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5817", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15594" + }, + { + "emuIRN": "170983", + "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Baby", + "Angel" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/170983", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15595" + }, + { + "emuIRN": "300071", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Tambourine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/300071", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15596" + }, + { + "emuIRN": "236603", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236603", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15597" + }, + { + "emuIRN": "141064", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141064", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15598" + }, + { + "emuIRN": "126294", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", + "provenience": [ + "Italy", + "Treviso" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Francesca Rino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/126294", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15599" + }, + { + "emuIRN": "309333", + "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", + "provenience": [ + "Italy", + "Parma (Italy)" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Faelli Carlo" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309333", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15600" + }, + { + "emuIRN": "261187", + "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Cassini Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Cucu" + ], + "url": "http://www.penn.museum/collections/object/261187", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15601" + }, + { + "emuIRN": "5818", + "description": "40 cards with wrapper. Printed back: green and blue plaid", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5818", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15604" + }, + { + "emuIRN": "236604", + "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236604", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15607" + }, + { + "emuIRN": "141065", + "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141065", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15608" + }, + { + "emuIRN": "319728", + "description": "Playing card deck - 40 cards", + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/319728", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15621" + }, + { + "emuIRN": "119150", + "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Florentine Pack" + ], + "url": "http://www.penn.museum/collections/object/119150", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15622" + }, + { + "emuIRN": "92457", + "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/92457", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15623" + }, + { + "emuIRN": "406753", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406753", + "curatorial_section": "Historic", + "object_number": "19124.15" + }, + { + "emuIRN": "406754", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406754", + "curatorial_section": "Historic", + "object_number": "19124.16" + }, + { + "emuIRN": "406755", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406755", + "curatorial_section": "Historic", + "object_number": "19124.17" + }, + { + "emuIRN": "406756", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406756", + "curatorial_section": "Historic", + "object_number": "19124.18" + }, + { + "emuIRN": "406757", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406757", + "curatorial_section": "Historic", + "object_number": "19124.19" + }, + { + "emuIRN": "406758", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406758", + "curatorial_section": "Historic", + "object_number": "19124.20" + }, + { + "emuIRN": "406759", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406759", + "curatorial_section": "Historic", + "object_number": "19124.21" + }, + { + "emuIRN": "406760", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406760", + "curatorial_section": "Historic", + "object_number": "19124.22" + }, + { + "emuIRN": "406761", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406761", + "curatorial_section": "Historic", + "object_number": "19124.23" + }, + { + "emuIRN": "406762", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406762", + "curatorial_section": "Historic", + "object_number": "19124.24" + }, + { + "emuIRN": "406763", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406763", + "curatorial_section": "Historic", + "object_number": "19124.25" + }, + { + "emuIRN": "406764", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406764", + "curatorial_section": "Historic", + "object_number": "19124.26" + }, + { + "emuIRN": "330556", + "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", + "provenience": [ + "Europe (uncertain)" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/330556", + "curatorial_section": "Historic", + "object_number": "29-191-128" + }, + { + "emuIRN": "321909", + "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/321909", + "curatorial_section": "Historic", + "object_number": "29-191-129" + }, + { + "emuIRN": "127367", + "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/127367", + "curatorial_section": "Historic", + "object_number": "29-191-227" + }, + { + "emuIRN": "203363", + "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", + "technique": [ + "Painted" + ], + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Paint", + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/203363", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15792" + }, + { + "emuIRN": "185526", + "description": "Red and gold sphere with small metall loop on 1 end", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of H. C. Thomson, 1894" + ], + "object_name": [ + "Whistling Top" + ], + "url": "http://www.penn.museum/collections/object/185526", + "curatorial_section": "Historic", + "object_number": "17817" + }, + { + "emuIRN": "59206", + "description": "Wood ball with metal spike. Cord for spinning", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top", + "Cord" + ], + "url": "http://www.penn.museum/collections/object/59206", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19214" + }, + { + "emuIRN": "186142", + "description": "Turned wood, bell-shaped with metal spike.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/186142", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19216" + }, + { + "emuIRN": "234646", + "description": "Toy rolling disc - wooden.", + "provenience": [ + "Italy" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Henry H. Giglioli, 1896" + ], + "object_name": [ + "Spinning Toy (uncertain)", + "Rolling Disc" + ], + "url": "http://www.penn.museum/collections/object/234646", + "curatorial_section": "Historic", + "object_number": "19217" + }, + { + "emuIRN": "134935", + "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal", + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1897" + ], + "object_name": [ + "Pinwheel" + ], + "url": "http://www.penn.museum/collections/object/134935", + "curatorial_section": "Historic", + "object_number": "20037" + }, + { + "emuIRN": "340545", + "description": "Turned wood ball with metal peg. Smaller version of 19214.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/340545", + "curatorial_section": "Historic", + "object_number": "19215A" + }, + { + "emuIRN": "273066", + "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Top Die", + "Teetotum" + ], + "url": "http://www.penn.museum/collections/object/273066", + "curatorial_section": "Historic", + "object_number": "71-18-6" + }, + { + "emuIRN": "146612", + "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", + "provenience": [ + "Japan" + ], + "material": [ + "Brass", + "Tin" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/146612", + "curatorial_section": "Historic", + "object_number": "71-18-11" + }, + { + "emuIRN": "264736", + "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top" + ], + "url": "http://www.penn.museum/collections/object/264736", + "curatorial_section": "Historic", + "object_number": "71-18-41" + }, + { + "emuIRN": "128464", + "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", + "provenience": [ + "West Germany" + ], + "culture": [ + "German" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/128464", + "curatorial_section": "Historic", + "object_number": "71-18-45" + }, + { + "emuIRN": "102950", + "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top", + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/102950", + "curatorial_section": "Historic", + "object_number": "71-18-50" + }, + { + "emuIRN": "215073", + "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Gyroscope" + ], + "url": "http://www.penn.museum/collections/object/215073", + "curatorial_section": "Historic", + "object_number": "71-18-53" + }, + { + "emuIRN": "281519", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/281519", + "curatorial_section": "Historic", + "object_number": "71-18-10A" + }, + { + "emuIRN": "132216", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/132216", + "curatorial_section": "Historic", + "object_number": "71-18-10B" + }, + { + "emuIRN": "222994", + "description": "Turned wooden spinnters. A-D have stems.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/222994", + "curatorial_section": "Historic", + "object_number": "71-18-17A" + }, + { + "emuIRN": "293378", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/293378", + "curatorial_section": "Historic", + "object_number": "71-18-17B" + }, + { + "emuIRN": "244262", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/244262", + "curatorial_section": "Historic", + "object_number": "71-18-17C" + }, + { + "emuIRN": "97422", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/97422", + "curatorial_section": "Historic", + "object_number": "71-18-17D" + }, + { + "emuIRN": "283240", + "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/283240", + "curatorial_section": "Historic", + "object_number": "71-18-17E" + }, + { + "emuIRN": "199531", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/199531", + "curatorial_section": "Historic", + "object_number": "71-18-20A" + }, + { + "emuIRN": "315942", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/315942", + "curatorial_section": "Historic", + "object_number": "71-18-20B" + }, + { + "emuIRN": "154811", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/154811", + "curatorial_section": "Historic", + "object_number": "71-18-20C" + }, + { + "emuIRN": "119329", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/119329", + "curatorial_section": "Historic", + "object_number": "71-18-20D" + }, + { + "emuIRN": "138169", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/138169", + "curatorial_section": "Historic", + "object_number": "71-18-20E" + }, + { + "emuIRN": "168699", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/168699", + "curatorial_section": "Historic", + "object_number": "71-18-20F" + }, + { + "emuIRN": "165852", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/165852", + "curatorial_section": "Historic", + "object_number": "71-18-20G" + }, + { + "emuIRN": "307682", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/307682", + "curatorial_section": "Historic", + "object_number": "71-18-20H" + }, + { + "emuIRN": "336448", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336448", + "curatorial_section": "Historic", + "object_number": "71-18-32A" + }, + { + "emuIRN": "181753", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/181753", + "curatorial_section": "Historic", + "object_number": "71-18-32B" + }, + { + "emuIRN": "277851", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/277851", + "curatorial_section": "Historic", + "object_number": "71-18-32C" + }, + { + "emuIRN": "44213", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/44213", + "curatorial_section": "Historic", + "object_number": "71-18-32D" + }, + { + "emuIRN": "343371", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/343371", + "curatorial_section": "Historic", + "object_number": "71-18-32E" + }, + { + "emuIRN": "405192", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "period": [ + "Modern" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/405192", + "curatorial_section": "Historic", + "object_number": "71-18-32F" + }, + { + "emuIRN": "174014", + "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinning Toy", + "Supported Top", + "Whistle" + ], + "url": "http://www.penn.museum/collections/object/174014", + "curatorial_section": "Historic", + "object_number": "71-18-72" + }, + { + "emuIRN": "54377", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/54377", + "curatorial_section": "Historic", + "object_number": "71-18-71A" + }, + { + "emuIRN": "336914", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336914", + "curatorial_section": "Historic", + "object_number": "71-18-71B" + }, + { + "emuIRN": "40527", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel", + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/40527", + "curatorial_section": "Historic", + "object_number": "71-18-71C" + }, + { + "emuIRN": "81633", + "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "iconography": [ + "Dog", + "Flag" + ], + "material": [ + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81633", + "other_numbers": [ + "533107" + ], + "curatorial_section": "Historic", + "object_number": "73-1-9" + }, + { + "emuIRN": "315995", + "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/315995", + "curatorial_section": "Historic", + "object_number": "73-1-11" + }, + { + "emuIRN": "81890", + "description": "Bi-colored light plastic top / yo-yo", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81890", + "curatorial_section": "Historic", + "object_number": "73-1-12" + }, + { + "emuIRN": "158974", + "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/158974", + "curatorial_section": "Historic", + "object_number": "73-1-21" + }, + { + "emuIRN": "270492", + "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/270492", + "curatorial_section": "Historic", + "object_number": "73-1-15B" + }, + { + "emuIRN": "122561", + "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "material": [ + "Plastic", + "Nylon" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/122561", + "curatorial_section": "Historic", + "object_number": "75-13-1" + }, + { + "emuIRN": "169135", + "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", + "provenience": [ + "Wisconsin", + "Milwaukee" + ], + "culture": [ + "American" + ], + "creator": [ + "Jak Pak Inc." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/169135", + "curatorial_section": "Historic", + "object_number": "75-13-18" + }, + { + "emuIRN": "265153", + "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", + "provenience": [ + "New York", + "Brooklyn" + ], + "culture": [ + "American" + ], + "creator": [ + "American Magnetop Corp." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/265153", + "curatorial_section": "Historic", + "object_number": "75-13-19" + }, + { + "emuIRN": "258185", + "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Giant Plastics Corp." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/258185", + "curatorial_section": "Historic", + "object_number": "75-13-21" + }, + { + "emuIRN": "112910", + "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", + "provenience": [ + "England" + ], + "culture": [ + "English" + ], + "creator": [ + "Christie & Jay, Ltd" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/112910", + "curatorial_section": "Historic", + "object_number": "75-13-30" + }, + { + "emuIRN": "206818", + "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", + "provenience": [ + "Tennessee", + "Nashville" + ], + "culture": [ + "American" + ], + "creator": [ + "Kusan, Inc" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Yo-Yo", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/206818", + "curatorial_section": "Historic", + "object_number": "75-13-32" + }, + { + "emuIRN": "320134", + "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", + "provenience": [ + "New York", + "Brooklyn" + ], + "creator": [ + "Shimmel" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/320134", + "curatorial_section": "Historic", + "object_number": "75-13-33" + }, + { + "emuIRN": "13411", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/13411", + "curatorial_section": "Historic", + "object_number": "75-13-10A" + }, + { + "emuIRN": "2151", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/2151", + "curatorial_section": "Historic", + "object_number": "75-13-10B" + }, + { + "emuIRN": "227620", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/227620", + "curatorial_section": "Historic", + "object_number": "75-13-10C" + }, + { + "emuIRN": "205966", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/205966", + "curatorial_section": "Historic", + "object_number": "75-13-29A" + }, + { + "emuIRN": "281691", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/281691", + "curatorial_section": "Historic", + "object_number": "75-13-29B" + }, + { + "emuIRN": "99171", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/99171", + "curatorial_section": "Historic", + "object_number": "75-13-29C" + }, + { + "emuIRN": "101034", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/101034", + "curatorial_section": "Historic", + "object_number": "75-13-29D" + }, + { + "emuIRN": "308170", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/308170", + "curatorial_section": "Historic", + "object_number": "75-13-29E" + }, + { + "emuIRN": "212263", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/212263", + "curatorial_section": "Historic", + "object_number": "75-13-29F" + }, + { + "emuIRN": "171295", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/171295", + "curatorial_section": "Historic", + "object_number": "75-13-29G" + }, + { + "emuIRN": "252428", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/252428", + "curatorial_section": "Historic", + "object_number": "75-13-29H" + }, + { + "emuIRN": "33474", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/33474", + "curatorial_section": "Historic", + "object_number": "75-13-29I" + }, + { + "emuIRN": "64988", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/64988", + "curatorial_section": "Historic", + "object_number": "75-13-29J" + }, + { + "emuIRN": "149403", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/149403", + "curatorial_section": "Historic", + "object_number": "75-13-29K" + }, + { + "emuIRN": "192238", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/192238", + "curatorial_section": "Historic", + "object_number": "75-13-29L" + }, + { + "emuIRN": "87050", + "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/87050", + "curatorial_section": "Historic", + "object_number": "75-13-5A" + }, + { + "emuIRN": "241334", + "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", + "provenience": [ + "Hawthorne" + ], + "culture": [ + "American" + ], + "creator": [ + "Mattel, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/241334", + "curatorial_section": "Historic", + "object_number": "75-13-9D" + }, + { + "emuIRN": "77859", + "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/77859", + "curatorial_section": "Historic", + "object_number": "71-18-24" + }, + { + "emuIRN": "285019", + "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top", + "Musical Top" + ], + "url": "http://www.penn.museum/collections/object/285019", + "curatorial_section": "Historic", + "object_number": "71-18-27" + }, + { + "emuIRN": "37984", + "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/37984", + "curatorial_section": "Historic", + "object_number": "71-18-38" + }, + { + "emuIRN": "239276", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/239276", + "curatorial_section": "Historic", + "object_number": "71-18-28A" + }, + { + "emuIRN": "32312", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/32312", + "curatorial_section": "Historic", + "object_number": "71-18-28B" + }, + { + "emuIRN": "65727", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/65727", + "curatorial_section": "Historic", + "object_number": "71-18-28C" + }, + { + "emuIRN": "274339", + "description": "Wire puzzle with boot and cap.", + "provenience": [ + "Europe", + "France (uncertain)" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Wire Puzzle" + ], + "url": "http://www.penn.museum/collections/object/274339", + "curatorial_section": "Historic", + "object_number": "8812" + }, + { + "emuIRN": "159716", + "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Selchow & Richter" + ], + "material": [ + "Cardboard" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/159716", + "date_made_early": "1880", + "date_made": "9/7/1880", + "date_made_late": "1880", + "curatorial_section": "Historic", + "object_number": "15496" + }, + { + "emuIRN": "18643", + "description": "12 lithographed cards with pictures of children's games. Fused to 16555", + "technique": [ + "Lithograph" + ], + "provenience": [ + "France", + "Paris (France)" + ], + "iconography": [ + "Games" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Cards" + ], + "url": "http://www.penn.museum/collections/object/18643", + "curatorial_section": "Historic", + "object_number": "16231" + }, + { + "emuIRN": "34693", + "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Metal", + "Glass", + "Wood" + ], + "accession_credit_line": [ + "Gift of Mrs. John Harrison, 1894" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/34693", + "date_made_early": "1869", + "date_made": "c. 1894", + "date_made_late": "1894", + "curatorial_section": "Historic", + "object_number": "16401" + }, + { + "emuIRN": "93791", + "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", + "provenience": [ + "England", + "London" + ], + "culture": [ + "British" + ], + "accession_credit_line": [ + "Gift of Henry Jones, 1893" + ], + "object_name": [ + "Card Game", + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93791", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "16555" + }, + { + "emuIRN": "117728", + "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "creator": [ + "Donaldson Brothers" + ], + "material": [ + "Paper" + ], + "object_name": [ + "Puzzle", + "Advertisement" + ], + "url": "http://www.penn.museum/collections/object/117728", + "curatorial_section": "Historic", + "object_number": "18578" + }, + { + "emuIRN": "303943", + "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", + "provenience": [ + "Pennsylvania", + "Bucks County" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Glass", + "Metal", + "String", + "Cork" + ], + "accession_credit_line": [ + "Gift of Col. Henry D. Paxson, 1897" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/303943", + "curatorial_section": "Historic", + "object_number": "20067" + }, + { + "emuIRN": "287388", + "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Dr. Max Uhle, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/287388", + "curatorial_section": "Historic", + "object_number": "21082" + }, + { + "emuIRN": "140578", + "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/140578", + "curatorial_section": "Historic", + "object_number": "21458" + }, + { + "emuIRN": "120293", + "description": "Wood Board with instructions. Metal Arm.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120293", + "curatorial_section": "Historic", + "object_number": "21460" + }, + { + "emuIRN": "25280", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/25280", + "curatorial_section": "Historic", + "object_number": "21594A" + }, + { + "emuIRN": "406863", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/406863", + "curatorial_section": "Historic", + "object_number": "21594B" + }, + { + "emuIRN": "93703", + "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "The American Game and Puzzle Company" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93703", + "curatorial_section": "Historic", + "object_number": "29-191-146" + }, + { + "emuIRN": "64758", + "description": "Yamato Block Puzzle - 6 pieces of wood", + "provenience": [ + "Japan" + ], + "culture": [ + "Japanese" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64758", + "curatorial_section": "Historic", + "object_number": "29-191-159" + }, + { + "emuIRN": "64759", + "description": "See Dar Wonderful - 9 pieces of wood", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64759", + "curatorial_section": "Historic", + "object_number": "29-191-160" + }, + { + "emuIRN": "30391", + "description": "12 pieces", + "provenience": [ + "New York", + "New York City" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle", + "Reproduction (uncertain)" + ], + "url": "http://www.penn.museum/collections/object/30391", + "curatorial_section": "Historic", + "object_number": "29-191-161" + }, + { + "emuIRN": "22499", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/22499", + "other_numbers": [ + "4001" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157B" + }, + { + "emuIRN": "120252", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120252", + "other_numbers": [ + "4001?" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157C" + }, + { + "emuIRN": "156290", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/156290", + "other_numbers": [ + "4002" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157D" + }, + { + "emuIRN": "99398", + "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", + "provenience": [ + "Pennsylvania", + "Pittsburgh" + ], + "culture": [ + "American" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Charles Este, Jr., 1899" + ], + "object_name": [ + "Puzzle", + "Trick" + ], + "url": "http://www.penn.museum/collections/object/99398", + "curatorial_section": "Historic", + "object_number": "19783" + }, + { + "emuIRN": "130464", + "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/130464", + "native_name": [ + "Cartes a Jouer" + ], + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "7594" + }, + { + "emuIRN": "160242", + "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/160242", + "date_made_early": "1800", + "date_made": "1800-1899", + "date_made_late": "1899", + "curatorial_section": "Historic", + "object_number": "7595" + }, + { + "emuIRN": "157104", + "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1890" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "url": "http://www.penn.museum/collections/object/157104", + "date_made_early": "1800", + "date_made": "19th century", + "date_made_late": "1890", + "curatorial_section": "Historic", + "object_number": "7629" + }, + { + "emuIRN": "157105", + "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "C. L. Wust" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of J. D. Sergeant, 1890" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/157105", + "curatorial_section": "Historic", + "object_number": "7630" + }, + { + "emuIRN": "98559", + "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "B. Dondorf" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of W. Yorke Stevenson, 1891" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/98559", + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "other_numbers": [ + "27" + ], + "curatorial_section": "Historic", + "object_number": "7712" + }, + { + "emuIRN": "248509", + "description": "Card dominoes in box.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Card Game", + "Dominoe" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/248509", + "curatorial_section": "Historic", + "object_number": "8813" + }, + { + "emuIRN": "137944", + "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/137944", + "date_made_early": "1866", + "date_made": "c. 1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "9011" + }, + { + "emuIRN": "194220", + "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "creator": [ + "Watilliaux" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/194220", + "date_made_early": "1878", + "date_made": "1878", + "date_made_late": "1878", + "curatorial_section": "Historic", + "object_number": "9018" + }, + { + "emuIRN": "205296", + "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", + "technique": [ + "Printed" + ], + "provenience": [ + "Mexico (Central America)", + "Puebla (Mexican State)" + ], + "culture": [ + "Spanish" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of the US National Museum, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/205296", + "date_made_early": "1873", + "date_made": "1873-1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15360" + }, + { + "emuIRN": "21030", + "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Fortune Telling Cards" + ], + "url": "http://www.penn.museum/collections/object/21030", + "date_made_early": "1865", + "date_made": "pre 1890", + "date_made_late": "1890", + "other_numbers": [ + "43" + ], + "curatorial_section": "Historic", + "object_number": "15513" + }, + { + "emuIRN": "46932", + "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", + "provenience": [ + "Italy", + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/46932", + "date_made_early": "1880", + "date_made": "1880-1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15528" + }, + { + "emuIRN": "220035", + "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/220035", + "date_made_early": "29 Nov 1890", + "date_made": "11/29/1890", + "date_made_late": "29 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15529" + }, + { + "emuIRN": "220036", + "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/220036", + "date_made_early": "27 Oct 1890", + "date_made": "10/27/1890", + "date_made_late": "27 Oct 1890", + "other_numbers": [ + "42" + ], + "curatorial_section": "Historic", + "object_number": "15530" + }, + { + "emuIRN": "289473", + "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/289473", + "date_made_early": "17 Jan 1887", + "date_made": "1/17/1887", + "date_made_late": "17 Jan 1887", + "curatorial_section": "Historic", + "object_number": "15532" + }, + { + "emuIRN": "114394", + "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/114394", + "date_made_early": "1867", + "date_made": " pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15533" + }, + { + "emuIRN": "82994", + "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/82994", + "date_made_early": "17 Jun 1890", + "date_made": "6/17/1890", + "date_made_late": "17 Jun 1890", + "other_numbers": [ + "13" + ], + "curatorial_section": "Historic", + "object_number": "15534" + }, + { + "emuIRN": "233242", + "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/233242", + "date_made_early": "13 Mar 1891", + "date_made": "3/13/1891", + "date_made_late": "13 Mar 1891", + "other_numbers": [ + "5" + ], + "curatorial_section": "Historic", + "object_number": "15536" + }, + { + "emuIRN": "237987", + "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/237987", + "date_made_early": "13 Mar 1891", + "date_made": "pre 1892", + "date_made_late": "13 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15537" + }, + { + "emuIRN": "264110", + "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/264110", + "date_made_early": "1867", + "date_made": "pre 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15538" + }, + { + "emuIRN": "36188", + "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/36188", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15540" + }, + { + "emuIRN": "154504", + "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/154504", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15541" + }, + { + "emuIRN": "203963", + "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/203963", + "date_made_early": "27 Aug 1891", + "date_made": "8/27/1891", + "date_made_late": "27 Aug 1891", + "curatorial_section": "Historic", + "object_number": "15543" + }, + { + "emuIRN": "241994", + "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/241994", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15544" + }, + { + "emuIRN": "243680", + "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/243680", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15545" + }, + { + "emuIRN": "87145", + "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/87145", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15546" + }, + { + "emuIRN": "59271", + "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/59271", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15547" + }, + { + "emuIRN": "336096", + "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/336096", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15548" + }, + { + "emuIRN": "203973", + "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/203973", + "date_made_early": "09 Apr 1888", + "date_made": "4/9/1888", + "date_made_late": "09 Apr 1888", + "curatorial_section": "Historic", + "object_number": "15550" + }, + { + "emuIRN": "238541", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/238541", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15552" + }, + { + "emuIRN": "131933", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/131933", + "date_made_early": "16 Jun 1891", + "date_made": "6/16/1891", + "date_made_late": "16 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15553" + }, + { + "emuIRN": "158923", + "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/158923", + "date_made_early": "01 Jun 1891", + "date_made": "6/1/1891", + "date_made_late": "01 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15554" + }, + { + "emuIRN": "103187", + "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/103187", + "native_name": [ + "Tarocchino" + ], + "date_made_early": "03 Feb 1891", + "date_made": "2/3/1891", + "date_made_late": "03 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15555" + }, + { + "emuIRN": "178709", + "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", + "provenience": [ + "Italy", + "Povoletto-Udine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "F. L. Muccioli" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/178709", + "date_made_early": "09 May 1890", + "date_made": "5/9/1890", + "date_made_late": "09 May 1890", + "curatorial_section": "Historic", + "object_number": "15556" + }, + { + "emuIRN": "277112", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/277112", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15557" + }, + { + "emuIRN": "25552", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/25552", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15558" + }, + { + "emuIRN": "325482", + "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/325482", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1895", + "curatorial_section": "Historic", + "object_number": "15559" + }, + { + "emuIRN": "325483", + "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/325483", + "date_made_early": "12 Mar 2091", + "date_made": "3/12/91", + "date_made_late": "12 Mar 2091", + "curatorial_section": "Historic", + "object_number": "15560" + }, + { + "emuIRN": "48114", + "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/48114", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "22 Jun 1891", + "date_made": "6/22/1891", + "date_made_late": "22 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15561" + }, + { + "emuIRN": "167380", + "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/167380", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15562" + }, + { + "emuIRN": "321272", + "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Vincenzo Russo" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack", + "Neopolitan Pack" + ], + "url": "http://www.penn.museum/collections/object/321272", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "11 Feb 1891", + "date_made": "2/11/1891", + "date_made_late": "11 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15563" + }, + { + "emuIRN": "279915", + "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Luigi Pignalosa" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/279915", + "date_made_early": "14 Feb 1891", + "date_made": "2/14/1891", + "date_made_late": "14 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15564" + }, + { + "emuIRN": "157272", + "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/157272", + "date_made_early": "04 Oct 1888", + "date_made": "10/4/1888", + "date_made_late": "04 Oct 1888", + "curatorial_section": "Historic", + "object_number": "15566" + }, + { + "emuIRN": "88522", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/88522", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15567" + }, + { + "emuIRN": "177453", + "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/177453", + "date_made_early": "24 Mar 1891", + "date_made": "3/24/1891", + "date_made_late": "24 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15568" + }, + { + "emuIRN": "322855", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322855", + "date_made_early": "25 Nov 1890", + "date_made": "11/25/1890", + "date_made_late": "25 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15569" + }, + { + "emuIRN": "322856", + "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322856", + "date_made_early": "27 Jul 2091", + "date_made": "7/27/91", + "date_made_late": "27 Jul 2091", + "curatorial_section": "Historic", + "object_number": "15570" + }, + { + "emuIRN": "289232", + "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/289232", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15571" + }, + { + "emuIRN": "71704", + "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "L. Bartolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/71704", + "date_made_early": "02 Jul 1892", + "date_made": "7/2/1892", + "date_made_late": "02 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15572" + }, + { + "emuIRN": "341571", + "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Silvertrini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/341571", + "date_made_early": "01 Jul 1892", + "date_made": "7/1/1892", + "date_made_late": "01 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15573" + }, + { + "emuIRN": "231215", + "description": "Playing card deck - 44 cards", + "provenience": [ + "Italy", + "Bergamo" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Masenghini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Milanese Deck" + ], + "url": "http://www.penn.museum/collections/object/231215", + "curatorial_section": "Historic", + "object_number": "15575" + }, + { + "emuIRN": "290651", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", + "provenience": [ + "Italy", + "Trento" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giac. Bertoldi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/290651", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15577" + }, + { + "emuIRN": "116249", + "description": "Playing card deck - 40 cards, printed back with pink abstract designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/116249", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15578" + }, + { + "emuIRN": "76331", + "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/76331", + "date_made_early": "1867", + "date_made": "c.1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15579" + }, + { + "emuIRN": "76332", + "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/76332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15580" + }, + { + "emuIRN": "189908", + "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/189908", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15583" + }, + { + "emuIRN": "275719", + "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/275719", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15584" + }, + { + "emuIRN": "51584", + "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/51584", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15585" + }, + { + "emuIRN": "56004", + "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Crispolani" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/56004", + "date_made_early": "1850", + "date_made": "circa 1860", + "date_made_late": "1870", + "curatorial_section": "Historic", + "object_number": "15586" + }, + { + "emuIRN": "124979", + "description": "Playing card deck - Tarocchi/Tarot - 78 cards", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/124979", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15587" + }, + { + "emuIRN": "212458", + "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "url": "http://www.penn.museum/collections/object/212458", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15588" + }, + { + "emuIRN": "309331", + "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "G. C. Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309331", + "date_made_early": "30 Mar 1891", + "date_made": "3/30/1891", + "date_made_late": "30 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15589" + }, + { + "emuIRN": "309332", + "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15590" + }, + { + "emuIRN": "86979", + "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/86979", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15592" + }, + { + "emuIRN": "5817", + "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5817", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15594" + }, + { + "emuIRN": "170983", + "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Baby", + "Angel" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/170983", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15595" + }, + { + "emuIRN": "300071", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Tambourine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/300071", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15596" + }, + { + "emuIRN": "236603", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236603", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15597" + }, + { + "emuIRN": "141064", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141064", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15598" + }, + { + "emuIRN": "126294", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", + "provenience": [ + "Italy", + "Treviso" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Francesca Rino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/126294", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15599" + }, + { + "emuIRN": "309333", + "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", + "provenience": [ + "Italy", + "Parma (Italy)" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Faelli Carlo" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309333", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15600" + }, + { + "emuIRN": "261187", + "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Cassini Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Cucu" + ], + "url": "http://www.penn.museum/collections/object/261187", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15601" + }, + { + "emuIRN": "5818", + "description": "40 cards with wrapper. Printed back: green and blue plaid", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5818", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15604" + }, + { + "emuIRN": "236604", + "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236604", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15607" + }, + { + "emuIRN": "141065", + "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141065", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15608" + }, + { + "emuIRN": "319728", + "description": "Playing card deck - 40 cards", + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/319728", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15621" + }, + { + "emuIRN": "119150", + "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Florentine Pack" + ], + "url": "http://www.penn.museum/collections/object/119150", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15622" + }, + { + "emuIRN": "92457", + "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/92457", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15623" + }, + { + "emuIRN": "406753", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406753", + "curatorial_section": "Historic", + "object_number": "19124.15" + }, + { + "emuIRN": "406754", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406754", + "curatorial_section": "Historic", + "object_number": "19124.16" + }, + { + "emuIRN": "406755", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406755", + "curatorial_section": "Historic", + "object_number": "19124.17" + }, + { + "emuIRN": "406756", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406756", + "curatorial_section": "Historic", + "object_number": "19124.18" + }, + { + "emuIRN": "406757", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406757", + "curatorial_section": "Historic", + "object_number": "19124.19" + }, + { + "emuIRN": "406758", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406758", + "curatorial_section": "Historic", + "object_number": "19124.20" + }, + { + "emuIRN": "406759", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406759", + "curatorial_section": "Historic", + "object_number": "19124.21" + }, + { + "emuIRN": "406760", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406760", + "curatorial_section": "Historic", + "object_number": "19124.22" + }, + { + "emuIRN": "406761", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406761", + "curatorial_section": "Historic", + "object_number": "19124.23" + }, + { + "emuIRN": "406762", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406762", + "curatorial_section": "Historic", + "object_number": "19124.24" + }, + { + "emuIRN": "406763", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406763", + "curatorial_section": "Historic", + "object_number": "19124.25" + }, + { + "emuIRN": "406764", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406764", + "curatorial_section": "Historic", + "object_number": "19124.26" + }, + { + "emuIRN": "330556", + "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", + "provenience": [ + "Europe (uncertain)" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/330556", + "curatorial_section": "Historic", + "object_number": "29-191-128" + }, + { + "emuIRN": "321909", + "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/321909", + "curatorial_section": "Historic", + "object_number": "29-191-129" + }, + { + "emuIRN": "127367", + "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/127367", + "curatorial_section": "Historic", + "object_number": "29-191-227" + }, + { + "emuIRN": "203363", + "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", + "technique": [ + "Painted" + ], + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Paint", + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/203363", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15792" + }, + { + "emuIRN": "185526", + "description": "Red and gold sphere with small metall loop on 1 end", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of H. C. Thomson, 1894" + ], + "object_name": [ + "Whistling Top" + ], + "url": "http://www.penn.museum/collections/object/185526", + "curatorial_section": "Historic", + "object_number": "17817" + }, + { + "emuIRN": "59206", + "description": "Wood ball with metal spike. Cord for spinning", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top", + "Cord" + ], + "url": "http://www.penn.museum/collections/object/59206", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19214" + }, + { + "emuIRN": "186142", + "description": "Turned wood, bell-shaped with metal spike.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/186142", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19216" + }, + { + "emuIRN": "234646", + "description": "Toy rolling disc - wooden.", + "provenience": [ + "Italy" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Henry H. Giglioli, 1896" + ], + "object_name": [ + "Spinning Toy (uncertain)", + "Rolling Disc" + ], + "url": "http://www.penn.museum/collections/object/234646", + "curatorial_section": "Historic", + "object_number": "19217" + }, + { + "emuIRN": "134935", + "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal", + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1897" + ], + "object_name": [ + "Pinwheel" + ], + "url": "http://www.penn.museum/collections/object/134935", + "curatorial_section": "Historic", + "object_number": "20037" + }, + { + "emuIRN": "340545", + "description": "Turned wood ball with metal peg. Smaller version of 19214.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/340545", + "curatorial_section": "Historic", + "object_number": "19215A" + }, + { + "emuIRN": "273066", + "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Top Die", + "Teetotum" + ], + "url": "http://www.penn.museum/collections/object/273066", + "curatorial_section": "Historic", + "object_number": "71-18-6" + }, + { + "emuIRN": "146612", + "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", + "provenience": [ + "Japan" + ], + "material": [ + "Brass", + "Tin" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/146612", + "curatorial_section": "Historic", + "object_number": "71-18-11" + }, + { + "emuIRN": "264736", + "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top" + ], + "url": "http://www.penn.museum/collections/object/264736", + "curatorial_section": "Historic", + "object_number": "71-18-41" + }, + { + "emuIRN": "128464", + "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", + "provenience": [ + "West Germany" + ], + "culture": [ + "German" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/128464", + "curatorial_section": "Historic", + "object_number": "71-18-45" + }, + { + "emuIRN": "102950", + "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top", + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/102950", + "curatorial_section": "Historic", + "object_number": "71-18-50" + }, + { + "emuIRN": "215073", + "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Gyroscope" + ], + "url": "http://www.penn.museum/collections/object/215073", + "curatorial_section": "Historic", + "object_number": "71-18-53" + }, + { + "emuIRN": "281519", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/281519", + "curatorial_section": "Historic", + "object_number": "71-18-10A" + }, + { + "emuIRN": "132216", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/132216", + "curatorial_section": "Historic", + "object_number": "71-18-10B" + }, + { + "emuIRN": "222994", + "description": "Turned wooden spinnters. A-D have stems.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/222994", + "curatorial_section": "Historic", + "object_number": "71-18-17A" + }, + { + "emuIRN": "293378", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/293378", + "curatorial_section": "Historic", + "object_number": "71-18-17B" + }, + { + "emuIRN": "244262", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/244262", + "curatorial_section": "Historic", + "object_number": "71-18-17C" + }, + { + "emuIRN": "97422", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/97422", + "curatorial_section": "Historic", + "object_number": "71-18-17D" + }, + { + "emuIRN": "283240", + "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/283240", + "curatorial_section": "Historic", + "object_number": "71-18-17E" + }, + { + "emuIRN": "199531", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/199531", + "curatorial_section": "Historic", + "object_number": "71-18-20A" + }, + { + "emuIRN": "315942", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/315942", + "curatorial_section": "Historic", + "object_number": "71-18-20B" + }, + { + "emuIRN": "154811", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/154811", + "curatorial_section": "Historic", + "object_number": "71-18-20C" + }, + { + "emuIRN": "119329", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/119329", + "curatorial_section": "Historic", + "object_number": "71-18-20D" + }, + { + "emuIRN": "138169", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/138169", + "curatorial_section": "Historic", + "object_number": "71-18-20E" + }, + { + "emuIRN": "168699", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/168699", + "curatorial_section": "Historic", + "object_number": "71-18-20F" + }, + { + "emuIRN": "165852", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/165852", + "curatorial_section": "Historic", + "object_number": "71-18-20G" + }, + { + "emuIRN": "307682", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/307682", + "curatorial_section": "Historic", + "object_number": "71-18-20H" + }, + { + "emuIRN": "336448", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336448", + "curatorial_section": "Historic", + "object_number": "71-18-32A" + }, + { + "emuIRN": "181753", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/181753", + "curatorial_section": "Historic", + "object_number": "71-18-32B" + }, + { + "emuIRN": "277851", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/277851", + "curatorial_section": "Historic", + "object_number": "71-18-32C" + }, + { + "emuIRN": "44213", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/44213", + "curatorial_section": "Historic", + "object_number": "71-18-32D" + }, + { + "emuIRN": "343371", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/343371", + "curatorial_section": "Historic", + "object_number": "71-18-32E" + }, + { + "emuIRN": "405192", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "period": [ + "Modern" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/405192", + "curatorial_section": "Historic", + "object_number": "71-18-32F" + }, + { + "emuIRN": "174014", + "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinning Toy", + "Supported Top", + "Whistle" + ], + "url": "http://www.penn.museum/collections/object/174014", + "curatorial_section": "Historic", + "object_number": "71-18-72" + }, + { + "emuIRN": "54377", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/54377", + "curatorial_section": "Historic", + "object_number": "71-18-71A" + }, + { + "emuIRN": "336914", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336914", + "curatorial_section": "Historic", + "object_number": "71-18-71B" + }, + { + "emuIRN": "40527", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel", + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/40527", + "curatorial_section": "Historic", + "object_number": "71-18-71C" + }, + { + "emuIRN": "81633", + "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "iconography": [ + "Dog", + "Flag" + ], + "material": [ + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81633", + "other_numbers": [ + "533107" + ], + "curatorial_section": "Historic", + "object_number": "73-1-9" + }, + { + "emuIRN": "315995", + "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/315995", + "curatorial_section": "Historic", + "object_number": "73-1-11" + }, + { + "emuIRN": "81890", + "description": "Bi-colored light plastic top / yo-yo", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81890", + "curatorial_section": "Historic", + "object_number": "73-1-12" + }, + { + "emuIRN": "158974", + "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/158974", + "curatorial_section": "Historic", + "object_number": "73-1-21" + }, + { + "emuIRN": "270492", + "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/270492", + "curatorial_section": "Historic", + "object_number": "73-1-15B" + }, + { + "emuIRN": "122561", + "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "material": [ + "Plastic", + "Nylon" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/122561", + "curatorial_section": "Historic", + "object_number": "75-13-1" + }, + { + "emuIRN": "169135", + "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", + "provenience": [ + "Wisconsin", + "Milwaukee" + ], + "culture": [ + "American" + ], + "creator": [ + "Jak Pak Inc." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/169135", + "curatorial_section": "Historic", + "object_number": "75-13-18" + }, + { + "emuIRN": "265153", + "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", + "provenience": [ + "New York", + "Brooklyn" + ], + "culture": [ + "American" + ], + "creator": [ + "American Magnetop Corp." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/265153", + "curatorial_section": "Historic", + "object_number": "75-13-19" + }, + { + "emuIRN": "258185", + "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Giant Plastics Corp." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/258185", + "curatorial_section": "Historic", + "object_number": "75-13-21" + }, + { + "emuIRN": "112910", + "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", + "provenience": [ + "England" + ], + "culture": [ + "English" + ], + "creator": [ + "Christie & Jay, Ltd" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/112910", + "curatorial_section": "Historic", + "object_number": "75-13-30" + }, + { + "emuIRN": "206818", + "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", + "provenience": [ + "Tennessee", + "Nashville" + ], + "culture": [ + "American" + ], + "creator": [ + "Kusan, Inc" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Yo-Yo", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/206818", + "curatorial_section": "Historic", + "object_number": "75-13-32" + }, + { + "emuIRN": "320134", + "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", + "provenience": [ + "New York", + "Brooklyn" + ], + "creator": [ + "Shimmel" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/320134", + "curatorial_section": "Historic", + "object_number": "75-13-33" + }, + { + "emuIRN": "13411", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/13411", + "curatorial_section": "Historic", + "object_number": "75-13-10A" + }, + { + "emuIRN": "2151", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/2151", + "curatorial_section": "Historic", + "object_number": "75-13-10B" + }, + { + "emuIRN": "227620", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/227620", + "curatorial_section": "Historic", + "object_number": "75-13-10C" + }, + { + "emuIRN": "205966", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/205966", + "curatorial_section": "Historic", + "object_number": "75-13-29A" + }, + { + "emuIRN": "281691", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/281691", + "curatorial_section": "Historic", + "object_number": "75-13-29B" + }, + { + "emuIRN": "99171", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/99171", + "curatorial_section": "Historic", + "object_number": "75-13-29C" + }, + { + "emuIRN": "101034", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/101034", + "curatorial_section": "Historic", + "object_number": "75-13-29D" + }, + { + "emuIRN": "308170", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/308170", + "curatorial_section": "Historic", + "object_number": "75-13-29E" + }, + { + "emuIRN": "212263", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/212263", + "curatorial_section": "Historic", + "object_number": "75-13-29F" + }, + { + "emuIRN": "171295", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/171295", + "curatorial_section": "Historic", + "object_number": "75-13-29G" + }, + { + "emuIRN": "252428", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/252428", + "curatorial_section": "Historic", + "object_number": "75-13-29H" + }, + { + "emuIRN": "33474", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/33474", + "curatorial_section": "Historic", + "object_number": "75-13-29I" + }, + { + "emuIRN": "64988", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/64988", + "curatorial_section": "Historic", + "object_number": "75-13-29J" + }, + { + "emuIRN": "149403", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/149403", + "curatorial_section": "Historic", + "object_number": "75-13-29K" + }, + { + "emuIRN": "192238", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/192238", + "curatorial_section": "Historic", + "object_number": "75-13-29L" + }, + { + "emuIRN": "87050", + "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/87050", + "curatorial_section": "Historic", + "object_number": "75-13-5A" + }, + { + "emuIRN": "241334", + "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", + "provenience": [ + "Hawthorne" + ], + "culture": [ + "American" + ], + "creator": [ + "Mattel, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/241334", + "curatorial_section": "Historic", + "object_number": "75-13-9D" + }, + { + "emuIRN": "77859", + "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/77859", + "curatorial_section": "Historic", + "object_number": "71-18-24" + }, + { + "emuIRN": "285019", + "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top", + "Musical Top" + ], + "url": "http://www.penn.museum/collections/object/285019", + "curatorial_section": "Historic", + "object_number": "71-18-27" + }, + { + "emuIRN": "37984", + "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/37984", + "curatorial_section": "Historic", + "object_number": "71-18-38" + }, + { + "emuIRN": "239276", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/239276", + "curatorial_section": "Historic", + "object_number": "71-18-28A" + }, + { + "emuIRN": "32312", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/32312", + "curatorial_section": "Historic", + "object_number": "71-18-28B" + }, + { + "emuIRN": "65727", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/65727", + "curatorial_section": "Historic", + "object_number": "71-18-28C" + }, + { + "emuIRN": "274339", + "description": "Wire puzzle with boot and cap.", + "provenience": [ + "Europe", + "France (uncertain)" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Wire Puzzle" + ], + "url": "http://www.penn.museum/collections/object/274339", + "curatorial_section": "Historic", + "object_number": "8812" + }, + { + "emuIRN": "159716", + "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Selchow & Richter" + ], + "material": [ + "Cardboard" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/159716", + "date_made_early": "1880", + "date_made": "9/7/1880", + "date_made_late": "1880", + "curatorial_section": "Historic", + "object_number": "15496" + }, + { + "emuIRN": "18643", + "description": "12 lithographed cards with pictures of children's games. Fused to 16555", + "technique": [ + "Lithograph" + ], + "provenience": [ + "France", + "Paris (France)" + ], + "iconography": [ + "Games" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Cards" + ], + "url": "http://www.penn.museum/collections/object/18643", + "curatorial_section": "Historic", + "object_number": "16231" + }, + { + "emuIRN": "34693", + "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Metal", + "Glass", + "Wood" + ], + "accession_credit_line": [ + "Gift of Mrs. John Harrison, 1894" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/34693", + "date_made_early": "1869", + "date_made": "c. 1894", + "date_made_late": "1894", + "curatorial_section": "Historic", + "object_number": "16401" + }, + { + "emuIRN": "93791", + "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", + "provenience": [ + "England", + "London" + ], + "culture": [ + "British" + ], + "accession_credit_line": [ + "Gift of Henry Jones, 1893" + ], + "object_name": [ + "Card Game", + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93791", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "16555" + }, + { + "emuIRN": "117728", + "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "creator": [ + "Donaldson Brothers" + ], + "material": [ + "Paper" + ], + "object_name": [ + "Puzzle", + "Advertisement" + ], + "url": "http://www.penn.museum/collections/object/117728", + "curatorial_section": "Historic", + "object_number": "18578" + }, + { + "emuIRN": "303943", + "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", + "provenience": [ + "Pennsylvania", + "Bucks County" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Glass", + "Metal", + "String", + "Cork" + ], + "accession_credit_line": [ + "Gift of Col. Henry D. Paxson, 1897" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/303943", + "curatorial_section": "Historic", + "object_number": "20067" + }, + { + "emuIRN": "287388", + "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Dr. Max Uhle, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/287388", + "curatorial_section": "Historic", + "object_number": "21082" + }, + { + "emuIRN": "140578", + "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/140578", + "curatorial_section": "Historic", + "object_number": "21458" + }, + { + "emuIRN": "120293", + "description": "Wood Board with instructions. Metal Arm.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120293", + "curatorial_section": "Historic", + "object_number": "21460" + }, + { + "emuIRN": "25280", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/25280", + "curatorial_section": "Historic", + "object_number": "21594A" + }, + { + "emuIRN": "406863", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/406863", + "curatorial_section": "Historic", + "object_number": "21594B" + }, + { + "emuIRN": "93703", + "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "The American Game and Puzzle Company" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93703", + "curatorial_section": "Historic", + "object_number": "29-191-146" + }, + { + "emuIRN": "64758", + "description": "Yamato Block Puzzle - 6 pieces of wood", + "provenience": [ + "Japan" + ], + "culture": [ + "Japanese" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64758", + "curatorial_section": "Historic", + "object_number": "29-191-159" + }, + { + "emuIRN": "64759", + "description": "See Dar Wonderful - 9 pieces of wood", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64759", + "curatorial_section": "Historic", + "object_number": "29-191-160" + }, + { + "emuIRN": "30391", + "description": "12 pieces", + "provenience": [ + "New York", + "New York City" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle", + "Reproduction (uncertain)" + ], + "url": "http://www.penn.museum/collections/object/30391", + "curatorial_section": "Historic", + "object_number": "29-191-161" + }, + { + "emuIRN": "22499", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/22499", + "other_numbers": [ + "4001" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157B" + }, + { + "emuIRN": "120252", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120252", + "other_numbers": [ + "4001?" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157C" + }, + { + "emuIRN": "156290", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/156290", + "other_numbers": [ + "4002" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157D" + }, + { + "emuIRN": "99398", + "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", + "provenience": [ + "Pennsylvania", + "Pittsburgh" + ], + "culture": [ + "American" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Charles Este, Jr., 1899" + ], + "object_name": [ + "Puzzle", + "Trick" + ], + "url": "http://www.penn.museum/collections/object/99398", + "curatorial_section": "Historic", + "object_number": "19783" + }, + { + "emuIRN": "130464", + "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/130464", + "native_name": [ + "Cartes a Jouer" + ], + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "7594" + }, + { + "emuIRN": "160242", + "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/160242", + "date_made_early": "1800", + "date_made": "1800-1899", + "date_made_late": "1899", + "curatorial_section": "Historic", + "object_number": "7595" + }, + { + "emuIRN": "157104", + "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1890" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "url": "http://www.penn.museum/collections/object/157104", + "date_made_early": "1800", + "date_made": "19th century", + "date_made_late": "1890", + "curatorial_section": "Historic", + "object_number": "7629" + }, + { + "emuIRN": "157105", + "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "C. L. Wust" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of J. D. Sergeant, 1890" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/157105", + "curatorial_section": "Historic", + "object_number": "7630" + }, + { + "emuIRN": "98559", + "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "B. Dondorf" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of W. Yorke Stevenson, 1891" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/98559", + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "other_numbers": [ + "27" + ], + "curatorial_section": "Historic", + "object_number": "7712" + }, + { + "emuIRN": "248509", + "description": "Card dominoes in box.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Card Game", + "Dominoe" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/248509", + "curatorial_section": "Historic", + "object_number": "8813" + }, + { + "emuIRN": "137944", + "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/137944", + "date_made_early": "1866", + "date_made": "c. 1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "9011" + }, + { + "emuIRN": "194220", + "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "creator": [ + "Watilliaux" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/194220", + "date_made_early": "1878", + "date_made": "1878", + "date_made_late": "1878", + "curatorial_section": "Historic", + "object_number": "9018" + }, + { + "emuIRN": "205296", + "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", + "technique": [ + "Printed" + ], + "provenience": [ + "Mexico (Central America)", + "Puebla (Mexican State)" + ], + "culture": [ + "Spanish" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of the US National Museum, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/205296", + "date_made_early": "1873", + "date_made": "1873-1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15360" + }, + { + "emuIRN": "21030", + "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Fortune Telling Cards" + ], + "url": "http://www.penn.museum/collections/object/21030", + "date_made_early": "1865", + "date_made": "pre 1890", + "date_made_late": "1890", + "other_numbers": [ + "43" + ], + "curatorial_section": "Historic", + "object_number": "15513" + }, + { + "emuIRN": "46932", + "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", + "provenience": [ + "Italy", + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/46932", + "date_made_early": "1880", + "date_made": "1880-1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15528" + }, + { + "emuIRN": "220035", + "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/220035", + "date_made_early": "29 Nov 1890", + "date_made": "11/29/1890", + "date_made_late": "29 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15529" + }, + { + "emuIRN": "220036", + "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/220036", + "date_made_early": "27 Oct 1890", + "date_made": "10/27/1890", + "date_made_late": "27 Oct 1890", + "other_numbers": [ + "42" + ], + "curatorial_section": "Historic", + "object_number": "15530" + }, + { + "emuIRN": "289473", + "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/289473", + "date_made_early": "17 Jan 1887", + "date_made": "1/17/1887", + "date_made_late": "17 Jan 1887", + "curatorial_section": "Historic", + "object_number": "15532" + }, + { + "emuIRN": "114394", + "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/114394", + "date_made_early": "1867", + "date_made": " pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15533" + }, + { + "emuIRN": "82994", + "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/82994", + "date_made_early": "17 Jun 1890", + "date_made": "6/17/1890", + "date_made_late": "17 Jun 1890", + "other_numbers": [ + "13" + ], + "curatorial_section": "Historic", + "object_number": "15534" + }, + { + "emuIRN": "233242", + "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/233242", + "date_made_early": "13 Mar 1891", + "date_made": "3/13/1891", + "date_made_late": "13 Mar 1891", + "other_numbers": [ + "5" + ], + "curatorial_section": "Historic", + "object_number": "15536" + }, + { + "emuIRN": "237987", + "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/237987", + "date_made_early": "13 Mar 1891", + "date_made": "pre 1892", + "date_made_late": "13 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15537" + }, + { + "emuIRN": "264110", + "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/264110", + "date_made_early": "1867", + "date_made": "pre 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15538" + }, + { + "emuIRN": "36188", + "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/36188", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15540" + }, + { + "emuIRN": "154504", + "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/154504", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15541" + }, + { + "emuIRN": "203963", + "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/203963", + "date_made_early": "27 Aug 1891", + "date_made": "8/27/1891", + "date_made_late": "27 Aug 1891", + "curatorial_section": "Historic", + "object_number": "15543" + }, + { + "emuIRN": "241994", + "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/241994", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15544" + }, + { + "emuIRN": "243680", + "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/243680", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15545" + }, + { + "emuIRN": "87145", + "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/87145", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15546" + }, + { + "emuIRN": "59271", + "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/59271", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15547" + }, + { + "emuIRN": "336096", + "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/336096", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15548" + }, + { + "emuIRN": "203973", + "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/203973", + "date_made_early": "09 Apr 1888", + "date_made": "4/9/1888", + "date_made_late": "09 Apr 1888", + "curatorial_section": "Historic", + "object_number": "15550" + }, + { + "emuIRN": "238541", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/238541", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15552" + }, + { + "emuIRN": "131933", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/131933", + "date_made_early": "16 Jun 1891", + "date_made": "6/16/1891", + "date_made_late": "16 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15553" + }, + { + "emuIRN": "158923", + "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/158923", + "date_made_early": "01 Jun 1891", + "date_made": "6/1/1891", + "date_made_late": "01 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15554" + }, + { + "emuIRN": "103187", + "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/103187", + "native_name": [ + "Tarocchino" + ], + "date_made_early": "03 Feb 1891", + "date_made": "2/3/1891", + "date_made_late": "03 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15555" + }, + { + "emuIRN": "178709", + "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", + "provenience": [ + "Italy", + "Povoletto-Udine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "F. L. Muccioli" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/178709", + "date_made_early": "09 May 1890", + "date_made": "5/9/1890", + "date_made_late": "09 May 1890", + "curatorial_section": "Historic", + "object_number": "15556" + }, + { + "emuIRN": "277112", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/277112", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15557" + }, + { + "emuIRN": "25552", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/25552", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15558" + }, + { + "emuIRN": "325482", + "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/325482", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1895", + "curatorial_section": "Historic", + "object_number": "15559" + }, + { + "emuIRN": "325483", + "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/325483", + "date_made_early": "12 Mar 2091", + "date_made": "3/12/91", + "date_made_late": "12 Mar 2091", + "curatorial_section": "Historic", + "object_number": "15560" + }, + { + "emuIRN": "48114", + "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/48114", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "22 Jun 1891", + "date_made": "6/22/1891", + "date_made_late": "22 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15561" + }, + { + "emuIRN": "167380", + "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/167380", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15562" + }, + { + "emuIRN": "321272", + "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Vincenzo Russo" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack", + "Neopolitan Pack" + ], + "url": "http://www.penn.museum/collections/object/321272", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "11 Feb 1891", + "date_made": "2/11/1891", + "date_made_late": "11 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15563" + }, + { + "emuIRN": "279915", + "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Luigi Pignalosa" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/279915", + "date_made_early": "14 Feb 1891", + "date_made": "2/14/1891", + "date_made_late": "14 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15564" + }, + { + "emuIRN": "157272", + "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/157272", + "date_made_early": "04 Oct 1888", + "date_made": "10/4/1888", + "date_made_late": "04 Oct 1888", + "curatorial_section": "Historic", + "object_number": "15566" + }, + { + "emuIRN": "88522", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/88522", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15567" + }, + { + "emuIRN": "177453", + "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/177453", + "date_made_early": "24 Mar 1891", + "date_made": "3/24/1891", + "date_made_late": "24 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15568" + }, + { + "emuIRN": "322855", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322855", + "date_made_early": "25 Nov 1890", + "date_made": "11/25/1890", + "date_made_late": "25 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15569" + }, + { + "emuIRN": "322856", + "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322856", + "date_made_early": "27 Jul 2091", + "date_made": "7/27/91", + "date_made_late": "27 Jul 2091", + "curatorial_section": "Historic", + "object_number": "15570" + }, + { + "emuIRN": "289232", + "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/289232", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15571" + }, + { + "emuIRN": "71704", + "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "L. Bartolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/71704", + "date_made_early": "02 Jul 1892", + "date_made": "7/2/1892", + "date_made_late": "02 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15572" + }, + { + "emuIRN": "341571", + "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Silvertrini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/341571", + "date_made_early": "01 Jul 1892", + "date_made": "7/1/1892", + "date_made_late": "01 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15573" + }, + { + "emuIRN": "231215", + "description": "Playing card deck - 44 cards", + "provenience": [ + "Italy", + "Bergamo" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Masenghini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Milanese Deck" + ], + "url": "http://www.penn.museum/collections/object/231215", + "curatorial_section": "Historic", + "object_number": "15575" + }, + { + "emuIRN": "290651", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", + "provenience": [ + "Italy", + "Trento" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giac. Bertoldi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/290651", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15577" + }, + { + "emuIRN": "116249", + "description": "Playing card deck - 40 cards, printed back with pink abstract designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/116249", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15578" + }, + { + "emuIRN": "76331", + "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/76331", + "date_made_early": "1867", + "date_made": "c.1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15579" + }, + { + "emuIRN": "76332", + "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/76332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15580" + }, + { + "emuIRN": "189908", + "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/189908", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15583" + }, + { + "emuIRN": "275719", + "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/275719", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15584" + }, + { + "emuIRN": "51584", + "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/51584", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15585" + }, + { + "emuIRN": "56004", + "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Crispolani" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/56004", + "date_made_early": "1850", + "date_made": "circa 1860", + "date_made_late": "1870", + "curatorial_section": "Historic", + "object_number": "15586" + }, + { + "emuIRN": "124979", + "description": "Playing card deck - Tarocchi/Tarot - 78 cards", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/124979", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15587" + }, + { + "emuIRN": "212458", + "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "url": "http://www.penn.museum/collections/object/212458", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15588" + }, + { + "emuIRN": "309331", + "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "G. C. Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309331", + "date_made_early": "30 Mar 1891", + "date_made": "3/30/1891", + "date_made_late": "30 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15589" + }, + { + "emuIRN": "309332", + "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15590" + }, + { + "emuIRN": "86979", + "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/86979", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15592" + }, + { + "emuIRN": "5817", + "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5817", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15594" + }, + { + "emuIRN": "170983", + "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Baby", + "Angel" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/170983", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15595" + }, + { + "emuIRN": "300071", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Tambourine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/300071", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15596" + }, + { + "emuIRN": "236603", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236603", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15597" + }, + { + "emuIRN": "141064", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141064", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15598" + }, + { + "emuIRN": "126294", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", + "provenience": [ + "Italy", + "Treviso" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Francesca Rino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/126294", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15599" + }, + { + "emuIRN": "309333", + "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", + "provenience": [ + "Italy", + "Parma (Italy)" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Faelli Carlo" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309333", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15600" + }, + { + "emuIRN": "261187", + "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Cassini Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Cucu" + ], + "url": "http://www.penn.museum/collections/object/261187", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15601" + }, + { + "emuIRN": "5818", + "description": "40 cards with wrapper. Printed back: green and blue plaid", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5818", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15604" + }, + { + "emuIRN": "236604", + "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236604", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15607" + }, + { + "emuIRN": "141065", + "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141065", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15608" + }, + { + "emuIRN": "319728", + "description": "Playing card deck - 40 cards", + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/319728", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15621" + }, + { + "emuIRN": "119150", + "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Florentine Pack" + ], + "url": "http://www.penn.museum/collections/object/119150", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15622" + }, + { + "emuIRN": "92457", + "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/92457", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15623" + }, + { + "emuIRN": "406753", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406753", + "curatorial_section": "Historic", + "object_number": "19124.15" + }, + { + "emuIRN": "406754", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406754", + "curatorial_section": "Historic", + "object_number": "19124.16" + }, + { + "emuIRN": "406755", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406755", + "curatorial_section": "Historic", + "object_number": "19124.17" + }, + { + "emuIRN": "406756", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406756", + "curatorial_section": "Historic", + "object_number": "19124.18" + }, + { + "emuIRN": "406757", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406757", + "curatorial_section": "Historic", + "object_number": "19124.19" + }, + { + "emuIRN": "406758", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406758", + "curatorial_section": "Historic", + "object_number": "19124.20" + }, + { + "emuIRN": "406759", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406759", + "curatorial_section": "Historic", + "object_number": "19124.21" + }, + { + "emuIRN": "406760", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406760", + "curatorial_section": "Historic", + "object_number": "19124.22" + }, + { + "emuIRN": "406761", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406761", + "curatorial_section": "Historic", + "object_number": "19124.23" + }, + { + "emuIRN": "406762", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406762", + "curatorial_section": "Historic", + "object_number": "19124.24" + }, + { + "emuIRN": "406763", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406763", + "curatorial_section": "Historic", + "object_number": "19124.25" + }, + { + "emuIRN": "406764", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406764", + "curatorial_section": "Historic", + "object_number": "19124.26" + }, + { + "emuIRN": "330556", + "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", + "provenience": [ + "Europe (uncertain)" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/330556", + "curatorial_section": "Historic", + "object_number": "29-191-128" + }, + { + "emuIRN": "321909", + "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/321909", + "curatorial_section": "Historic", + "object_number": "29-191-129" + }, + { + "emuIRN": "127367", + "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/127367", + "curatorial_section": "Historic", + "object_number": "29-191-227" + }, + { + "emuIRN": "203363", + "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", + "technique": [ + "Painted" + ], + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Paint", + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/203363", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15792" + }, + { + "emuIRN": "185526", + "description": "Red and gold sphere with small metall loop on 1 end", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of H. C. Thomson, 1894" + ], + "object_name": [ + "Whistling Top" + ], + "url": "http://www.penn.museum/collections/object/185526", + "curatorial_section": "Historic", + "object_number": "17817" + }, + { + "emuIRN": "59206", + "description": "Wood ball with metal spike. Cord for spinning", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top", + "Cord" + ], + "url": "http://www.penn.museum/collections/object/59206", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19214" + }, + { + "emuIRN": "186142", + "description": "Turned wood, bell-shaped with metal spike.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/186142", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19216" + }, + { + "emuIRN": "234646", + "description": "Toy rolling disc - wooden.", + "provenience": [ + "Italy" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Henry H. Giglioli, 1896" + ], + "object_name": [ + "Spinning Toy (uncertain)", + "Rolling Disc" + ], + "url": "http://www.penn.museum/collections/object/234646", + "curatorial_section": "Historic", + "object_number": "19217" + }, + { + "emuIRN": "134935", + "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal", + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1897" + ], + "object_name": [ + "Pinwheel" + ], + "url": "http://www.penn.museum/collections/object/134935", + "curatorial_section": "Historic", + "object_number": "20037" + }, + { + "emuIRN": "340545", + "description": "Turned wood ball with metal peg. Smaller version of 19214.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/340545", + "curatorial_section": "Historic", + "object_number": "19215A" + }, + { + "emuIRN": "273066", + "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Top Die", + "Teetotum" + ], + "url": "http://www.penn.museum/collections/object/273066", + "curatorial_section": "Historic", + "object_number": "71-18-6" + }, + { + "emuIRN": "146612", + "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", + "provenience": [ + "Japan" + ], + "material": [ + "Brass", + "Tin" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/146612", + "curatorial_section": "Historic", + "object_number": "71-18-11" + }, + { + "emuIRN": "264736", + "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top" + ], + "url": "http://www.penn.museum/collections/object/264736", + "curatorial_section": "Historic", + "object_number": "71-18-41" + }, + { + "emuIRN": "128464", + "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", + "provenience": [ + "West Germany" + ], + "culture": [ + "German" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/128464", + "curatorial_section": "Historic", + "object_number": "71-18-45" + }, + { + "emuIRN": "102950", + "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top", + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/102950", + "curatorial_section": "Historic", + "object_number": "71-18-50" + }, + { + "emuIRN": "215073", + "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Gyroscope" + ], + "url": "http://www.penn.museum/collections/object/215073", + "curatorial_section": "Historic", + "object_number": "71-18-53" + }, + { + "emuIRN": "281519", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/281519", + "curatorial_section": "Historic", + "object_number": "71-18-10A" + }, + { + "emuIRN": "132216", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/132216", + "curatorial_section": "Historic", + "object_number": "71-18-10B" + }, + { + "emuIRN": "222994", + "description": "Turned wooden spinnters. A-D have stems.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/222994", + "curatorial_section": "Historic", + "object_number": "71-18-17A" + }, + { + "emuIRN": "293378", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/293378", + "curatorial_section": "Historic", + "object_number": "71-18-17B" + }, + { + "emuIRN": "244262", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/244262", + "curatorial_section": "Historic", + "object_number": "71-18-17C" + }, + { + "emuIRN": "97422", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/97422", + "curatorial_section": "Historic", + "object_number": "71-18-17D" + }, + { + "emuIRN": "283240", + "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/283240", + "curatorial_section": "Historic", + "object_number": "71-18-17E" + }, + { + "emuIRN": "199531", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/199531", + "curatorial_section": "Historic", + "object_number": "71-18-20A" + }, + { + "emuIRN": "315942", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/315942", + "curatorial_section": "Historic", + "object_number": "71-18-20B" + }, + { + "emuIRN": "154811", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/154811", + "curatorial_section": "Historic", + "object_number": "71-18-20C" + }, + { + "emuIRN": "119329", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/119329", + "curatorial_section": "Historic", + "object_number": "71-18-20D" + }, + { + "emuIRN": "138169", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/138169", + "curatorial_section": "Historic", + "object_number": "71-18-20E" + }, + { + "emuIRN": "168699", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/168699", + "curatorial_section": "Historic", + "object_number": "71-18-20F" + }, + { + "emuIRN": "165852", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/165852", + "curatorial_section": "Historic", + "object_number": "71-18-20G" + }, + { + "emuIRN": "307682", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/307682", + "curatorial_section": "Historic", + "object_number": "71-18-20H" + }, + { + "emuIRN": "336448", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336448", + "curatorial_section": "Historic", + "object_number": "71-18-32A" + }, + { + "emuIRN": "181753", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/181753", + "curatorial_section": "Historic", + "object_number": "71-18-32B" + }, + { + "emuIRN": "277851", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/277851", + "curatorial_section": "Historic", + "object_number": "71-18-32C" + }, + { + "emuIRN": "44213", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/44213", + "curatorial_section": "Historic", + "object_number": "71-18-32D" + }, + { + "emuIRN": "343371", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/343371", + "curatorial_section": "Historic", + "object_number": "71-18-32E" + }, + { + "emuIRN": "405192", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "period": [ + "Modern" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/405192", + "curatorial_section": "Historic", + "object_number": "71-18-32F" + }, + { + "emuIRN": "174014", + "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinning Toy", + "Supported Top", + "Whistle" + ], + "url": "http://www.penn.museum/collections/object/174014", + "curatorial_section": "Historic", + "object_number": "71-18-72" + }, + { + "emuIRN": "54377", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/54377", + "curatorial_section": "Historic", + "object_number": "71-18-71A" + }, + { + "emuIRN": "336914", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336914", + "curatorial_section": "Historic", + "object_number": "71-18-71B" + }, + { + "emuIRN": "40527", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel", + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/40527", + "curatorial_section": "Historic", + "object_number": "71-18-71C" + }, + { + "emuIRN": "81633", + "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "iconography": [ + "Dog", + "Flag" + ], + "material": [ + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81633", + "other_numbers": [ + "533107" + ], + "curatorial_section": "Historic", + "object_number": "73-1-9" + }, + { + "emuIRN": "315995", + "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/315995", + "curatorial_section": "Historic", + "object_number": "73-1-11" + }, + { + "emuIRN": "81890", + "description": "Bi-colored light plastic top / yo-yo", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81890", + "curatorial_section": "Historic", + "object_number": "73-1-12" + }, + { + "emuIRN": "158974", + "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/158974", + "curatorial_section": "Historic", + "object_number": "73-1-21" + }, + { + "emuIRN": "270492", + "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/270492", + "curatorial_section": "Historic", + "object_number": "73-1-15B" + }, + { + "emuIRN": "122561", + "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "material": [ + "Plastic", + "Nylon" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/122561", + "curatorial_section": "Historic", + "object_number": "75-13-1" + }, + { + "emuIRN": "169135", + "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", + "provenience": [ + "Wisconsin", + "Milwaukee" + ], + "culture": [ + "American" + ], + "creator": [ + "Jak Pak Inc." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/169135", + "curatorial_section": "Historic", + "object_number": "75-13-18" + }, + { + "emuIRN": "265153", + "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", + "provenience": [ + "New York", + "Brooklyn" + ], + "culture": [ + "American" + ], + "creator": [ + "American Magnetop Corp." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/265153", + "curatorial_section": "Historic", + "object_number": "75-13-19" + }, + { + "emuIRN": "258185", + "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Giant Plastics Corp." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/258185", + "curatorial_section": "Historic", + "object_number": "75-13-21" + }, + { + "emuIRN": "112910", + "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", + "provenience": [ + "England" + ], + "culture": [ + "English" + ], + "creator": [ + "Christie & Jay, Ltd" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/112910", + "curatorial_section": "Historic", + "object_number": "75-13-30" + }, + { + "emuIRN": "206818", + "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", + "provenience": [ + "Tennessee", + "Nashville" + ], + "culture": [ + "American" + ], + "creator": [ + "Kusan, Inc" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Yo-Yo", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/206818", + "curatorial_section": "Historic", + "object_number": "75-13-32" + }, + { + "emuIRN": "320134", + "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", + "provenience": [ + "New York", + "Brooklyn" + ], + "creator": [ + "Shimmel" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/320134", + "curatorial_section": "Historic", + "object_number": "75-13-33" + }, + { + "emuIRN": "13411", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/13411", + "curatorial_section": "Historic", + "object_number": "75-13-10A" + }, + { + "emuIRN": "2151", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/2151", + "curatorial_section": "Historic", + "object_number": "75-13-10B" + }, + { + "emuIRN": "227620", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/227620", + "curatorial_section": "Historic", + "object_number": "75-13-10C" + }, + { + "emuIRN": "205966", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/205966", + "curatorial_section": "Historic", + "object_number": "75-13-29A" + }, + { + "emuIRN": "281691", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/281691", + "curatorial_section": "Historic", + "object_number": "75-13-29B" + }, + { + "emuIRN": "99171", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/99171", + "curatorial_section": "Historic", + "object_number": "75-13-29C" + }, + { + "emuIRN": "101034", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/101034", + "curatorial_section": "Historic", + "object_number": "75-13-29D" + }, + { + "emuIRN": "308170", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/308170", + "curatorial_section": "Historic", + "object_number": "75-13-29E" + }, + { + "emuIRN": "212263", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/212263", + "curatorial_section": "Historic", + "object_number": "75-13-29F" + }, + { + "emuIRN": "171295", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/171295", + "curatorial_section": "Historic", + "object_number": "75-13-29G" + }, + { + "emuIRN": "252428", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/252428", + "curatorial_section": "Historic", + "object_number": "75-13-29H" + }, + { + "emuIRN": "33474", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/33474", + "curatorial_section": "Historic", + "object_number": "75-13-29I" + }, + { + "emuIRN": "64988", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/64988", + "curatorial_section": "Historic", + "object_number": "75-13-29J" + }, + { + "emuIRN": "149403", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/149403", + "curatorial_section": "Historic", + "object_number": "75-13-29K" + }, + { + "emuIRN": "192238", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/192238", + "curatorial_section": "Historic", + "object_number": "75-13-29L" + }, + { + "emuIRN": "87050", + "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/87050", + "curatorial_section": "Historic", + "object_number": "75-13-5A" + }, + { + "emuIRN": "241334", + "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", + "provenience": [ + "Hawthorne" + ], + "culture": [ + "American" + ], + "creator": [ + "Mattel, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/241334", + "curatorial_section": "Historic", + "object_number": "75-13-9D" + }, + { + "emuIRN": "77859", + "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/77859", + "curatorial_section": "Historic", + "object_number": "71-18-24" + }, + { + "emuIRN": "285019", + "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top", + "Musical Top" + ], + "url": "http://www.penn.museum/collections/object/285019", + "curatorial_section": "Historic", + "object_number": "71-18-27" + }, + { + "emuIRN": "37984", + "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/37984", + "curatorial_section": "Historic", + "object_number": "71-18-38" + }, + { + "emuIRN": "239276", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/239276", + "curatorial_section": "Historic", + "object_number": "71-18-28A" + }, + { + "emuIRN": "32312", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/32312", + "curatorial_section": "Historic", + "object_number": "71-18-28B" + }, + { + "emuIRN": "65727", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/65727", + "curatorial_section": "Historic", + "object_number": "71-18-28C" + }, + { + "emuIRN": "274339", + "description": "Wire puzzle with boot and cap.", + "provenience": [ + "Europe", + "France (uncertain)" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Wire Puzzle" + ], + "url": "http://www.penn.museum/collections/object/274339", + "curatorial_section": "Historic", + "object_number": "8812" + }, + { + "emuIRN": "159716", + "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Selchow & Richter" + ], + "material": [ + "Cardboard" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/159716", + "date_made_early": "1880", + "date_made": "9/7/1880", + "date_made_late": "1880", + "curatorial_section": "Historic", + "object_number": "15496" + }, + { + "emuIRN": "18643", + "description": "12 lithographed cards with pictures of children's games. Fused to 16555", + "technique": [ + "Lithograph" + ], + "provenience": [ + "France", + "Paris (France)" + ], + "iconography": [ + "Games" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Cards" + ], + "url": "http://www.penn.museum/collections/object/18643", + "curatorial_section": "Historic", + "object_number": "16231" + }, + { + "emuIRN": "34693", + "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Metal", + "Glass", + "Wood" + ], + "accession_credit_line": [ + "Gift of Mrs. John Harrison, 1894" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/34693", + "date_made_early": "1869", + "date_made": "c. 1894", + "date_made_late": "1894", + "curatorial_section": "Historic", + "object_number": "16401" + }, + { + "emuIRN": "93791", + "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", + "provenience": [ + "England", + "London" + ], + "culture": [ + "British" + ], + "accession_credit_line": [ + "Gift of Henry Jones, 1893" + ], + "object_name": [ + "Card Game", + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93791", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "16555" + }, + { + "emuIRN": "117728", + "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "creator": [ + "Donaldson Brothers" + ], + "material": [ + "Paper" + ], + "object_name": [ + "Puzzle", + "Advertisement" + ], + "url": "http://www.penn.museum/collections/object/117728", + "curatorial_section": "Historic", + "object_number": "18578" + }, + { + "emuIRN": "303943", + "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", + "provenience": [ + "Pennsylvania", + "Bucks County" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Glass", + "Metal", + "String", + "Cork" + ], + "accession_credit_line": [ + "Gift of Col. Henry D. Paxson, 1897" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/303943", + "curatorial_section": "Historic", + "object_number": "20067" + }, + { + "emuIRN": "287388", + "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Dr. Max Uhle, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/287388", + "curatorial_section": "Historic", + "object_number": "21082" + }, + { + "emuIRN": "140578", + "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/140578", + "curatorial_section": "Historic", + "object_number": "21458" + }, + { + "emuIRN": "120293", + "description": "Wood Board with instructions. Metal Arm.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120293", + "curatorial_section": "Historic", + "object_number": "21460" + }, + { + "emuIRN": "25280", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/25280", + "curatorial_section": "Historic", + "object_number": "21594A" + }, + { + "emuIRN": "406863", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/406863", + "curatorial_section": "Historic", + "object_number": "21594B" + }, + { + "emuIRN": "93703", + "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "The American Game and Puzzle Company" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93703", + "curatorial_section": "Historic", + "object_number": "29-191-146" + }, + { + "emuIRN": "64758", + "description": "Yamato Block Puzzle - 6 pieces of wood", + "provenience": [ + "Japan" + ], + "culture": [ + "Japanese" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64758", + "curatorial_section": "Historic", + "object_number": "29-191-159" + }, + { + "emuIRN": "64759", + "description": "See Dar Wonderful - 9 pieces of wood", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64759", + "curatorial_section": "Historic", + "object_number": "29-191-160" + }, + { + "emuIRN": "30391", + "description": "12 pieces", + "provenience": [ + "New York", + "New York City" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle", + "Reproduction (uncertain)" + ], + "url": "http://www.penn.museum/collections/object/30391", + "curatorial_section": "Historic", + "object_number": "29-191-161" + }, + { + "emuIRN": "22499", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/22499", + "other_numbers": [ + "4001" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157B" + }, + { + "emuIRN": "120252", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120252", + "other_numbers": [ + "4001?" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157C" + }, + { + "emuIRN": "156290", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/156290", + "other_numbers": [ + "4002" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157D" + }, + { + "emuIRN": "99398", + "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", + "provenience": [ + "Pennsylvania", + "Pittsburgh" + ], + "culture": [ + "American" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Charles Este, Jr., 1899" + ], + "object_name": [ + "Puzzle", + "Trick" + ], + "url": "http://www.penn.museum/collections/object/99398", + "curatorial_section": "Historic", + "object_number": "19783" + }, + { + "emuIRN": "130464", + "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/130464", + "native_name": [ + "Cartes a Jouer" + ], + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "7594" + }, + { + "emuIRN": "160242", + "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/160242", + "date_made_early": "1800", + "date_made": "1800-1899", + "date_made_late": "1899", + "curatorial_section": "Historic", + "object_number": "7595" + }, + { + "emuIRN": "157104", + "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1890" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "url": "http://www.penn.museum/collections/object/157104", + "date_made_early": "1800", + "date_made": "19th century", + "date_made_late": "1890", + "curatorial_section": "Historic", + "object_number": "7629" + }, + { + "emuIRN": "157105", + "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "C. L. Wust" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of J. D. Sergeant, 1890" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/157105", + "curatorial_section": "Historic", + "object_number": "7630" + }, + { + "emuIRN": "98559", + "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "B. Dondorf" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of W. Yorke Stevenson, 1891" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/98559", + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "other_numbers": [ + "27" + ], + "curatorial_section": "Historic", + "object_number": "7712" + }, + { + "emuIRN": "248509", + "description": "Card dominoes in box.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Card Game", + "Dominoe" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/248509", + "curatorial_section": "Historic", + "object_number": "8813" + }, + { + "emuIRN": "137944", + "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/137944", + "date_made_early": "1866", + "date_made": "c. 1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "9011" + }, + { + "emuIRN": "194220", + "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "creator": [ + "Watilliaux" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/194220", + "date_made_early": "1878", + "date_made": "1878", + "date_made_late": "1878", + "curatorial_section": "Historic", + "object_number": "9018" + }, + { + "emuIRN": "205296", + "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", + "technique": [ + "Printed" + ], + "provenience": [ + "Mexico (Central America)", + "Puebla (Mexican State)" + ], + "culture": [ + "Spanish" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of the US National Museum, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/205296", + "date_made_early": "1873", + "date_made": "1873-1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15360" + }, + { + "emuIRN": "21030", + "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Fortune Telling Cards" + ], + "url": "http://www.penn.museum/collections/object/21030", + "date_made_early": "1865", + "date_made": "pre 1890", + "date_made_late": "1890", + "other_numbers": [ + "43" + ], + "curatorial_section": "Historic", + "object_number": "15513" + }, + { + "emuIRN": "46932", + "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", + "provenience": [ + "Italy", + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/46932", + "date_made_early": "1880", + "date_made": "1880-1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15528" + }, + { + "emuIRN": "220035", + "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/220035", + "date_made_early": "29 Nov 1890", + "date_made": "11/29/1890", + "date_made_late": "29 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15529" + }, + { + "emuIRN": "220036", + "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/220036", + "date_made_early": "27 Oct 1890", + "date_made": "10/27/1890", + "date_made_late": "27 Oct 1890", + "other_numbers": [ + "42" + ], + "curatorial_section": "Historic", + "object_number": "15530" + }, + { + "emuIRN": "289473", + "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/289473", + "date_made_early": "17 Jan 1887", + "date_made": "1/17/1887", + "date_made_late": "17 Jan 1887", + "curatorial_section": "Historic", + "object_number": "15532" + }, + { + "emuIRN": "114394", + "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/114394", + "date_made_early": "1867", + "date_made": " pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15533" + }, + { + "emuIRN": "82994", + "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/82994", + "date_made_early": "17 Jun 1890", + "date_made": "6/17/1890", + "date_made_late": "17 Jun 1890", + "other_numbers": [ + "13" + ], + "curatorial_section": "Historic", + "object_number": "15534" + }, + { + "emuIRN": "233242", + "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/233242", + "date_made_early": "13 Mar 1891", + "date_made": "3/13/1891", + "date_made_late": "13 Mar 1891", + "other_numbers": [ + "5" + ], + "curatorial_section": "Historic", + "object_number": "15536" + }, + { + "emuIRN": "237987", + "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/237987", + "date_made_early": "13 Mar 1891", + "date_made": "pre 1892", + "date_made_late": "13 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15537" + }, + { + "emuIRN": "264110", + "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/264110", + "date_made_early": "1867", + "date_made": "pre 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15538" + }, + { + "emuIRN": "36188", + "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/36188", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15540" + }, + { + "emuIRN": "154504", + "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/154504", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15541" + }, + { + "emuIRN": "203963", + "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/203963", + "date_made_early": "27 Aug 1891", + "date_made": "8/27/1891", + "date_made_late": "27 Aug 1891", + "curatorial_section": "Historic", + "object_number": "15543" + }, + { + "emuIRN": "241994", + "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/241994", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15544" + }, + { + "emuIRN": "243680", + "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/243680", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15545" + }, + { + "emuIRN": "87145", + "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/87145", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15546" + }, + { + "emuIRN": "59271", + "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/59271", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15547" + }, + { + "emuIRN": "336096", + "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/336096", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15548" + }, + { + "emuIRN": "203973", + "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/203973", + "date_made_early": "09 Apr 1888", + "date_made": "4/9/1888", + "date_made_late": "09 Apr 1888", + "curatorial_section": "Historic", + "object_number": "15550" + }, + { + "emuIRN": "238541", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/238541", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15552" + }, + { + "emuIRN": "131933", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/131933", + "date_made_early": "16 Jun 1891", + "date_made": "6/16/1891", + "date_made_late": "16 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15553" + }, + { + "emuIRN": "158923", + "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/158923", + "date_made_early": "01 Jun 1891", + "date_made": "6/1/1891", + "date_made_late": "01 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15554" + }, + { + "emuIRN": "103187", + "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/103187", + "native_name": [ + "Tarocchino" + ], + "date_made_early": "03 Feb 1891", + "date_made": "2/3/1891", + "date_made_late": "03 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15555" + }, + { + "emuIRN": "178709", + "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", + "provenience": [ + "Italy", + "Povoletto-Udine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "F. L. Muccioli" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/178709", + "date_made_early": "09 May 1890", + "date_made": "5/9/1890", + "date_made_late": "09 May 1890", + "curatorial_section": "Historic", + "object_number": "15556" + }, + { + "emuIRN": "277112", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/277112", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15557" + }, + { + "emuIRN": "25552", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/25552", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15558" + }, + { + "emuIRN": "325482", + "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/325482", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1895", + "curatorial_section": "Historic", + "object_number": "15559" + }, + { + "emuIRN": "325483", + "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/325483", + "date_made_early": "12 Mar 2091", + "date_made": "3/12/91", + "date_made_late": "12 Mar 2091", + "curatorial_section": "Historic", + "object_number": "15560" + }, + { + "emuIRN": "48114", + "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/48114", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "22 Jun 1891", + "date_made": "6/22/1891", + "date_made_late": "22 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15561" + }, + { + "emuIRN": "167380", + "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/167380", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15562" + }, + { + "emuIRN": "321272", + "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Vincenzo Russo" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack", + "Neopolitan Pack" + ], + "url": "http://www.penn.museum/collections/object/321272", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "11 Feb 1891", + "date_made": "2/11/1891", + "date_made_late": "11 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15563" + }, + { + "emuIRN": "279915", + "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Luigi Pignalosa" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/279915", + "date_made_early": "14 Feb 1891", + "date_made": "2/14/1891", + "date_made_late": "14 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15564" + }, + { + "emuIRN": "157272", + "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/157272", + "date_made_early": "04 Oct 1888", + "date_made": "10/4/1888", + "date_made_late": "04 Oct 1888", + "curatorial_section": "Historic", + "object_number": "15566" + }, + { + "emuIRN": "88522", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/88522", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15567" + }, + { + "emuIRN": "177453", + "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/177453", + "date_made_early": "24 Mar 1891", + "date_made": "3/24/1891", + "date_made_late": "24 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15568" + }, + { + "emuIRN": "322855", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322855", + "date_made_early": "25 Nov 1890", + "date_made": "11/25/1890", + "date_made_late": "25 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15569" + }, + { + "emuIRN": "322856", + "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322856", + "date_made_early": "27 Jul 2091", + "date_made": "7/27/91", + "date_made_late": "27 Jul 2091", + "curatorial_section": "Historic", + "object_number": "15570" + }, + { + "emuIRN": "289232", + "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/289232", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15571" + }, + { + "emuIRN": "71704", + "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "L. Bartolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/71704", + "date_made_early": "02 Jul 1892", + "date_made": "7/2/1892", + "date_made_late": "02 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15572" + }, + { + "emuIRN": "341571", + "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Silvertrini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/341571", + "date_made_early": "01 Jul 1892", + "date_made": "7/1/1892", + "date_made_late": "01 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15573" + }, + { + "emuIRN": "231215", + "description": "Playing card deck - 44 cards", + "provenience": [ + "Italy", + "Bergamo" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Masenghini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Milanese Deck" + ], + "url": "http://www.penn.museum/collections/object/231215", + "curatorial_section": "Historic", + "object_number": "15575" + }, + { + "emuIRN": "290651", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", + "provenience": [ + "Italy", + "Trento" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giac. Bertoldi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/290651", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15577" + }, + { + "emuIRN": "116249", + "description": "Playing card deck - 40 cards, printed back with pink abstract designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/116249", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15578" + }, + { + "emuIRN": "76331", + "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/76331", + "date_made_early": "1867", + "date_made": "c.1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15579" + }, + { + "emuIRN": "76332", + "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/76332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15580" + }, + { + "emuIRN": "189908", + "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/189908", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15583" + }, + { + "emuIRN": "275719", + "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/275719", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15584" + }, + { + "emuIRN": "51584", + "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/51584", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15585" + }, + { + "emuIRN": "56004", + "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Crispolani" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/56004", + "date_made_early": "1850", + "date_made": "circa 1860", + "date_made_late": "1870", + "curatorial_section": "Historic", + "object_number": "15586" + }, + { + "emuIRN": "124979", + "description": "Playing card deck - Tarocchi/Tarot - 78 cards", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/124979", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15587" + }, + { + "emuIRN": "212458", + "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "url": "http://www.penn.museum/collections/object/212458", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15588" + }, + { + "emuIRN": "309331", + "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "G. C. Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309331", + "date_made_early": "30 Mar 1891", + "date_made": "3/30/1891", + "date_made_late": "30 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15589" + }, + { + "emuIRN": "309332", + "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15590" + }, + { + "emuIRN": "86979", + "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/86979", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15592" + }, + { + "emuIRN": "5817", + "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5817", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15594" + }, + { + "emuIRN": "170983", + "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Baby", + "Angel" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/170983", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15595" + }, + { + "emuIRN": "300071", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Tambourine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/300071", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15596" + }, + { + "emuIRN": "236603", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236603", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15597" + }, + { + "emuIRN": "141064", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141064", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15598" + }, + { + "emuIRN": "126294", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", + "provenience": [ + "Italy", + "Treviso" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Francesca Rino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/126294", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15599" + }, + { + "emuIRN": "309333", + "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", + "provenience": [ + "Italy", + "Parma (Italy)" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Faelli Carlo" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309333", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15600" + }, + { + "emuIRN": "261187", + "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Cassini Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Cucu" + ], + "url": "http://www.penn.museum/collections/object/261187", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15601" + }, + { + "emuIRN": "5818", + "description": "40 cards with wrapper. Printed back: green and blue plaid", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5818", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15604" + }, + { + "emuIRN": "236604", + "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236604", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15607" + }, + { + "emuIRN": "141065", + "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141065", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15608" + }, + { + "emuIRN": "319728", + "description": "Playing card deck - 40 cards", + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/319728", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15621" + }, + { + "emuIRN": "119150", + "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Florentine Pack" + ], + "url": "http://www.penn.museum/collections/object/119150", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15622" + }, + { + "emuIRN": "92457", + "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/92457", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15623" + }, + { + "emuIRN": "406753", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406753", + "curatorial_section": "Historic", + "object_number": "19124.15" + }, + { + "emuIRN": "406754", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406754", + "curatorial_section": "Historic", + "object_number": "19124.16" + }, + { + "emuIRN": "406755", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406755", + "curatorial_section": "Historic", + "object_number": "19124.17" + }, + { + "emuIRN": "406756", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406756", + "curatorial_section": "Historic", + "object_number": "19124.18" + }, + { + "emuIRN": "406757", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406757", + "curatorial_section": "Historic", + "object_number": "19124.19" + }, + { + "emuIRN": "406758", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406758", + "curatorial_section": "Historic", + "object_number": "19124.20" + }, + { + "emuIRN": "406759", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406759", + "curatorial_section": "Historic", + "object_number": "19124.21" + }, + { + "emuIRN": "406760", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406760", + "curatorial_section": "Historic", + "object_number": "19124.22" + }, + { + "emuIRN": "406761", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406761", + "curatorial_section": "Historic", + "object_number": "19124.23" + }, + { + "emuIRN": "406762", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406762", + "curatorial_section": "Historic", + "object_number": "19124.24" + }, + { + "emuIRN": "406763", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406763", + "curatorial_section": "Historic", + "object_number": "19124.25" + }, + { + "emuIRN": "406764", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406764", + "curatorial_section": "Historic", + "object_number": "19124.26" + }, + { + "emuIRN": "330556", + "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", + "provenience": [ + "Europe (uncertain)" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/330556", + "curatorial_section": "Historic", + "object_number": "29-191-128" + }, + { + "emuIRN": "321909", + "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/321909", + "curatorial_section": "Historic", + "object_number": "29-191-129" + }, + { + "emuIRN": "127367", + "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/127367", + "curatorial_section": "Historic", + "object_number": "29-191-227" + }, + { + "emuIRN": "203363", + "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", + "technique": [ + "Painted" + ], + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Paint", + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/203363", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15792" + }, + { + "emuIRN": "185526", + "description": "Red and gold sphere with small metall loop on 1 end", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of H. C. Thomson, 1894" + ], + "object_name": [ + "Whistling Top" + ], + "url": "http://www.penn.museum/collections/object/185526", + "curatorial_section": "Historic", + "object_number": "17817" + }, + { + "emuIRN": "59206", + "description": "Wood ball with metal spike. Cord for spinning", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top", + "Cord" + ], + "url": "http://www.penn.museum/collections/object/59206", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19214" + }, + { + "emuIRN": "186142", + "description": "Turned wood, bell-shaped with metal spike.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/186142", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19216" + }, + { + "emuIRN": "234646", + "description": "Toy rolling disc - wooden.", + "provenience": [ + "Italy" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Henry H. Giglioli, 1896" + ], + "object_name": [ + "Spinning Toy (uncertain)", + "Rolling Disc" + ], + "url": "http://www.penn.museum/collections/object/234646", + "curatorial_section": "Historic", + "object_number": "19217" + }, + { + "emuIRN": "134935", + "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal", + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1897" + ], + "object_name": [ + "Pinwheel" + ], + "url": "http://www.penn.museum/collections/object/134935", + "curatorial_section": "Historic", + "object_number": "20037" + }, + { + "emuIRN": "340545", + "description": "Turned wood ball with metal peg. Smaller version of 19214.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/340545", + "curatorial_section": "Historic", + "object_number": "19215A" + }, + { + "emuIRN": "273066", + "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Top Die", + "Teetotum" + ], + "url": "http://www.penn.museum/collections/object/273066", + "curatorial_section": "Historic", + "object_number": "71-18-6" + }, + { + "emuIRN": "146612", + "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", + "provenience": [ + "Japan" + ], + "material": [ + "Brass", + "Tin" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/146612", + "curatorial_section": "Historic", + "object_number": "71-18-11" + }, + { + "emuIRN": "264736", + "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top" + ], + "url": "http://www.penn.museum/collections/object/264736", + "curatorial_section": "Historic", + "object_number": "71-18-41" + }, + { + "emuIRN": "128464", + "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", + "provenience": [ + "West Germany" + ], + "culture": [ + "German" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/128464", + "curatorial_section": "Historic", + "object_number": "71-18-45" + }, + { + "emuIRN": "102950", + "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top", + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/102950", + "curatorial_section": "Historic", + "object_number": "71-18-50" + }, + { + "emuIRN": "215073", + "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Gyroscope" + ], + "url": "http://www.penn.museum/collections/object/215073", + "curatorial_section": "Historic", + "object_number": "71-18-53" + }, + { + "emuIRN": "281519", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/281519", + "curatorial_section": "Historic", + "object_number": "71-18-10A" + }, + { + "emuIRN": "132216", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/132216", + "curatorial_section": "Historic", + "object_number": "71-18-10B" + }, + { + "emuIRN": "222994", + "description": "Turned wooden spinnters. A-D have stems.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/222994", + "curatorial_section": "Historic", + "object_number": "71-18-17A" + }, + { + "emuIRN": "293378", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/293378", + "curatorial_section": "Historic", + "object_number": "71-18-17B" + }, + { + "emuIRN": "244262", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/244262", + "curatorial_section": "Historic", + "object_number": "71-18-17C" + }, + { + "emuIRN": "97422", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/97422", + "curatorial_section": "Historic", + "object_number": "71-18-17D" + }, + { + "emuIRN": "283240", + "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/283240", + "curatorial_section": "Historic", + "object_number": "71-18-17E" + }, + { + "emuIRN": "199531", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/199531", + "curatorial_section": "Historic", + "object_number": "71-18-20A" + }, + { + "emuIRN": "315942", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/315942", + "curatorial_section": "Historic", + "object_number": "71-18-20B" + }, + { + "emuIRN": "154811", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/154811", + "curatorial_section": "Historic", + "object_number": "71-18-20C" + }, + { + "emuIRN": "119329", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/119329", + "curatorial_section": "Historic", + "object_number": "71-18-20D" + }, + { + "emuIRN": "138169", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/138169", + "curatorial_section": "Historic", + "object_number": "71-18-20E" + }, + { + "emuIRN": "168699", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/168699", + "curatorial_section": "Historic", + "object_number": "71-18-20F" + }, + { + "emuIRN": "165852", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/165852", + "curatorial_section": "Historic", + "object_number": "71-18-20G" + }, + { + "emuIRN": "307682", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/307682", + "curatorial_section": "Historic", + "object_number": "71-18-20H" + }, + { + "emuIRN": "336448", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336448", + "curatorial_section": "Historic", + "object_number": "71-18-32A" + }, + { + "emuIRN": "181753", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/181753", + "curatorial_section": "Historic", + "object_number": "71-18-32B" + }, + { + "emuIRN": "277851", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/277851", + "curatorial_section": "Historic", + "object_number": "71-18-32C" + }, + { + "emuIRN": "44213", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/44213", + "curatorial_section": "Historic", + "object_number": "71-18-32D" + }, + { + "emuIRN": "343371", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/343371", + "curatorial_section": "Historic", + "object_number": "71-18-32E" + }, + { + "emuIRN": "405192", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "period": [ + "Modern" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/405192", + "curatorial_section": "Historic", + "object_number": "71-18-32F" + }, + { + "emuIRN": "174014", + "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinning Toy", + "Supported Top", + "Whistle" + ], + "url": "http://www.penn.museum/collections/object/174014", + "curatorial_section": "Historic", + "object_number": "71-18-72" + }, + { + "emuIRN": "54377", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/54377", + "curatorial_section": "Historic", + "object_number": "71-18-71A" + }, + { + "emuIRN": "336914", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336914", + "curatorial_section": "Historic", + "object_number": "71-18-71B" + }, + { + "emuIRN": "40527", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel", + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/40527", + "curatorial_section": "Historic", + "object_number": "71-18-71C" + }, + { + "emuIRN": "81633", + "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "iconography": [ + "Dog", + "Flag" + ], + "material": [ + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81633", + "other_numbers": [ + "533107" + ], + "curatorial_section": "Historic", + "object_number": "73-1-9" + }, + { + "emuIRN": "315995", + "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/315995", + "curatorial_section": "Historic", + "object_number": "73-1-11" + }, + { + "emuIRN": "81890", + "description": "Bi-colored light plastic top / yo-yo", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81890", + "curatorial_section": "Historic", + "object_number": "73-1-12" + }, + { + "emuIRN": "158974", + "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/158974", + "curatorial_section": "Historic", + "object_number": "73-1-21" + }, + { + "emuIRN": "270492", + "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/270492", + "curatorial_section": "Historic", + "object_number": "73-1-15B" + }, + { + "emuIRN": "122561", + "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "material": [ + "Plastic", + "Nylon" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/122561", + "curatorial_section": "Historic", + "object_number": "75-13-1" + }, + { + "emuIRN": "169135", + "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", + "provenience": [ + "Wisconsin", + "Milwaukee" + ], + "culture": [ + "American" + ], + "creator": [ + "Jak Pak Inc." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/169135", + "curatorial_section": "Historic", + "object_number": "75-13-18" + }, + { + "emuIRN": "265153", + "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", + "provenience": [ + "New York", + "Brooklyn" + ], + "culture": [ + "American" + ], + "creator": [ + "American Magnetop Corp." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/265153", + "curatorial_section": "Historic", + "object_number": "75-13-19" + }, + { + "emuIRN": "258185", + "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Giant Plastics Corp." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/258185", + "curatorial_section": "Historic", + "object_number": "75-13-21" + }, + { + "emuIRN": "112910", + "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", + "provenience": [ + "England" + ], + "culture": [ + "English" + ], + "creator": [ + "Christie & Jay, Ltd" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/112910", + "curatorial_section": "Historic", + "object_number": "75-13-30" + }, + { + "emuIRN": "206818", + "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", + "provenience": [ + "Tennessee", + "Nashville" + ], + "culture": [ + "American" + ], + "creator": [ + "Kusan, Inc" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Yo-Yo", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/206818", + "curatorial_section": "Historic", + "object_number": "75-13-32" + }, + { + "emuIRN": "320134", + "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", + "provenience": [ + "New York", + "Brooklyn" + ], + "creator": [ + "Shimmel" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/320134", + "curatorial_section": "Historic", + "object_number": "75-13-33" + }, + { + "emuIRN": "13411", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/13411", + "curatorial_section": "Historic", + "object_number": "75-13-10A" + }, + { + "emuIRN": "2151", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/2151", + "curatorial_section": "Historic", + "object_number": "75-13-10B" + }, + { + "emuIRN": "227620", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/227620", + "curatorial_section": "Historic", + "object_number": "75-13-10C" + }, + { + "emuIRN": "205966", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/205966", + "curatorial_section": "Historic", + "object_number": "75-13-29A" + }, + { + "emuIRN": "281691", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/281691", + "curatorial_section": "Historic", + "object_number": "75-13-29B" + }, + { + "emuIRN": "99171", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/99171", + "curatorial_section": "Historic", + "object_number": "75-13-29C" + }, + { + "emuIRN": "101034", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/101034", + "curatorial_section": "Historic", + "object_number": "75-13-29D" + }, + { + "emuIRN": "308170", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/308170", + "curatorial_section": "Historic", + "object_number": "75-13-29E" + }, + { + "emuIRN": "212263", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/212263", + "curatorial_section": "Historic", + "object_number": "75-13-29F" + }, + { + "emuIRN": "171295", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/171295", + "curatorial_section": "Historic", + "object_number": "75-13-29G" + }, + { + "emuIRN": "252428", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/252428", + "curatorial_section": "Historic", + "object_number": "75-13-29H" + }, + { + "emuIRN": "33474", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/33474", + "curatorial_section": "Historic", + "object_number": "75-13-29I" + }, + { + "emuIRN": "64988", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/64988", + "curatorial_section": "Historic", + "object_number": "75-13-29J" + }, + { + "emuIRN": "149403", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/149403", + "curatorial_section": "Historic", + "object_number": "75-13-29K" + }, + { + "emuIRN": "192238", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/192238", + "curatorial_section": "Historic", + "object_number": "75-13-29L" + }, + { + "emuIRN": "87050", + "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/87050", + "curatorial_section": "Historic", + "object_number": "75-13-5A" + }, + { + "emuIRN": "241334", + "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", + "provenience": [ + "Hawthorne" + ], + "culture": [ + "American" + ], + "creator": [ + "Mattel, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/241334", + "curatorial_section": "Historic", + "object_number": "75-13-9D" + }, + { + "emuIRN": "77859", + "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/77859", + "curatorial_section": "Historic", + "object_number": "71-18-24" + }, + { + "emuIRN": "285019", + "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top", + "Musical Top" + ], + "url": "http://www.penn.museum/collections/object/285019", + "curatorial_section": "Historic", + "object_number": "71-18-27" + }, + { + "emuIRN": "37984", + "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/37984", + "curatorial_section": "Historic", + "object_number": "71-18-38" + }, + { + "emuIRN": "239276", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/239276", + "curatorial_section": "Historic", + "object_number": "71-18-28A" + }, + { + "emuIRN": "32312", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/32312", + "curatorial_section": "Historic", + "object_number": "71-18-28B" + }, + { + "emuIRN": "65727", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/65727", + "curatorial_section": "Historic", + "object_number": "71-18-28C" + }, + { + "emuIRN": "274339", + "description": "Wire puzzle with boot and cap.", + "provenience": [ + "Europe", + "France (uncertain)" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Wire Puzzle" + ], + "url": "http://www.penn.museum/collections/object/274339", + "curatorial_section": "Historic", + "object_number": "8812" + }, + { + "emuIRN": "159716", + "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Selchow & Richter" + ], + "material": [ + "Cardboard" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/159716", + "date_made_early": "1880", + "date_made": "9/7/1880", + "date_made_late": "1880", + "curatorial_section": "Historic", + "object_number": "15496" + }, + { + "emuIRN": "18643", + "description": "12 lithographed cards with pictures of children's games. Fused to 16555", + "technique": [ + "Lithograph" + ], + "provenience": [ + "France", + "Paris (France)" + ], + "iconography": [ + "Games" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Cards" + ], + "url": "http://www.penn.museum/collections/object/18643", + "curatorial_section": "Historic", + "object_number": "16231" + }, + { + "emuIRN": "34693", + "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Metal", + "Glass", + "Wood" + ], + "accession_credit_line": [ + "Gift of Mrs. John Harrison, 1894" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/34693", + "date_made_early": "1869", + "date_made": "c. 1894", + "date_made_late": "1894", + "curatorial_section": "Historic", + "object_number": "16401" + }, + { + "emuIRN": "93791", + "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", + "provenience": [ + "England", + "London" + ], + "culture": [ + "British" + ], + "accession_credit_line": [ + "Gift of Henry Jones, 1893" + ], + "object_name": [ + "Card Game", + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93791", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "16555" + }, + { + "emuIRN": "117728", + "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "creator": [ + "Donaldson Brothers" + ], + "material": [ + "Paper" + ], + "object_name": [ + "Puzzle", + "Advertisement" + ], + "url": "http://www.penn.museum/collections/object/117728", + "curatorial_section": "Historic", + "object_number": "18578" + }, + { + "emuIRN": "303943", + "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", + "provenience": [ + "Pennsylvania", + "Bucks County" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Glass", + "Metal", + "String", + "Cork" + ], + "accession_credit_line": [ + "Gift of Col. Henry D. Paxson, 1897" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/303943", + "curatorial_section": "Historic", + "object_number": "20067" + }, + { + "emuIRN": "287388", + "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Dr. Max Uhle, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/287388", + "curatorial_section": "Historic", + "object_number": "21082" + }, + { + "emuIRN": "140578", + "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/140578", + "curatorial_section": "Historic", + "object_number": "21458" + }, + { + "emuIRN": "120293", + "description": "Wood Board with instructions. Metal Arm.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120293", + "curatorial_section": "Historic", + "object_number": "21460" + }, + { + "emuIRN": "25280", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/25280", + "curatorial_section": "Historic", + "object_number": "21594A" + }, + { + "emuIRN": "406863", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/406863", + "curatorial_section": "Historic", + "object_number": "21594B" + }, + { + "emuIRN": "93703", + "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "The American Game and Puzzle Company" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93703", + "curatorial_section": "Historic", + "object_number": "29-191-146" + }, + { + "emuIRN": "64758", + "description": "Yamato Block Puzzle - 6 pieces of wood", + "provenience": [ + "Japan" + ], + "culture": [ + "Japanese" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64758", + "curatorial_section": "Historic", + "object_number": "29-191-159" + }, + { + "emuIRN": "64759", + "description": "See Dar Wonderful - 9 pieces of wood", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64759", + "curatorial_section": "Historic", + "object_number": "29-191-160" + }, + { + "emuIRN": "30391", + "description": "12 pieces", + "provenience": [ + "New York", + "New York City" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle", + "Reproduction (uncertain)" + ], + "url": "http://www.penn.museum/collections/object/30391", + "curatorial_section": "Historic", + "object_number": "29-191-161" + }, + { + "emuIRN": "22499", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/22499", + "other_numbers": [ + "4001" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157B" + }, + { + "emuIRN": "120252", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120252", + "other_numbers": [ + "4001?" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157C" + }, + { + "emuIRN": "156290", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/156290", + "other_numbers": [ + "4002" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157D" + }, + { + "emuIRN": "99398", + "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", + "provenience": [ + "Pennsylvania", + "Pittsburgh" + ], + "culture": [ + "American" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Charles Este, Jr., 1899" + ], + "object_name": [ + "Puzzle", + "Trick" + ], + "url": "http://www.penn.museum/collections/object/99398", + "curatorial_section": "Historic", + "object_number": "19783" + }, + { + "emuIRN": "130464", + "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/130464", + "native_name": [ + "Cartes a Jouer" + ], + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "7594" + }, + { + "emuIRN": "160242", + "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/160242", + "date_made_early": "1800", + "date_made": "1800-1899", + "date_made_late": "1899", + "curatorial_section": "Historic", + "object_number": "7595" + }, + { + "emuIRN": "157104", + "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1890" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "url": "http://www.penn.museum/collections/object/157104", + "date_made_early": "1800", + "date_made": "19th century", + "date_made_late": "1890", + "curatorial_section": "Historic", + "object_number": "7629" + }, + { + "emuIRN": "157105", + "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "C. L. Wust" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of J. D. Sergeant, 1890" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/157105", + "curatorial_section": "Historic", + "object_number": "7630" + }, + { + "emuIRN": "98559", + "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "B. Dondorf" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of W. Yorke Stevenson, 1891" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/98559", + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "other_numbers": [ + "27" + ], + "curatorial_section": "Historic", + "object_number": "7712" + }, + { + "emuIRN": "248509", + "description": "Card dominoes in box.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Card Game", + "Dominoe" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/248509", + "curatorial_section": "Historic", + "object_number": "8813" + }, + { + "emuIRN": "137944", + "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/137944", + "date_made_early": "1866", + "date_made": "c. 1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "9011" + }, + { + "emuIRN": "194220", + "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "creator": [ + "Watilliaux" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/194220", + "date_made_early": "1878", + "date_made": "1878", + "date_made_late": "1878", + "curatorial_section": "Historic", + "object_number": "9018" + }, + { + "emuIRN": "205296", + "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", + "technique": [ + "Printed" + ], + "provenience": [ + "Mexico (Central America)", + "Puebla (Mexican State)" + ], + "culture": [ + "Spanish" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of the US National Museum, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/205296", + "date_made_early": "1873", + "date_made": "1873-1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15360" + }, + { + "emuIRN": "21030", + "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Fortune Telling Cards" + ], + "url": "http://www.penn.museum/collections/object/21030", + "date_made_early": "1865", + "date_made": "pre 1890", + "date_made_late": "1890", + "other_numbers": [ + "43" + ], + "curatorial_section": "Historic", + "object_number": "15513" + }, + { + "emuIRN": "46932", + "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", + "provenience": [ + "Italy", + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/46932", + "date_made_early": "1880", + "date_made": "1880-1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15528" + }, + { + "emuIRN": "220035", + "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/220035", + "date_made_early": "29 Nov 1890", + "date_made": "11/29/1890", + "date_made_late": "29 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15529" + }, + { + "emuIRN": "220036", + "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/220036", + "date_made_early": "27 Oct 1890", + "date_made": "10/27/1890", + "date_made_late": "27 Oct 1890", + "other_numbers": [ + "42" + ], + "curatorial_section": "Historic", + "object_number": "15530" + }, + { + "emuIRN": "289473", + "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/289473", + "date_made_early": "17 Jan 1887", + "date_made": "1/17/1887", + "date_made_late": "17 Jan 1887", + "curatorial_section": "Historic", + "object_number": "15532" + }, + { + "emuIRN": "114394", + "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/114394", + "date_made_early": "1867", + "date_made": " pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15533" + }, + { + "emuIRN": "82994", + "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/82994", + "date_made_early": "17 Jun 1890", + "date_made": "6/17/1890", + "date_made_late": "17 Jun 1890", + "other_numbers": [ + "13" + ], + "curatorial_section": "Historic", + "object_number": "15534" + }, + { + "emuIRN": "233242", + "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/233242", + "date_made_early": "13 Mar 1891", + "date_made": "3/13/1891", + "date_made_late": "13 Mar 1891", + "other_numbers": [ + "5" + ], + "curatorial_section": "Historic", + "object_number": "15536" + }, + { + "emuIRN": "237987", + "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/237987", + "date_made_early": "13 Mar 1891", + "date_made": "pre 1892", + "date_made_late": "13 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15537" + }, + { + "emuIRN": "264110", + "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/264110", + "date_made_early": "1867", + "date_made": "pre 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15538" + }, + { + "emuIRN": "36188", + "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/36188", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15540" + }, + { + "emuIRN": "154504", + "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/154504", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15541" + }, + { + "emuIRN": "203963", + "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/203963", + "date_made_early": "27 Aug 1891", + "date_made": "8/27/1891", + "date_made_late": "27 Aug 1891", + "curatorial_section": "Historic", + "object_number": "15543" + }, + { + "emuIRN": "241994", + "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/241994", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15544" + }, + { + "emuIRN": "243680", + "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/243680", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15545" + }, + { + "emuIRN": "87145", + "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/87145", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15546" + }, + { + "emuIRN": "59271", + "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/59271", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15547" + }, + { + "emuIRN": "336096", + "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/336096", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15548" + }, + { + "emuIRN": "203973", + "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/203973", + "date_made_early": "09 Apr 1888", + "date_made": "4/9/1888", + "date_made_late": "09 Apr 1888", + "curatorial_section": "Historic", + "object_number": "15550" + }, + { + "emuIRN": "238541", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/238541", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15552" + }, + { + "emuIRN": "131933", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/131933", + "date_made_early": "16 Jun 1891", + "date_made": "6/16/1891", + "date_made_late": "16 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15553" + }, + { + "emuIRN": "158923", + "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/158923", + "date_made_early": "01 Jun 1891", + "date_made": "6/1/1891", + "date_made_late": "01 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15554" + }, + { + "emuIRN": "103187", + "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/103187", + "native_name": [ + "Tarocchino" + ], + "date_made_early": "03 Feb 1891", + "date_made": "2/3/1891", + "date_made_late": "03 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15555" + }, + { + "emuIRN": "178709", + "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", + "provenience": [ + "Italy", + "Povoletto-Udine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "F. L. Muccioli" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/178709", + "date_made_early": "09 May 1890", + "date_made": "5/9/1890", + "date_made_late": "09 May 1890", + "curatorial_section": "Historic", + "object_number": "15556" + }, + { + "emuIRN": "277112", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/277112", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15557" + }, + { + "emuIRN": "25552", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/25552", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15558" + }, + { + "emuIRN": "325482", + "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/325482", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1895", + "curatorial_section": "Historic", + "object_number": "15559" + }, + { + "emuIRN": "325483", + "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/325483", + "date_made_early": "12 Mar 2091", + "date_made": "3/12/91", + "date_made_late": "12 Mar 2091", + "curatorial_section": "Historic", + "object_number": "15560" + }, + { + "emuIRN": "48114", + "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/48114", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "22 Jun 1891", + "date_made": "6/22/1891", + "date_made_late": "22 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15561" + }, + { + "emuIRN": "167380", + "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/167380", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15562" + }, + { + "emuIRN": "321272", + "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Vincenzo Russo" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack", + "Neopolitan Pack" + ], + "url": "http://www.penn.museum/collections/object/321272", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "11 Feb 1891", + "date_made": "2/11/1891", + "date_made_late": "11 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15563" + }, + { + "emuIRN": "279915", + "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Luigi Pignalosa" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/279915", + "date_made_early": "14 Feb 1891", + "date_made": "2/14/1891", + "date_made_late": "14 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15564" + }, + { + "emuIRN": "157272", + "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/157272", + "date_made_early": "04 Oct 1888", + "date_made": "10/4/1888", + "date_made_late": "04 Oct 1888", + "curatorial_section": "Historic", + "object_number": "15566" + }, + { + "emuIRN": "88522", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/88522", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15567" + }, + { + "emuIRN": "177453", + "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/177453", + "date_made_early": "24 Mar 1891", + "date_made": "3/24/1891", + "date_made_late": "24 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15568" + }, + { + "emuIRN": "322855", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322855", + "date_made_early": "25 Nov 1890", + "date_made": "11/25/1890", + "date_made_late": "25 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15569" + }, + { + "emuIRN": "322856", + "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322856", + "date_made_early": "27 Jul 2091", + "date_made": "7/27/91", + "date_made_late": "27 Jul 2091", + "curatorial_section": "Historic", + "object_number": "15570" + }, + { + "emuIRN": "289232", + "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/289232", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15571" + }, + { + "emuIRN": "71704", + "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "L. Bartolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/71704", + "date_made_early": "02 Jul 1892", + "date_made": "7/2/1892", + "date_made_late": "02 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15572" + }, + { + "emuIRN": "341571", + "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Silvertrini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/341571", + "date_made_early": "01 Jul 1892", + "date_made": "7/1/1892", + "date_made_late": "01 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15573" + }, + { + "emuIRN": "231215", + "description": "Playing card deck - 44 cards", + "provenience": [ + "Italy", + "Bergamo" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Masenghini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Milanese Deck" + ], + "url": "http://www.penn.museum/collections/object/231215", + "curatorial_section": "Historic", + "object_number": "15575" + }, + { + "emuIRN": "290651", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", + "provenience": [ + "Italy", + "Trento" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giac. Bertoldi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/290651", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15577" + }, + { + "emuIRN": "116249", + "description": "Playing card deck - 40 cards, printed back with pink abstract designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/116249", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15578" + }, + { + "emuIRN": "76331", + "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/76331", + "date_made_early": "1867", + "date_made": "c.1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15579" + }, + { + "emuIRN": "76332", + "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/76332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15580" + }, + { + "emuIRN": "189908", + "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/189908", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15583" + }, + { + "emuIRN": "275719", + "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/275719", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15584" + }, + { + "emuIRN": "51584", + "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/51584", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15585" + }, + { + "emuIRN": "56004", + "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Crispolani" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/56004", + "date_made_early": "1850", + "date_made": "circa 1860", + "date_made_late": "1870", + "curatorial_section": "Historic", + "object_number": "15586" + }, + { + "emuIRN": "124979", + "description": "Playing card deck - Tarocchi/Tarot - 78 cards", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/124979", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15587" + }, + { + "emuIRN": "212458", + "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "url": "http://www.penn.museum/collections/object/212458", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15588" + }, + { + "emuIRN": "309331", + "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "G. C. Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309331", + "date_made_early": "30 Mar 1891", + "date_made": "3/30/1891", + "date_made_late": "30 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15589" + }, + { + "emuIRN": "309332", + "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15590" + }, + { + "emuIRN": "86979", + "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/86979", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15592" + }, + { + "emuIRN": "5817", + "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5817", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15594" + }, + { + "emuIRN": "170983", + "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Baby", + "Angel" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/170983", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15595" + }, + { + "emuIRN": "300071", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Tambourine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/300071", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15596" + }, + { + "emuIRN": "236603", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236603", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15597" + }, + { + "emuIRN": "141064", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141064", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15598" + }, + { + "emuIRN": "126294", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", + "provenience": [ + "Italy", + "Treviso" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Francesca Rino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/126294", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15599" + }, + { + "emuIRN": "309333", + "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", + "provenience": [ + "Italy", + "Parma (Italy)" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Faelli Carlo" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309333", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15600" + }, + { + "emuIRN": "261187", + "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Cassini Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Cucu" + ], + "url": "http://www.penn.museum/collections/object/261187", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15601" + }, + { + "emuIRN": "5818", + "description": "40 cards with wrapper. Printed back: green and blue plaid", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5818", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15604" + }, + { + "emuIRN": "236604", + "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236604", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15607" + }, + { + "emuIRN": "141065", + "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141065", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15608" + }, + { + "emuIRN": "319728", + "description": "Playing card deck - 40 cards", + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/319728", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15621" + }, + { + "emuIRN": "119150", + "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Florentine Pack" + ], + "url": "http://www.penn.museum/collections/object/119150", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15622" + }, + { + "emuIRN": "92457", + "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/92457", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15623" + }, + { + "emuIRN": "406753", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406753", + "curatorial_section": "Historic", + "object_number": "19124.15" + }, + { + "emuIRN": "406754", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406754", + "curatorial_section": "Historic", + "object_number": "19124.16" + }, + { + "emuIRN": "406755", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406755", + "curatorial_section": "Historic", + "object_number": "19124.17" + }, + { + "emuIRN": "406756", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406756", + "curatorial_section": "Historic", + "object_number": "19124.18" + }, + { + "emuIRN": "406757", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406757", + "curatorial_section": "Historic", + "object_number": "19124.19" + }, + { + "emuIRN": "406758", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406758", + "curatorial_section": "Historic", + "object_number": "19124.20" + }, + { + "emuIRN": "406759", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406759", + "curatorial_section": "Historic", + "object_number": "19124.21" + }, + { + "emuIRN": "406760", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406760", + "curatorial_section": "Historic", + "object_number": "19124.22" + }, + { + "emuIRN": "406761", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406761", + "curatorial_section": "Historic", + "object_number": "19124.23" + }, + { + "emuIRN": "406762", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406762", + "curatorial_section": "Historic", + "object_number": "19124.24" + }, + { + "emuIRN": "406763", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406763", + "curatorial_section": "Historic", + "object_number": "19124.25" + }, + { + "emuIRN": "406764", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406764", + "curatorial_section": "Historic", + "object_number": "19124.26" + }, + { + "emuIRN": "330556", + "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", + "provenience": [ + "Europe (uncertain)" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/330556", + "curatorial_section": "Historic", + "object_number": "29-191-128" + }, + { + "emuIRN": "321909", + "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/321909", + "curatorial_section": "Historic", + "object_number": "29-191-129" + }, + { + "emuIRN": "127367", + "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/127367", + "curatorial_section": "Historic", + "object_number": "29-191-227" + }, + { + "emuIRN": "203363", + "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", + "technique": [ + "Painted" + ], + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Paint", + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/203363", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15792" + }, + { + "emuIRN": "185526", + "description": "Red and gold sphere with small metall loop on 1 end", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of H. C. Thomson, 1894" + ], + "object_name": [ + "Whistling Top" + ], + "url": "http://www.penn.museum/collections/object/185526", + "curatorial_section": "Historic", + "object_number": "17817" + }, + { + "emuIRN": "59206", + "description": "Wood ball with metal spike. Cord for spinning", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top", + "Cord" + ], + "url": "http://www.penn.museum/collections/object/59206", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19214" + }, + { + "emuIRN": "186142", + "description": "Turned wood, bell-shaped with metal spike.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/186142", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19216" + }, + { + "emuIRN": "234646", + "description": "Toy rolling disc - wooden.", + "provenience": [ + "Italy" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Henry H. Giglioli, 1896" + ], + "object_name": [ + "Spinning Toy (uncertain)", + "Rolling Disc" + ], + "url": "http://www.penn.museum/collections/object/234646", + "curatorial_section": "Historic", + "object_number": "19217" + }, + { + "emuIRN": "134935", + "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal", + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1897" + ], + "object_name": [ + "Pinwheel" + ], + "url": "http://www.penn.museum/collections/object/134935", + "curatorial_section": "Historic", + "object_number": "20037" + }, + { + "emuIRN": "340545", + "description": "Turned wood ball with metal peg. Smaller version of 19214.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/340545", + "curatorial_section": "Historic", + "object_number": "19215A" + }, + { + "emuIRN": "273066", + "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Top Die", + "Teetotum" + ], + "url": "http://www.penn.museum/collections/object/273066", + "curatorial_section": "Historic", + "object_number": "71-18-6" + }, + { + "emuIRN": "146612", + "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", + "provenience": [ + "Japan" + ], + "material": [ + "Brass", + "Tin" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/146612", + "curatorial_section": "Historic", + "object_number": "71-18-11" + }, + { + "emuIRN": "264736", + "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top" + ], + "url": "http://www.penn.museum/collections/object/264736", + "curatorial_section": "Historic", + "object_number": "71-18-41" + }, + { + "emuIRN": "128464", + "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", + "provenience": [ + "West Germany" + ], + "culture": [ + "German" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/128464", + "curatorial_section": "Historic", + "object_number": "71-18-45" + }, + { + "emuIRN": "102950", + "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top", + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/102950", + "curatorial_section": "Historic", + "object_number": "71-18-50" + }, + { + "emuIRN": "215073", + "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Gyroscope" + ], + "url": "http://www.penn.museum/collections/object/215073", + "curatorial_section": "Historic", + "object_number": "71-18-53" + }, + { + "emuIRN": "281519", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/281519", + "curatorial_section": "Historic", + "object_number": "71-18-10A" + }, + { + "emuIRN": "132216", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/132216", + "curatorial_section": "Historic", + "object_number": "71-18-10B" + }, + { + "emuIRN": "222994", + "description": "Turned wooden spinnters. A-D have stems.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/222994", + "curatorial_section": "Historic", + "object_number": "71-18-17A" + }, + { + "emuIRN": "293378", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/293378", + "curatorial_section": "Historic", + "object_number": "71-18-17B" + }, + { + "emuIRN": "244262", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/244262", + "curatorial_section": "Historic", + "object_number": "71-18-17C" + }, + { + "emuIRN": "97422", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/97422", + "curatorial_section": "Historic", + "object_number": "71-18-17D" + }, + { + "emuIRN": "283240", + "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/283240", + "curatorial_section": "Historic", + "object_number": "71-18-17E" + }, + { + "emuIRN": "199531", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/199531", + "curatorial_section": "Historic", + "object_number": "71-18-20A" + }, + { + "emuIRN": "315942", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/315942", + "curatorial_section": "Historic", + "object_number": "71-18-20B" + }, + { + "emuIRN": "154811", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/154811", + "curatorial_section": "Historic", + "object_number": "71-18-20C" + }, + { + "emuIRN": "119329", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/119329", + "curatorial_section": "Historic", + "object_number": "71-18-20D" + }, + { + "emuIRN": "138169", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/138169", + "curatorial_section": "Historic", + "object_number": "71-18-20E" + }, + { + "emuIRN": "168699", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/168699", + "curatorial_section": "Historic", + "object_number": "71-18-20F" + }, + { + "emuIRN": "165852", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/165852", + "curatorial_section": "Historic", + "object_number": "71-18-20G" + }, + { + "emuIRN": "307682", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/307682", + "curatorial_section": "Historic", + "object_number": "71-18-20H" + }, + { + "emuIRN": "336448", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336448", + "curatorial_section": "Historic", + "object_number": "71-18-32A" + }, + { + "emuIRN": "181753", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/181753", + "curatorial_section": "Historic", + "object_number": "71-18-32B" + }, + { + "emuIRN": "277851", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/277851", + "curatorial_section": "Historic", + "object_number": "71-18-32C" + }, + { + "emuIRN": "44213", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/44213", + "curatorial_section": "Historic", + "object_number": "71-18-32D" + }, + { + "emuIRN": "343371", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/343371", + "curatorial_section": "Historic", + "object_number": "71-18-32E" + }, + { + "emuIRN": "405192", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "period": [ + "Modern" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/405192", + "curatorial_section": "Historic", + "object_number": "71-18-32F" + }, + { + "emuIRN": "174014", + "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinning Toy", + "Supported Top", + "Whistle" + ], + "url": "http://www.penn.museum/collections/object/174014", + "curatorial_section": "Historic", + "object_number": "71-18-72" + }, + { + "emuIRN": "54377", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/54377", + "curatorial_section": "Historic", + "object_number": "71-18-71A" + }, + { + "emuIRN": "336914", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336914", + "curatorial_section": "Historic", + "object_number": "71-18-71B" + }, + { + "emuIRN": "40527", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel", + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/40527", + "curatorial_section": "Historic", + "object_number": "71-18-71C" + }, + { + "emuIRN": "81633", + "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "iconography": [ + "Dog", + "Flag" + ], + "material": [ + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81633", + "other_numbers": [ + "533107" + ], + "curatorial_section": "Historic", + "object_number": "73-1-9" + }, + { + "emuIRN": "315995", + "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/315995", + "curatorial_section": "Historic", + "object_number": "73-1-11" + }, + { + "emuIRN": "81890", + "description": "Bi-colored light plastic top / yo-yo", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81890", + "curatorial_section": "Historic", + "object_number": "73-1-12" + }, + { + "emuIRN": "158974", + "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/158974", + "curatorial_section": "Historic", + "object_number": "73-1-21" + }, + { + "emuIRN": "270492", + "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/270492", + "curatorial_section": "Historic", + "object_number": "73-1-15B" + }, + { + "emuIRN": "122561", + "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "material": [ + "Plastic", + "Nylon" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/122561", + "curatorial_section": "Historic", + "object_number": "75-13-1" + }, + { + "emuIRN": "169135", + "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", + "provenience": [ + "Wisconsin", + "Milwaukee" + ], + "culture": [ + "American" + ], + "creator": [ + "Jak Pak Inc." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/169135", + "curatorial_section": "Historic", + "object_number": "75-13-18" + }, + { + "emuIRN": "265153", + "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", + "provenience": [ + "New York", + "Brooklyn" + ], + "culture": [ + "American" + ], + "creator": [ + "American Magnetop Corp." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/265153", + "curatorial_section": "Historic", + "object_number": "75-13-19" + }, + { + "emuIRN": "258185", + "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Giant Plastics Corp." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/258185", + "curatorial_section": "Historic", + "object_number": "75-13-21" + }, + { + "emuIRN": "112910", + "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", + "provenience": [ + "England" + ], + "culture": [ + "English" + ], + "creator": [ + "Christie & Jay, Ltd" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/112910", + "curatorial_section": "Historic", + "object_number": "75-13-30" + }, + { + "emuIRN": "206818", + "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", + "provenience": [ + "Tennessee", + "Nashville" + ], + "culture": [ + "American" + ], + "creator": [ + "Kusan, Inc" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Yo-Yo", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/206818", + "curatorial_section": "Historic", + "object_number": "75-13-32" + }, + { + "emuIRN": "320134", + "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", + "provenience": [ + "New York", + "Brooklyn" + ], + "creator": [ + "Shimmel" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/320134", + "curatorial_section": "Historic", + "object_number": "75-13-33" + }, + { + "emuIRN": "13411", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/13411", + "curatorial_section": "Historic", + "object_number": "75-13-10A" + }, + { + "emuIRN": "2151", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/2151", + "curatorial_section": "Historic", + "object_number": "75-13-10B" + }, + { + "emuIRN": "227620", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/227620", + "curatorial_section": "Historic", + "object_number": "75-13-10C" + }, + { + "emuIRN": "205966", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/205966", + "curatorial_section": "Historic", + "object_number": "75-13-29A" + }, + { + "emuIRN": "281691", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/281691", + "curatorial_section": "Historic", + "object_number": "75-13-29B" + }, + { + "emuIRN": "99171", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/99171", + "curatorial_section": "Historic", + "object_number": "75-13-29C" + }, + { + "emuIRN": "101034", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/101034", + "curatorial_section": "Historic", + "object_number": "75-13-29D" + }, + { + "emuIRN": "308170", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/308170", + "curatorial_section": "Historic", + "object_number": "75-13-29E" + }, + { + "emuIRN": "212263", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/212263", + "curatorial_section": "Historic", + "object_number": "75-13-29F" + }, + { + "emuIRN": "171295", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/171295", + "curatorial_section": "Historic", + "object_number": "75-13-29G" + }, + { + "emuIRN": "252428", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/252428", + "curatorial_section": "Historic", + "object_number": "75-13-29H" + }, + { + "emuIRN": "33474", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/33474", + "curatorial_section": "Historic", + "object_number": "75-13-29I" + }, + { + "emuIRN": "64988", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/64988", + "curatorial_section": "Historic", + "object_number": "75-13-29J" + }, + { + "emuIRN": "149403", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/149403", + "curatorial_section": "Historic", + "object_number": "75-13-29K" + }, + { + "emuIRN": "192238", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/192238", + "curatorial_section": "Historic", + "object_number": "75-13-29L" + }, + { + "emuIRN": "87050", + "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/87050", + "curatorial_section": "Historic", + "object_number": "75-13-5A" + }, + { + "emuIRN": "241334", + "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", + "provenience": [ + "Hawthorne" + ], + "culture": [ + "American" + ], + "creator": [ + "Mattel, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/241334", + "curatorial_section": "Historic", + "object_number": "75-13-9D" + }, + { + "emuIRN": "77859", + "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/77859", + "curatorial_section": "Historic", + "object_number": "71-18-24" + }, + { + "emuIRN": "285019", + "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top", + "Musical Top" + ], + "url": "http://www.penn.museum/collections/object/285019", + "curatorial_section": "Historic", + "object_number": "71-18-27" + }, + { + "emuIRN": "37984", + "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/37984", + "curatorial_section": "Historic", + "object_number": "71-18-38" + }, + { + "emuIRN": "239276", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/239276", + "curatorial_section": "Historic", + "object_number": "71-18-28A" + }, + { + "emuIRN": "32312", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/32312", + "curatorial_section": "Historic", + "object_number": "71-18-28B" + }, + { + "emuIRN": "65727", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/65727", + "curatorial_section": "Historic", + "object_number": "71-18-28C" + }, + { + "emuIRN": "274339", + "description": "Wire puzzle with boot and cap.", + "provenience": [ + "Europe", + "France (uncertain)" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Wire Puzzle" + ], + "url": "http://www.penn.museum/collections/object/274339", + "curatorial_section": "Historic", + "object_number": "8812" + }, + { + "emuIRN": "159716", + "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Selchow & Richter" + ], + "material": [ + "Cardboard" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/159716", + "date_made_early": "1880", + "date_made": "9/7/1880", + "date_made_late": "1880", + "curatorial_section": "Historic", + "object_number": "15496" + }, + { + "emuIRN": "18643", + "description": "12 lithographed cards with pictures of children's games. Fused to 16555", + "technique": [ + "Lithograph" + ], + "provenience": [ + "France", + "Paris (France)" + ], + "iconography": [ + "Games" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Cards" + ], + "url": "http://www.penn.museum/collections/object/18643", + "curatorial_section": "Historic", + "object_number": "16231" + }, + { + "emuIRN": "34693", + "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Metal", + "Glass", + "Wood" + ], + "accession_credit_line": [ + "Gift of Mrs. John Harrison, 1894" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/34693", + "date_made_early": "1869", + "date_made": "c. 1894", + "date_made_late": "1894", + "curatorial_section": "Historic", + "object_number": "16401" + }, + { + "emuIRN": "93791", + "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", + "provenience": [ + "England", + "London" + ], + "culture": [ + "British" + ], + "accession_credit_line": [ + "Gift of Henry Jones, 1893" + ], + "object_name": [ + "Card Game", + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93791", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "16555" + }, + { + "emuIRN": "117728", + "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "creator": [ + "Donaldson Brothers" + ], + "material": [ + "Paper" + ], + "object_name": [ + "Puzzle", + "Advertisement" + ], + "url": "http://www.penn.museum/collections/object/117728", + "curatorial_section": "Historic", + "object_number": "18578" + }, + { + "emuIRN": "303943", + "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", + "provenience": [ + "Pennsylvania", + "Bucks County" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Glass", + "Metal", + "String", + "Cork" + ], + "accession_credit_line": [ + "Gift of Col. Henry D. Paxson, 1897" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/303943", + "curatorial_section": "Historic", + "object_number": "20067" + }, + { + "emuIRN": "287388", + "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Dr. Max Uhle, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/287388", + "curatorial_section": "Historic", + "object_number": "21082" + }, + { + "emuIRN": "140578", + "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/140578", + "curatorial_section": "Historic", + "object_number": "21458" + }, + { + "emuIRN": "120293", + "description": "Wood Board with instructions. Metal Arm.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120293", + "curatorial_section": "Historic", + "object_number": "21460" + }, + { + "emuIRN": "25280", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/25280", + "curatorial_section": "Historic", + "object_number": "21594A" + }, + { + "emuIRN": "406863", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/406863", + "curatorial_section": "Historic", + "object_number": "21594B" + }, + { + "emuIRN": "93703", + "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "The American Game and Puzzle Company" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93703", + "curatorial_section": "Historic", + "object_number": "29-191-146" + }, + { + "emuIRN": "64758", + "description": "Yamato Block Puzzle - 6 pieces of wood", + "provenience": [ + "Japan" + ], + "culture": [ + "Japanese" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64758", + "curatorial_section": "Historic", + "object_number": "29-191-159" + }, + { + "emuIRN": "64759", + "description": "See Dar Wonderful - 9 pieces of wood", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64759", + "curatorial_section": "Historic", + "object_number": "29-191-160" + }, + { + "emuIRN": "30391", + "description": "12 pieces", + "provenience": [ + "New York", + "New York City" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle", + "Reproduction (uncertain)" + ], + "url": "http://www.penn.museum/collections/object/30391", + "curatorial_section": "Historic", + "object_number": "29-191-161" + }, + { + "emuIRN": "22499", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/22499", + "other_numbers": [ + "4001" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157B" + }, + { + "emuIRN": "120252", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120252", + "other_numbers": [ + "4001?" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157C" + }, + { + "emuIRN": "156290", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/156290", + "other_numbers": [ + "4002" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157D" + }, + { + "emuIRN": "99398", + "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", + "provenience": [ + "Pennsylvania", + "Pittsburgh" + ], + "culture": [ + "American" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Charles Este, Jr., 1899" + ], + "object_name": [ + "Puzzle", + "Trick" + ], + "url": "http://www.penn.museum/collections/object/99398", + "curatorial_section": "Historic", + "object_number": "19783" + }, + { + "emuIRN": "130464", + "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/130464", + "native_name": [ + "Cartes a Jouer" + ], + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "7594" + }, + { + "emuIRN": "160242", + "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/160242", + "date_made_early": "1800", + "date_made": "1800-1899", + "date_made_late": "1899", + "curatorial_section": "Historic", + "object_number": "7595" + }, + { + "emuIRN": "157104", + "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1890" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "url": "http://www.penn.museum/collections/object/157104", + "date_made_early": "1800", + "date_made": "19th century", + "date_made_late": "1890", + "curatorial_section": "Historic", + "object_number": "7629" + }, + { + "emuIRN": "157105", + "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "C. L. Wust" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of J. D. Sergeant, 1890" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/157105", + "curatorial_section": "Historic", + "object_number": "7630" + }, + { + "emuIRN": "98559", + "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "B. Dondorf" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of W. Yorke Stevenson, 1891" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/98559", + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "other_numbers": [ + "27" + ], + "curatorial_section": "Historic", + "object_number": "7712" + }, + { + "emuIRN": "248509", + "description": "Card dominoes in box.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Card Game", + "Dominoe" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/248509", + "curatorial_section": "Historic", + "object_number": "8813" + }, + { + "emuIRN": "137944", + "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/137944", + "date_made_early": "1866", + "date_made": "c. 1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "9011" + }, + { + "emuIRN": "194220", + "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "creator": [ + "Watilliaux" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/194220", + "date_made_early": "1878", + "date_made": "1878", + "date_made_late": "1878", + "curatorial_section": "Historic", + "object_number": "9018" + }, + { + "emuIRN": "205296", + "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", + "technique": [ + "Printed" + ], + "provenience": [ + "Mexico (Central America)", + "Puebla (Mexican State)" + ], + "culture": [ + "Spanish" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of the US National Museum, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/205296", + "date_made_early": "1873", + "date_made": "1873-1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15360" + }, + { + "emuIRN": "21030", + "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Fortune Telling Cards" + ], + "url": "http://www.penn.museum/collections/object/21030", + "date_made_early": "1865", + "date_made": "pre 1890", + "date_made_late": "1890", + "other_numbers": [ + "43" + ], + "curatorial_section": "Historic", + "object_number": "15513" + }, + { + "emuIRN": "46932", + "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", + "provenience": [ + "Italy", + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/46932", + "date_made_early": "1880", + "date_made": "1880-1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15528" + }, + { + "emuIRN": "220035", + "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/220035", + "date_made_early": "29 Nov 1890", + "date_made": "11/29/1890", + "date_made_late": "29 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15529" + }, + { + "emuIRN": "220036", + "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/220036", + "date_made_early": "27 Oct 1890", + "date_made": "10/27/1890", + "date_made_late": "27 Oct 1890", + "other_numbers": [ + "42" + ], + "curatorial_section": "Historic", + "object_number": "15530" + }, + { + "emuIRN": "289473", + "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/289473", + "date_made_early": "17 Jan 1887", + "date_made": "1/17/1887", + "date_made_late": "17 Jan 1887", + "curatorial_section": "Historic", + "object_number": "15532" + }, + { + "emuIRN": "114394", + "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/114394", + "date_made_early": "1867", + "date_made": " pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15533" + }, + { + "emuIRN": "82994", + "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/82994", + "date_made_early": "17 Jun 1890", + "date_made": "6/17/1890", + "date_made_late": "17 Jun 1890", + "other_numbers": [ + "13" + ], + "curatorial_section": "Historic", + "object_number": "15534" + }, + { + "emuIRN": "233242", + "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/233242", + "date_made_early": "13 Mar 1891", + "date_made": "3/13/1891", + "date_made_late": "13 Mar 1891", + "other_numbers": [ + "5" + ], + "curatorial_section": "Historic", + "object_number": "15536" + }, + { + "emuIRN": "237987", + "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/237987", + "date_made_early": "13 Mar 1891", + "date_made": "pre 1892", + "date_made_late": "13 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15537" + }, + { + "emuIRN": "264110", + "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/264110", + "date_made_early": "1867", + "date_made": "pre 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15538" + }, + { + "emuIRN": "36188", + "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/36188", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15540" + }, + { + "emuIRN": "154504", + "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/154504", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15541" + }, + { + "emuIRN": "203963", + "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/203963", + "date_made_early": "27 Aug 1891", + "date_made": "8/27/1891", + "date_made_late": "27 Aug 1891", + "curatorial_section": "Historic", + "object_number": "15543" + }, + { + "emuIRN": "241994", + "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/241994", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15544" + }, + { + "emuIRN": "243680", + "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/243680", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15545" + }, + { + "emuIRN": "87145", + "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/87145", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15546" + }, + { + "emuIRN": "59271", + "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/59271", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15547" + }, + { + "emuIRN": "336096", + "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/336096", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15548" + }, + { + "emuIRN": "203973", + "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/203973", + "date_made_early": "09 Apr 1888", + "date_made": "4/9/1888", + "date_made_late": "09 Apr 1888", + "curatorial_section": "Historic", + "object_number": "15550" + }, + { + "emuIRN": "238541", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/238541", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15552" + }, + { + "emuIRN": "131933", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/131933", + "date_made_early": "16 Jun 1891", + "date_made": "6/16/1891", + "date_made_late": "16 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15553" + }, + { + "emuIRN": "158923", + "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/158923", + "date_made_early": "01 Jun 1891", + "date_made": "6/1/1891", + "date_made_late": "01 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15554" + }, + { + "emuIRN": "103187", + "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/103187", + "native_name": [ + "Tarocchino" + ], + "date_made_early": "03 Feb 1891", + "date_made": "2/3/1891", + "date_made_late": "03 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15555" + }, + { + "emuIRN": "178709", + "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", + "provenience": [ + "Italy", + "Povoletto-Udine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "F. L. Muccioli" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/178709", + "date_made_early": "09 May 1890", + "date_made": "5/9/1890", + "date_made_late": "09 May 1890", + "curatorial_section": "Historic", + "object_number": "15556" + }, + { + "emuIRN": "277112", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/277112", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15557" + }, + { + "emuIRN": "25552", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/25552", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15558" + }, + { + "emuIRN": "325482", + "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/325482", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1895", + "curatorial_section": "Historic", + "object_number": "15559" + }, + { + "emuIRN": "325483", + "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/325483", + "date_made_early": "12 Mar 2091", + "date_made": "3/12/91", + "date_made_late": "12 Mar 2091", + "curatorial_section": "Historic", + "object_number": "15560" + }, + { + "emuIRN": "48114", + "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/48114", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "22 Jun 1891", + "date_made": "6/22/1891", + "date_made_late": "22 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15561" + }, + { + "emuIRN": "167380", + "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/167380", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15562" + }, + { + "emuIRN": "321272", + "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Vincenzo Russo" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack", + "Neopolitan Pack" + ], + "url": "http://www.penn.museum/collections/object/321272", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "11 Feb 1891", + "date_made": "2/11/1891", + "date_made_late": "11 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15563" + }, + { + "emuIRN": "279915", + "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Luigi Pignalosa" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/279915", + "date_made_early": "14 Feb 1891", + "date_made": "2/14/1891", + "date_made_late": "14 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15564" + }, + { + "emuIRN": "157272", + "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/157272", + "date_made_early": "04 Oct 1888", + "date_made": "10/4/1888", + "date_made_late": "04 Oct 1888", + "curatorial_section": "Historic", + "object_number": "15566" + }, + { + "emuIRN": "88522", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/88522", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15567" + }, + { + "emuIRN": "177453", + "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/177453", + "date_made_early": "24 Mar 1891", + "date_made": "3/24/1891", + "date_made_late": "24 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15568" + }, + { + "emuIRN": "322855", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322855", + "date_made_early": "25 Nov 1890", + "date_made": "11/25/1890", + "date_made_late": "25 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15569" + }, + { + "emuIRN": "322856", + "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322856", + "date_made_early": "27 Jul 2091", + "date_made": "7/27/91", + "date_made_late": "27 Jul 2091", + "curatorial_section": "Historic", + "object_number": "15570" + }, + { + "emuIRN": "289232", + "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/289232", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15571" + }, + { + "emuIRN": "71704", + "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "L. Bartolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/71704", + "date_made_early": "02 Jul 1892", + "date_made": "7/2/1892", + "date_made_late": "02 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15572" + }, + { + "emuIRN": "341571", + "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Silvertrini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/341571", + "date_made_early": "01 Jul 1892", + "date_made": "7/1/1892", + "date_made_late": "01 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15573" + }, + { + "emuIRN": "231215", + "description": "Playing card deck - 44 cards", + "provenience": [ + "Italy", + "Bergamo" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Masenghini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Milanese Deck" + ], + "url": "http://www.penn.museum/collections/object/231215", + "curatorial_section": "Historic", + "object_number": "15575" + }, + { + "emuIRN": "290651", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", + "provenience": [ + "Italy", + "Trento" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giac. Bertoldi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/290651", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15577" + }, + { + "emuIRN": "116249", + "description": "Playing card deck - 40 cards, printed back with pink abstract designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/116249", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15578" + }, + { + "emuIRN": "76331", + "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/76331", + "date_made_early": "1867", + "date_made": "c.1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15579" + }, + { + "emuIRN": "76332", + "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/76332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15580" + }, + { + "emuIRN": "189908", + "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/189908", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15583" + }, + { + "emuIRN": "275719", + "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/275719", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15584" + }, + { + "emuIRN": "51584", + "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/51584", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15585" + }, + { + "emuIRN": "56004", + "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Crispolani" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/56004", + "date_made_early": "1850", + "date_made": "circa 1860", + "date_made_late": "1870", + "curatorial_section": "Historic", + "object_number": "15586" + }, + { + "emuIRN": "124979", + "description": "Playing card deck - Tarocchi/Tarot - 78 cards", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/124979", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15587" + }, + { + "emuIRN": "212458", + "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "url": "http://www.penn.museum/collections/object/212458", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15588" + }, + { + "emuIRN": "309331", + "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "G. C. Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309331", + "date_made_early": "30 Mar 1891", + "date_made": "3/30/1891", + "date_made_late": "30 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15589" + }, + { + "emuIRN": "309332", + "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15590" + }, + { + "emuIRN": "86979", + "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/86979", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15592" + }, + { + "emuIRN": "5817", + "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5817", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15594" + }, + { + "emuIRN": "170983", + "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Baby", + "Angel" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/170983", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15595" + }, + { + "emuIRN": "300071", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Tambourine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/300071", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15596" + }, + { + "emuIRN": "236603", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236603", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15597" + }, + { + "emuIRN": "141064", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141064", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15598" + }, + { + "emuIRN": "126294", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", + "provenience": [ + "Italy", + "Treviso" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Francesca Rino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/126294", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15599" + }, + { + "emuIRN": "309333", + "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", + "provenience": [ + "Italy", + "Parma (Italy)" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Faelli Carlo" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309333", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15600" + }, + { + "emuIRN": "261187", + "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Cassini Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Cucu" + ], + "url": "http://www.penn.museum/collections/object/261187", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15601" + }, + { + "emuIRN": "5818", + "description": "40 cards with wrapper. Printed back: green and blue plaid", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5818", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15604" + }, + { + "emuIRN": "236604", + "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236604", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15607" + }, + { + "emuIRN": "141065", + "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141065", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15608" + }, + { + "emuIRN": "319728", + "description": "Playing card deck - 40 cards", + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/319728", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15621" + }, + { + "emuIRN": "119150", + "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Florentine Pack" + ], + "url": "http://www.penn.museum/collections/object/119150", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15622" + }, + { + "emuIRN": "92457", + "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/92457", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15623" + }, + { + "emuIRN": "406753", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406753", + "curatorial_section": "Historic", + "object_number": "19124.15" + }, + { + "emuIRN": "406754", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406754", + "curatorial_section": "Historic", + "object_number": "19124.16" + }, + { + "emuIRN": "406755", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406755", + "curatorial_section": "Historic", + "object_number": "19124.17" + }, + { + "emuIRN": "406756", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406756", + "curatorial_section": "Historic", + "object_number": "19124.18" + }, + { + "emuIRN": "406757", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406757", + "curatorial_section": "Historic", + "object_number": "19124.19" + }, + { + "emuIRN": "406758", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406758", + "curatorial_section": "Historic", + "object_number": "19124.20" + }, + { + "emuIRN": "406759", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406759", + "curatorial_section": "Historic", + "object_number": "19124.21" + }, + { + "emuIRN": "406760", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406760", + "curatorial_section": "Historic", + "object_number": "19124.22" + }, + { + "emuIRN": "406761", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406761", + "curatorial_section": "Historic", + "object_number": "19124.23" + }, + { + "emuIRN": "406762", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406762", + "curatorial_section": "Historic", + "object_number": "19124.24" + }, + { + "emuIRN": "406763", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406763", + "curatorial_section": "Historic", + "object_number": "19124.25" + }, + { + "emuIRN": "406764", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406764", + "curatorial_section": "Historic", + "object_number": "19124.26" + }, + { + "emuIRN": "330556", + "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", + "provenience": [ + "Europe (uncertain)" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/330556", + "curatorial_section": "Historic", + "object_number": "29-191-128" + }, + { + "emuIRN": "321909", + "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/321909", + "curatorial_section": "Historic", + "object_number": "29-191-129" + }, + { + "emuIRN": "127367", + "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/127367", + "curatorial_section": "Historic", + "object_number": "29-191-227" + }, + { + "emuIRN": "203363", + "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", + "technique": [ + "Painted" + ], + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Paint", + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/203363", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15792" + }, + { + "emuIRN": "185526", + "description": "Red and gold sphere with small metall loop on 1 end", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of H. C. Thomson, 1894" + ], + "object_name": [ + "Whistling Top" + ], + "url": "http://www.penn.museum/collections/object/185526", + "curatorial_section": "Historic", + "object_number": "17817" + }, + { + "emuIRN": "59206", + "description": "Wood ball with metal spike. Cord for spinning", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top", + "Cord" + ], + "url": "http://www.penn.museum/collections/object/59206", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19214" + }, + { + "emuIRN": "186142", + "description": "Turned wood, bell-shaped with metal spike.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/186142", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19216" + }, + { + "emuIRN": "234646", + "description": "Toy rolling disc - wooden.", + "provenience": [ + "Italy" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Henry H. Giglioli, 1896" + ], + "object_name": [ + "Spinning Toy (uncertain)", + "Rolling Disc" + ], + "url": "http://www.penn.museum/collections/object/234646", + "curatorial_section": "Historic", + "object_number": "19217" + }, + { + "emuIRN": "134935", + "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal", + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1897" + ], + "object_name": [ + "Pinwheel" + ], + "url": "http://www.penn.museum/collections/object/134935", + "curatorial_section": "Historic", + "object_number": "20037" + }, + { + "emuIRN": "340545", + "description": "Turned wood ball with metal peg. Smaller version of 19214.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/340545", + "curatorial_section": "Historic", + "object_number": "19215A" + }, + { + "emuIRN": "273066", + "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Top Die", + "Teetotum" + ], + "url": "http://www.penn.museum/collections/object/273066", + "curatorial_section": "Historic", + "object_number": "71-18-6" + }, + { + "emuIRN": "146612", + "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", + "provenience": [ + "Japan" + ], + "material": [ + "Brass", + "Tin" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/146612", + "curatorial_section": "Historic", + "object_number": "71-18-11" + }, + { + "emuIRN": "264736", + "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top" + ], + "url": "http://www.penn.museum/collections/object/264736", + "curatorial_section": "Historic", + "object_number": "71-18-41" + }, + { + "emuIRN": "128464", + "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", + "provenience": [ + "West Germany" + ], + "culture": [ + "German" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/128464", + "curatorial_section": "Historic", + "object_number": "71-18-45" + }, + { + "emuIRN": "102950", + "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top", + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/102950", + "curatorial_section": "Historic", + "object_number": "71-18-50" + }, + { + "emuIRN": "215073", + "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Gyroscope" + ], + "url": "http://www.penn.museum/collections/object/215073", + "curatorial_section": "Historic", + "object_number": "71-18-53" + }, + { + "emuIRN": "281519", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/281519", + "curatorial_section": "Historic", + "object_number": "71-18-10A" + }, + { + "emuIRN": "132216", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/132216", + "curatorial_section": "Historic", + "object_number": "71-18-10B" + }, + { + "emuIRN": "222994", + "description": "Turned wooden spinnters. A-D have stems.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/222994", + "curatorial_section": "Historic", + "object_number": "71-18-17A" + }, + { + "emuIRN": "293378", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/293378", + "curatorial_section": "Historic", + "object_number": "71-18-17B" + }, + { + "emuIRN": "244262", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/244262", + "curatorial_section": "Historic", + "object_number": "71-18-17C" + }, + { + "emuIRN": "97422", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/97422", + "curatorial_section": "Historic", + "object_number": "71-18-17D" + }, + { + "emuIRN": "283240", + "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/283240", + "curatorial_section": "Historic", + "object_number": "71-18-17E" + }, + { + "emuIRN": "199531", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/199531", + "curatorial_section": "Historic", + "object_number": "71-18-20A" + }, + { + "emuIRN": "315942", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/315942", + "curatorial_section": "Historic", + "object_number": "71-18-20B" + }, + { + "emuIRN": "154811", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/154811", + "curatorial_section": "Historic", + "object_number": "71-18-20C" + }, + { + "emuIRN": "119329", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/119329", + "curatorial_section": "Historic", + "object_number": "71-18-20D" + }, + { + "emuIRN": "138169", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/138169", + "curatorial_section": "Historic", + "object_number": "71-18-20E" + }, + { + "emuIRN": "168699", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/168699", + "curatorial_section": "Historic", + "object_number": "71-18-20F" + }, + { + "emuIRN": "165852", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/165852", + "curatorial_section": "Historic", + "object_number": "71-18-20G" + }, + { + "emuIRN": "307682", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/307682", + "curatorial_section": "Historic", + "object_number": "71-18-20H" + }, + { + "emuIRN": "336448", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336448", + "curatorial_section": "Historic", + "object_number": "71-18-32A" + }, + { + "emuIRN": "181753", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/181753", + "curatorial_section": "Historic", + "object_number": "71-18-32B" + }, + { + "emuIRN": "277851", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/277851", + "curatorial_section": "Historic", + "object_number": "71-18-32C" + }, + { + "emuIRN": "44213", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/44213", + "curatorial_section": "Historic", + "object_number": "71-18-32D" + }, + { + "emuIRN": "343371", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/343371", + "curatorial_section": "Historic", + "object_number": "71-18-32E" + }, + { + "emuIRN": "405192", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "period": [ + "Modern" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/405192", + "curatorial_section": "Historic", + "object_number": "71-18-32F" + }, + { + "emuIRN": "174014", + "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinning Toy", + "Supported Top", + "Whistle" + ], + "url": "http://www.penn.museum/collections/object/174014", + "curatorial_section": "Historic", + "object_number": "71-18-72" + }, + { + "emuIRN": "54377", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/54377", + "curatorial_section": "Historic", + "object_number": "71-18-71A" + }, + { + "emuIRN": "336914", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336914", + "curatorial_section": "Historic", + "object_number": "71-18-71B" + }, + { + "emuIRN": "40527", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel", + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/40527", + "curatorial_section": "Historic", + "object_number": "71-18-71C" + }, + { + "emuIRN": "81633", + "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "iconography": [ + "Dog", + "Flag" + ], + "material": [ + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81633", + "other_numbers": [ + "533107" + ], + "curatorial_section": "Historic", + "object_number": "73-1-9" + }, + { + "emuIRN": "315995", + "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/315995", + "curatorial_section": "Historic", + "object_number": "73-1-11" + }, + { + "emuIRN": "81890", + "description": "Bi-colored light plastic top / yo-yo", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81890", + "curatorial_section": "Historic", + "object_number": "73-1-12" + }, + { + "emuIRN": "158974", + "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/158974", + "curatorial_section": "Historic", + "object_number": "73-1-21" + }, + { + "emuIRN": "270492", + "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/270492", + "curatorial_section": "Historic", + "object_number": "73-1-15B" + }, + { + "emuIRN": "122561", + "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "material": [ + "Plastic", + "Nylon" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/122561", + "curatorial_section": "Historic", + "object_number": "75-13-1" + }, + { + "emuIRN": "169135", + "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", + "provenience": [ + "Wisconsin", + "Milwaukee" + ], + "culture": [ + "American" + ], + "creator": [ + "Jak Pak Inc." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/169135", + "curatorial_section": "Historic", + "object_number": "75-13-18" + }, + { + "emuIRN": "265153", + "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", + "provenience": [ + "New York", + "Brooklyn" + ], + "culture": [ + "American" + ], + "creator": [ + "American Magnetop Corp." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/265153", + "curatorial_section": "Historic", + "object_number": "75-13-19" + }, + { + "emuIRN": "258185", + "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Giant Plastics Corp." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/258185", + "curatorial_section": "Historic", + "object_number": "75-13-21" + }, + { + "emuIRN": "112910", + "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", + "provenience": [ + "England" + ], + "culture": [ + "English" + ], + "creator": [ + "Christie & Jay, Ltd" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/112910", + "curatorial_section": "Historic", + "object_number": "75-13-30" + }, + { + "emuIRN": "206818", + "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", + "provenience": [ + "Tennessee", + "Nashville" + ], + "culture": [ + "American" + ], + "creator": [ + "Kusan, Inc" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Yo-Yo", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/206818", + "curatorial_section": "Historic", + "object_number": "75-13-32" + }, + { + "emuIRN": "320134", + "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", + "provenience": [ + "New York", + "Brooklyn" + ], + "creator": [ + "Shimmel" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/320134", + "curatorial_section": "Historic", + "object_number": "75-13-33" + }, + { + "emuIRN": "13411", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/13411", + "curatorial_section": "Historic", + "object_number": "75-13-10A" + }, + { + "emuIRN": "2151", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/2151", + "curatorial_section": "Historic", + "object_number": "75-13-10B" + }, + { + "emuIRN": "227620", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/227620", + "curatorial_section": "Historic", + "object_number": "75-13-10C" + }, + { + "emuIRN": "205966", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/205966", + "curatorial_section": "Historic", + "object_number": "75-13-29A" + }, + { + "emuIRN": "281691", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/281691", + "curatorial_section": "Historic", + "object_number": "75-13-29B" + }, + { + "emuIRN": "99171", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/99171", + "curatorial_section": "Historic", + "object_number": "75-13-29C" + }, + { + "emuIRN": "101034", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/101034", + "curatorial_section": "Historic", + "object_number": "75-13-29D" + }, + { + "emuIRN": "308170", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/308170", + "curatorial_section": "Historic", + "object_number": "75-13-29E" + }, + { + "emuIRN": "212263", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/212263", + "curatorial_section": "Historic", + "object_number": "75-13-29F" + }, + { + "emuIRN": "171295", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/171295", + "curatorial_section": "Historic", + "object_number": "75-13-29G" + }, + { + "emuIRN": "252428", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/252428", + "curatorial_section": "Historic", + "object_number": "75-13-29H" + }, + { + "emuIRN": "33474", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/33474", + "curatorial_section": "Historic", + "object_number": "75-13-29I" + }, + { + "emuIRN": "64988", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/64988", + "curatorial_section": "Historic", + "object_number": "75-13-29J" + }, + { + "emuIRN": "149403", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/149403", + "curatorial_section": "Historic", + "object_number": "75-13-29K" + }, + { + "emuIRN": "192238", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/192238", + "curatorial_section": "Historic", + "object_number": "75-13-29L" + }, + { + "emuIRN": "87050", + "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/87050", + "curatorial_section": "Historic", + "object_number": "75-13-5A" + }, + { + "emuIRN": "241334", + "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", + "provenience": [ + "Hawthorne" + ], + "culture": [ + "American" + ], + "creator": [ + "Mattel, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/241334", + "curatorial_section": "Historic", + "object_number": "75-13-9D" + }, + { + "emuIRN": "77859", + "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/77859", + "curatorial_section": "Historic", + "object_number": "71-18-24" + }, + { + "emuIRN": "285019", + "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top", + "Musical Top" + ], + "url": "http://www.penn.museum/collections/object/285019", + "curatorial_section": "Historic", + "object_number": "71-18-27" + }, + { + "emuIRN": "37984", + "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/37984", + "curatorial_section": "Historic", + "object_number": "71-18-38" + }, + { + "emuIRN": "239276", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/239276", + "curatorial_section": "Historic", + "object_number": "71-18-28A" + }, + { + "emuIRN": "32312", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/32312", + "curatorial_section": "Historic", + "object_number": "71-18-28B" + }, + { + "emuIRN": "65727", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/65727", + "curatorial_section": "Historic", + "object_number": "71-18-28C" + }, + { + "emuIRN": "274339", + "description": "Wire puzzle with boot and cap.", + "provenience": [ + "Europe", + "France (uncertain)" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Wire Puzzle" + ], + "url": "http://www.penn.museum/collections/object/274339", + "curatorial_section": "Historic", + "object_number": "8812" + }, + { + "emuIRN": "159716", + "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Selchow & Richter" + ], + "material": [ + "Cardboard" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/159716", + "date_made_early": "1880", + "date_made": "9/7/1880", + "date_made_late": "1880", + "curatorial_section": "Historic", + "object_number": "15496" + }, + { + "emuIRN": "18643", + "description": "12 lithographed cards with pictures of children's games. Fused to 16555", + "technique": [ + "Lithograph" + ], + "provenience": [ + "France", + "Paris (France)" + ], + "iconography": [ + "Games" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Cards" + ], + "url": "http://www.penn.museum/collections/object/18643", + "curatorial_section": "Historic", + "object_number": "16231" + }, + { + "emuIRN": "34693", + "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Metal", + "Glass", + "Wood" + ], + "accession_credit_line": [ + "Gift of Mrs. John Harrison, 1894" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/34693", + "date_made_early": "1869", + "date_made": "c. 1894", + "date_made_late": "1894", + "curatorial_section": "Historic", + "object_number": "16401" + }, + { + "emuIRN": "93791", + "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", + "provenience": [ + "England", + "London" + ], + "culture": [ + "British" + ], + "accession_credit_line": [ + "Gift of Henry Jones, 1893" + ], + "object_name": [ + "Card Game", + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93791", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "16555" + }, + { + "emuIRN": "117728", + "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "creator": [ + "Donaldson Brothers" + ], + "material": [ + "Paper" + ], + "object_name": [ + "Puzzle", + "Advertisement" + ], + "url": "http://www.penn.museum/collections/object/117728", + "curatorial_section": "Historic", + "object_number": "18578" + }, + { + "emuIRN": "303943", + "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", + "provenience": [ + "Pennsylvania", + "Bucks County" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Glass", + "Metal", + "String", + "Cork" + ], + "accession_credit_line": [ + "Gift of Col. Henry D. Paxson, 1897" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/303943", + "curatorial_section": "Historic", + "object_number": "20067" + }, + { + "emuIRN": "287388", + "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Dr. Max Uhle, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/287388", + "curatorial_section": "Historic", + "object_number": "21082" + }, + { + "emuIRN": "140578", + "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/140578", + "curatorial_section": "Historic", + "object_number": "21458" + }, + { + "emuIRN": "120293", + "description": "Wood Board with instructions. Metal Arm.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120293", + "curatorial_section": "Historic", + "object_number": "21460" + }, + { + "emuIRN": "25280", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/25280", + "curatorial_section": "Historic", + "object_number": "21594A" + }, + { + "emuIRN": "406863", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/406863", + "curatorial_section": "Historic", + "object_number": "21594B" + }, + { + "emuIRN": "93703", + "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "The American Game and Puzzle Company" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93703", + "curatorial_section": "Historic", + "object_number": "29-191-146" + }, + { + "emuIRN": "64758", + "description": "Yamato Block Puzzle - 6 pieces of wood", + "provenience": [ + "Japan" + ], + "culture": [ + "Japanese" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64758", + "curatorial_section": "Historic", + "object_number": "29-191-159" + }, + { + "emuIRN": "64759", + "description": "See Dar Wonderful - 9 pieces of wood", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64759", + "curatorial_section": "Historic", + "object_number": "29-191-160" + }, + { + "emuIRN": "30391", + "description": "12 pieces", + "provenience": [ + "New York", + "New York City" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle", + "Reproduction (uncertain)" + ], + "url": "http://www.penn.museum/collections/object/30391", + "curatorial_section": "Historic", + "object_number": "29-191-161" + }, + { + "emuIRN": "22499", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/22499", + "other_numbers": [ + "4001" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157B" + }, + { + "emuIRN": "120252", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120252", + "other_numbers": [ + "4001?" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157C" + }, + { + "emuIRN": "156290", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/156290", + "other_numbers": [ + "4002" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157D" + }, + { + "emuIRN": "99398", + "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", + "provenience": [ + "Pennsylvania", + "Pittsburgh" + ], + "culture": [ + "American" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Charles Este, Jr., 1899" + ], + "object_name": [ + "Puzzle", + "Trick" + ], + "url": "http://www.penn.museum/collections/object/99398", + "curatorial_section": "Historic", + "object_number": "19783" + }, + { + "emuIRN": "130464", + "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/130464", + "native_name": [ + "Cartes a Jouer" + ], + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "7594" + }, + { + "emuIRN": "160242", + "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/160242", + "date_made_early": "1800", + "date_made": "1800-1899", + "date_made_late": "1899", + "curatorial_section": "Historic", + "object_number": "7595" + }, + { + "emuIRN": "157104", + "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1890" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "url": "http://www.penn.museum/collections/object/157104", + "date_made_early": "1800", + "date_made": "19th century", + "date_made_late": "1890", + "curatorial_section": "Historic", + "object_number": "7629" + }, + { + "emuIRN": "157105", + "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "C. L. Wust" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of J. D. Sergeant, 1890" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/157105", + "curatorial_section": "Historic", + "object_number": "7630" + }, + { + "emuIRN": "98559", + "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "B. Dondorf" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of W. Yorke Stevenson, 1891" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/98559", + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "other_numbers": [ + "27" + ], + "curatorial_section": "Historic", + "object_number": "7712" + }, + { + "emuIRN": "248509", + "description": "Card dominoes in box.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Card Game", + "Dominoe" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/248509", + "curatorial_section": "Historic", + "object_number": "8813" + }, + { + "emuIRN": "137944", + "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/137944", + "date_made_early": "1866", + "date_made": "c. 1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "9011" + }, + { + "emuIRN": "194220", + "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "creator": [ + "Watilliaux" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/194220", + "date_made_early": "1878", + "date_made": "1878", + "date_made_late": "1878", + "curatorial_section": "Historic", + "object_number": "9018" + }, + { + "emuIRN": "205296", + "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", + "technique": [ + "Printed" + ], + "provenience": [ + "Mexico (Central America)", + "Puebla (Mexican State)" + ], + "culture": [ + "Spanish" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of the US National Museum, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/205296", + "date_made_early": "1873", + "date_made": "1873-1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15360" + }, + { + "emuIRN": "21030", + "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Fortune Telling Cards" + ], + "url": "http://www.penn.museum/collections/object/21030", + "date_made_early": "1865", + "date_made": "pre 1890", + "date_made_late": "1890", + "other_numbers": [ + "43" + ], + "curatorial_section": "Historic", + "object_number": "15513" + }, + { + "emuIRN": "46932", + "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", + "provenience": [ + "Italy", + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/46932", + "date_made_early": "1880", + "date_made": "1880-1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15528" + }, + { + "emuIRN": "220035", + "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/220035", + "date_made_early": "29 Nov 1890", + "date_made": "11/29/1890", + "date_made_late": "29 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15529" + }, + { + "emuIRN": "220036", + "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/220036", + "date_made_early": "27 Oct 1890", + "date_made": "10/27/1890", + "date_made_late": "27 Oct 1890", + "other_numbers": [ + "42" + ], + "curatorial_section": "Historic", + "object_number": "15530" + }, + { + "emuIRN": "289473", + "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/289473", + "date_made_early": "17 Jan 1887", + "date_made": "1/17/1887", + "date_made_late": "17 Jan 1887", + "curatorial_section": "Historic", + "object_number": "15532" + }, + { + "emuIRN": "114394", + "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/114394", + "date_made_early": "1867", + "date_made": " pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15533" + }, + { + "emuIRN": "82994", + "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/82994", + "date_made_early": "17 Jun 1890", + "date_made": "6/17/1890", + "date_made_late": "17 Jun 1890", + "other_numbers": [ + "13" + ], + "curatorial_section": "Historic", + "object_number": "15534" + }, + { + "emuIRN": "233242", + "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/233242", + "date_made_early": "13 Mar 1891", + "date_made": "3/13/1891", + "date_made_late": "13 Mar 1891", + "other_numbers": [ + "5" + ], + "curatorial_section": "Historic", + "object_number": "15536" + }, + { + "emuIRN": "237987", + "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/237987", + "date_made_early": "13 Mar 1891", + "date_made": "pre 1892", + "date_made_late": "13 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15537" + }, + { + "emuIRN": "264110", + "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/264110", + "date_made_early": "1867", + "date_made": "pre 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15538" + }, + { + "emuIRN": "36188", + "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/36188", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15540" + }, + { + "emuIRN": "154504", + "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/154504", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15541" + }, + { + "emuIRN": "203963", + "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/203963", + "date_made_early": "27 Aug 1891", + "date_made": "8/27/1891", + "date_made_late": "27 Aug 1891", + "curatorial_section": "Historic", + "object_number": "15543" + }, + { + "emuIRN": "241994", + "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/241994", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15544" + }, + { + "emuIRN": "243680", + "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/243680", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15545" + }, + { + "emuIRN": "87145", + "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/87145", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15546" + }, + { + "emuIRN": "59271", + "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/59271", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15547" + }, + { + "emuIRN": "336096", + "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/336096", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15548" + }, + { + "emuIRN": "203973", + "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/203973", + "date_made_early": "09 Apr 1888", + "date_made": "4/9/1888", + "date_made_late": "09 Apr 1888", + "curatorial_section": "Historic", + "object_number": "15550" + }, + { + "emuIRN": "238541", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/238541", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15552" + }, + { + "emuIRN": "131933", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/131933", + "date_made_early": "16 Jun 1891", + "date_made": "6/16/1891", + "date_made_late": "16 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15553" + }, + { + "emuIRN": "158923", + "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/158923", + "date_made_early": "01 Jun 1891", + "date_made": "6/1/1891", + "date_made_late": "01 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15554" + }, + { + "emuIRN": "103187", + "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/103187", + "native_name": [ + "Tarocchino" + ], + "date_made_early": "03 Feb 1891", + "date_made": "2/3/1891", + "date_made_late": "03 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15555" + }, + { + "emuIRN": "178709", + "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", + "provenience": [ + "Italy", + "Povoletto-Udine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "F. L. Muccioli" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/178709", + "date_made_early": "09 May 1890", + "date_made": "5/9/1890", + "date_made_late": "09 May 1890", + "curatorial_section": "Historic", + "object_number": "15556" + }, + { + "emuIRN": "277112", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/277112", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15557" + }, + { + "emuIRN": "25552", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/25552", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15558" + }, + { + "emuIRN": "325482", + "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/325482", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1895", + "curatorial_section": "Historic", + "object_number": "15559" + }, + { + "emuIRN": "325483", + "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/325483", + "date_made_early": "12 Mar 2091", + "date_made": "3/12/91", + "date_made_late": "12 Mar 2091", + "curatorial_section": "Historic", + "object_number": "15560" + }, + { + "emuIRN": "48114", + "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/48114", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "22 Jun 1891", + "date_made": "6/22/1891", + "date_made_late": "22 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15561" + }, + { + "emuIRN": "167380", + "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/167380", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15562" + }, + { + "emuIRN": "321272", + "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Vincenzo Russo" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack", + "Neopolitan Pack" + ], + "url": "http://www.penn.museum/collections/object/321272", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "11 Feb 1891", + "date_made": "2/11/1891", + "date_made_late": "11 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15563" + }, + { + "emuIRN": "279915", + "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Luigi Pignalosa" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/279915", + "date_made_early": "14 Feb 1891", + "date_made": "2/14/1891", + "date_made_late": "14 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15564" + }, + { + "emuIRN": "157272", + "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/157272", + "date_made_early": "04 Oct 1888", + "date_made": "10/4/1888", + "date_made_late": "04 Oct 1888", + "curatorial_section": "Historic", + "object_number": "15566" + }, + { + "emuIRN": "88522", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/88522", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15567" + }, + { + "emuIRN": "177453", + "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/177453", + "date_made_early": "24 Mar 1891", + "date_made": "3/24/1891", + "date_made_late": "24 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15568" + }, + { + "emuIRN": "322855", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322855", + "date_made_early": "25 Nov 1890", + "date_made": "11/25/1890", + "date_made_late": "25 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15569" + }, + { + "emuIRN": "322856", + "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322856", + "date_made_early": "27 Jul 2091", + "date_made": "7/27/91", + "date_made_late": "27 Jul 2091", + "curatorial_section": "Historic", + "object_number": "15570" + }, + { + "emuIRN": "289232", + "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/289232", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15571" + }, + { + "emuIRN": "71704", + "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "L. Bartolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/71704", + "date_made_early": "02 Jul 1892", + "date_made": "7/2/1892", + "date_made_late": "02 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15572" + }, + { + "emuIRN": "341571", + "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Silvertrini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/341571", + "date_made_early": "01 Jul 1892", + "date_made": "7/1/1892", + "date_made_late": "01 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15573" + }, + { + "emuIRN": "231215", + "description": "Playing card deck - 44 cards", + "provenience": [ + "Italy", + "Bergamo" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Masenghini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Milanese Deck" + ], + "url": "http://www.penn.museum/collections/object/231215", + "curatorial_section": "Historic", + "object_number": "15575" + }, + { + "emuIRN": "290651", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", + "provenience": [ + "Italy", + "Trento" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giac. Bertoldi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/290651", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15577" + }, + { + "emuIRN": "116249", + "description": "Playing card deck - 40 cards, printed back with pink abstract designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/116249", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15578" + }, + { + "emuIRN": "76331", + "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/76331", + "date_made_early": "1867", + "date_made": "c.1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15579" + }, + { + "emuIRN": "76332", + "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/76332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15580" + }, + { + "emuIRN": "189908", + "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/189908", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15583" + }, + { + "emuIRN": "275719", + "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/275719", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15584" + }, + { + "emuIRN": "51584", + "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/51584", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15585" + }, + { + "emuIRN": "56004", + "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Crispolani" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/56004", + "date_made_early": "1850", + "date_made": "circa 1860", + "date_made_late": "1870", + "curatorial_section": "Historic", + "object_number": "15586" + }, + { + "emuIRN": "124979", + "description": "Playing card deck - Tarocchi/Tarot - 78 cards", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/124979", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15587" + }, + { + "emuIRN": "212458", + "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "url": "http://www.penn.museum/collections/object/212458", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15588" + }, + { + "emuIRN": "309331", + "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "G. C. Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309331", + "date_made_early": "30 Mar 1891", + "date_made": "3/30/1891", + "date_made_late": "30 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15589" + }, + { + "emuIRN": "309332", + "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15590" + }, + { + "emuIRN": "86979", + "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/86979", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15592" + }, + { + "emuIRN": "5817", + "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5817", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15594" + }, + { + "emuIRN": "170983", + "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Baby", + "Angel" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/170983", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15595" + }, + { + "emuIRN": "300071", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Tambourine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/300071", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15596" + }, + { + "emuIRN": "236603", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236603", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15597" + }, + { + "emuIRN": "141064", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141064", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15598" + }, + { + "emuIRN": "126294", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", + "provenience": [ + "Italy", + "Treviso" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Francesca Rino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/126294", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15599" + }, + { + "emuIRN": "309333", + "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", + "provenience": [ + "Italy", + "Parma (Italy)" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Faelli Carlo" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309333", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15600" + }, + { + "emuIRN": "261187", + "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Cassini Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Cucu" + ], + "url": "http://www.penn.museum/collections/object/261187", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15601" + }, + { + "emuIRN": "5818", + "description": "40 cards with wrapper. Printed back: green and blue plaid", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5818", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15604" + }, + { + "emuIRN": "236604", + "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236604", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15607" + }, + { + "emuIRN": "141065", + "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141065", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15608" + }, + { + "emuIRN": "319728", + "description": "Playing card deck - 40 cards", + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/319728", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15621" + }, + { + "emuIRN": "119150", + "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Florentine Pack" + ], + "url": "http://www.penn.museum/collections/object/119150", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15622" + }, + { + "emuIRN": "92457", + "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/92457", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15623" + }, + { + "emuIRN": "406753", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406753", + "curatorial_section": "Historic", + "object_number": "19124.15" + }, + { + "emuIRN": "406754", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406754", + "curatorial_section": "Historic", + "object_number": "19124.16" + }, + { + "emuIRN": "406755", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406755", + "curatorial_section": "Historic", + "object_number": "19124.17" + }, + { + "emuIRN": "406756", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406756", + "curatorial_section": "Historic", + "object_number": "19124.18" + }, + { + "emuIRN": "406757", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406757", + "curatorial_section": "Historic", + "object_number": "19124.19" + }, + { + "emuIRN": "406758", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406758", + "curatorial_section": "Historic", + "object_number": "19124.20" + }, + { + "emuIRN": "406759", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406759", + "curatorial_section": "Historic", + "object_number": "19124.21" + }, + { + "emuIRN": "406760", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406760", + "curatorial_section": "Historic", + "object_number": "19124.22" + }, + { + "emuIRN": "406761", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406761", + "curatorial_section": "Historic", + "object_number": "19124.23" + }, + { + "emuIRN": "406762", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406762", + "curatorial_section": "Historic", + "object_number": "19124.24" + }, + { + "emuIRN": "406763", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406763", + "curatorial_section": "Historic", + "object_number": "19124.25" + }, + { + "emuIRN": "406764", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406764", + "curatorial_section": "Historic", + "object_number": "19124.26" + }, + { + "emuIRN": "330556", + "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", + "provenience": [ + "Europe (uncertain)" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/330556", + "curatorial_section": "Historic", + "object_number": "29-191-128" + }, + { + "emuIRN": "321909", + "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/321909", + "curatorial_section": "Historic", + "object_number": "29-191-129" + }, + { + "emuIRN": "127367", + "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/127367", + "curatorial_section": "Historic", + "object_number": "29-191-227" + }, + { + "emuIRN": "203363", + "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", + "technique": [ + "Painted" + ], + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Paint", + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/203363", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15792" + }, + { + "emuIRN": "185526", + "description": "Red and gold sphere with small metall loop on 1 end", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of H. C. Thomson, 1894" + ], + "object_name": [ + "Whistling Top" + ], + "url": "http://www.penn.museum/collections/object/185526", + "curatorial_section": "Historic", + "object_number": "17817" + }, + { + "emuIRN": "59206", + "description": "Wood ball with metal spike. Cord for spinning", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top", + "Cord" + ], + "url": "http://www.penn.museum/collections/object/59206", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19214" + }, + { + "emuIRN": "186142", + "description": "Turned wood, bell-shaped with metal spike.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/186142", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19216" + }, + { + "emuIRN": "234646", + "description": "Toy rolling disc - wooden.", + "provenience": [ + "Italy" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Henry H. Giglioli, 1896" + ], + "object_name": [ + "Spinning Toy (uncertain)", + "Rolling Disc" + ], + "url": "http://www.penn.museum/collections/object/234646", + "curatorial_section": "Historic", + "object_number": "19217" + }, + { + "emuIRN": "134935", + "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal", + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1897" + ], + "object_name": [ + "Pinwheel" + ], + "url": "http://www.penn.museum/collections/object/134935", + "curatorial_section": "Historic", + "object_number": "20037" + }, + { + "emuIRN": "340545", + "description": "Turned wood ball with metal peg. Smaller version of 19214.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/340545", + "curatorial_section": "Historic", + "object_number": "19215A" + }, + { + "emuIRN": "273066", + "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Top Die", + "Teetotum" + ], + "url": "http://www.penn.museum/collections/object/273066", + "curatorial_section": "Historic", + "object_number": "71-18-6" + }, + { + "emuIRN": "146612", + "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", + "provenience": [ + "Japan" + ], + "material": [ + "Brass", + "Tin" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/146612", + "curatorial_section": "Historic", + "object_number": "71-18-11" + }, + { + "emuIRN": "264736", + "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top" + ], + "url": "http://www.penn.museum/collections/object/264736", + "curatorial_section": "Historic", + "object_number": "71-18-41" + }, + { + "emuIRN": "128464", + "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", + "provenience": [ + "West Germany" + ], + "culture": [ + "German" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/128464", + "curatorial_section": "Historic", + "object_number": "71-18-45" + }, + { + "emuIRN": "102950", + "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top", + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/102950", + "curatorial_section": "Historic", + "object_number": "71-18-50" + }, + { + "emuIRN": "215073", + "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Gyroscope" + ], + "url": "http://www.penn.museum/collections/object/215073", + "curatorial_section": "Historic", + "object_number": "71-18-53" + }, + { + "emuIRN": "281519", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/281519", + "curatorial_section": "Historic", + "object_number": "71-18-10A" + }, + { + "emuIRN": "132216", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/132216", + "curatorial_section": "Historic", + "object_number": "71-18-10B" + }, + { + "emuIRN": "222994", + "description": "Turned wooden spinnters. A-D have stems.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/222994", + "curatorial_section": "Historic", + "object_number": "71-18-17A" + }, + { + "emuIRN": "293378", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/293378", + "curatorial_section": "Historic", + "object_number": "71-18-17B" + }, + { + "emuIRN": "244262", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/244262", + "curatorial_section": "Historic", + "object_number": "71-18-17C" + }, + { + "emuIRN": "97422", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/97422", + "curatorial_section": "Historic", + "object_number": "71-18-17D" + }, + { + "emuIRN": "283240", + "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/283240", + "curatorial_section": "Historic", + "object_number": "71-18-17E" + }, + { + "emuIRN": "199531", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/199531", + "curatorial_section": "Historic", + "object_number": "71-18-20A" + }, + { + "emuIRN": "315942", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/315942", + "curatorial_section": "Historic", + "object_number": "71-18-20B" + }, + { + "emuIRN": "154811", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/154811", + "curatorial_section": "Historic", + "object_number": "71-18-20C" + }, + { + "emuIRN": "119329", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/119329", + "curatorial_section": "Historic", + "object_number": "71-18-20D" + }, + { + "emuIRN": "138169", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/138169", + "curatorial_section": "Historic", + "object_number": "71-18-20E" + }, + { + "emuIRN": "168699", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/168699", + "curatorial_section": "Historic", + "object_number": "71-18-20F" + }, + { + "emuIRN": "165852", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/165852", + "curatorial_section": "Historic", + "object_number": "71-18-20G" + }, + { + "emuIRN": "307682", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/307682", + "curatorial_section": "Historic", + "object_number": "71-18-20H" + }, + { + "emuIRN": "336448", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336448", + "curatorial_section": "Historic", + "object_number": "71-18-32A" + }, + { + "emuIRN": "181753", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/181753", + "curatorial_section": "Historic", + "object_number": "71-18-32B" + }, + { + "emuIRN": "277851", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/277851", + "curatorial_section": "Historic", + "object_number": "71-18-32C" + }, + { + "emuIRN": "44213", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/44213", + "curatorial_section": "Historic", + "object_number": "71-18-32D" + }, + { + "emuIRN": "343371", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/343371", + "curatorial_section": "Historic", + "object_number": "71-18-32E" + }, + { + "emuIRN": "405192", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "period": [ + "Modern" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/405192", + "curatorial_section": "Historic", + "object_number": "71-18-32F" + }, + { + "emuIRN": "174014", + "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinning Toy", + "Supported Top", + "Whistle" + ], + "url": "http://www.penn.museum/collections/object/174014", + "curatorial_section": "Historic", + "object_number": "71-18-72" + }, + { + "emuIRN": "54377", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/54377", + "curatorial_section": "Historic", + "object_number": "71-18-71A" + }, + { + "emuIRN": "336914", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336914", + "curatorial_section": "Historic", + "object_number": "71-18-71B" + }, + { + "emuIRN": "40527", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel", + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/40527", + "curatorial_section": "Historic", + "object_number": "71-18-71C" + }, + { + "emuIRN": "81633", + "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "iconography": [ + "Dog", + "Flag" + ], + "material": [ + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81633", + "other_numbers": [ + "533107" + ], + "curatorial_section": "Historic", + "object_number": "73-1-9" + }, + { + "emuIRN": "315995", + "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/315995", + "curatorial_section": "Historic", + "object_number": "73-1-11" + }, + { + "emuIRN": "81890", + "description": "Bi-colored light plastic top / yo-yo", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81890", + "curatorial_section": "Historic", + "object_number": "73-1-12" + }, + { + "emuIRN": "158974", + "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/158974", + "curatorial_section": "Historic", + "object_number": "73-1-21" + }, + { + "emuIRN": "270492", + "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/270492", + "curatorial_section": "Historic", + "object_number": "73-1-15B" + }, + { + "emuIRN": "122561", + "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "material": [ + "Plastic", + "Nylon" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/122561", + "curatorial_section": "Historic", + "object_number": "75-13-1" + }, + { + "emuIRN": "169135", + "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", + "provenience": [ + "Wisconsin", + "Milwaukee" + ], + "culture": [ + "American" + ], + "creator": [ + "Jak Pak Inc." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/169135", + "curatorial_section": "Historic", + "object_number": "75-13-18" + }, + { + "emuIRN": "265153", + "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", + "provenience": [ + "New York", + "Brooklyn" + ], + "culture": [ + "American" + ], + "creator": [ + "American Magnetop Corp." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/265153", + "curatorial_section": "Historic", + "object_number": "75-13-19" + }, + { + "emuIRN": "258185", + "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Giant Plastics Corp." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/258185", + "curatorial_section": "Historic", + "object_number": "75-13-21" + }, + { + "emuIRN": "112910", + "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", + "provenience": [ + "England" + ], + "culture": [ + "English" + ], + "creator": [ + "Christie & Jay, Ltd" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/112910", + "curatorial_section": "Historic", + "object_number": "75-13-30" + }, + { + "emuIRN": "206818", + "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", + "provenience": [ + "Tennessee", + "Nashville" + ], + "culture": [ + "American" + ], + "creator": [ + "Kusan, Inc" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Yo-Yo", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/206818", + "curatorial_section": "Historic", + "object_number": "75-13-32" + }, + { + "emuIRN": "320134", + "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", + "provenience": [ + "New York", + "Brooklyn" + ], + "creator": [ + "Shimmel" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/320134", + "curatorial_section": "Historic", + "object_number": "75-13-33" + }, + { + "emuIRN": "13411", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/13411", + "curatorial_section": "Historic", + "object_number": "75-13-10A" + }, + { + "emuIRN": "2151", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/2151", + "curatorial_section": "Historic", + "object_number": "75-13-10B" + }, + { + "emuIRN": "227620", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/227620", + "curatorial_section": "Historic", + "object_number": "75-13-10C" + }, + { + "emuIRN": "205966", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/205966", + "curatorial_section": "Historic", + "object_number": "75-13-29A" + }, + { + "emuIRN": "281691", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/281691", + "curatorial_section": "Historic", + "object_number": "75-13-29B" + }, + { + "emuIRN": "99171", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/99171", + "curatorial_section": "Historic", + "object_number": "75-13-29C" + }, + { + "emuIRN": "101034", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/101034", + "curatorial_section": "Historic", + "object_number": "75-13-29D" + }, + { + "emuIRN": "308170", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/308170", + "curatorial_section": "Historic", + "object_number": "75-13-29E" + }, + { + "emuIRN": "212263", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/212263", + "curatorial_section": "Historic", + "object_number": "75-13-29F" + }, + { + "emuIRN": "171295", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/171295", + "curatorial_section": "Historic", + "object_number": "75-13-29G" + }, + { + "emuIRN": "252428", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/252428", + "curatorial_section": "Historic", + "object_number": "75-13-29H" + }, + { + "emuIRN": "33474", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/33474", + "curatorial_section": "Historic", + "object_number": "75-13-29I" + }, + { + "emuIRN": "64988", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/64988", + "curatorial_section": "Historic", + "object_number": "75-13-29J" + }, + { + "emuIRN": "149403", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/149403", + "curatorial_section": "Historic", + "object_number": "75-13-29K" + }, + { + "emuIRN": "192238", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/192238", + "curatorial_section": "Historic", + "object_number": "75-13-29L" + }, + { + "emuIRN": "87050", + "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/87050", + "curatorial_section": "Historic", + "object_number": "75-13-5A" + }, + { + "emuIRN": "241334", + "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", + "provenience": [ + "Hawthorne" + ], + "culture": [ + "American" + ], + "creator": [ + "Mattel, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/241334", + "curatorial_section": "Historic", + "object_number": "75-13-9D" + }, + { + "emuIRN": "77859", + "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/77859", + "curatorial_section": "Historic", + "object_number": "71-18-24" + }, + { + "emuIRN": "285019", + "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top", + "Musical Top" + ], + "url": "http://www.penn.museum/collections/object/285019", + "curatorial_section": "Historic", + "object_number": "71-18-27" + }, + { + "emuIRN": "37984", + "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/37984", + "curatorial_section": "Historic", + "object_number": "71-18-38" + }, + { + "emuIRN": "239276", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/239276", + "curatorial_section": "Historic", + "object_number": "71-18-28A" + }, + { + "emuIRN": "32312", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/32312", + "curatorial_section": "Historic", + "object_number": "71-18-28B" + }, + { + "emuIRN": "65727", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/65727", + "curatorial_section": "Historic", + "object_number": "71-18-28C" + }, + { + "emuIRN": "274339", + "description": "Wire puzzle with boot and cap.", + "provenience": [ + "Europe", + "France (uncertain)" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Wire Puzzle" + ], + "url": "http://www.penn.museum/collections/object/274339", + "curatorial_section": "Historic", + "object_number": "8812" + }, + { + "emuIRN": "159716", + "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Selchow & Richter" + ], + "material": [ + "Cardboard" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/159716", + "date_made_early": "1880", + "date_made": "9/7/1880", + "date_made_late": "1880", + "curatorial_section": "Historic", + "object_number": "15496" + }, + { + "emuIRN": "18643", + "description": "12 lithographed cards with pictures of children's games. Fused to 16555", + "technique": [ + "Lithograph" + ], + "provenience": [ + "France", + "Paris (France)" + ], + "iconography": [ + "Games" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Cards" + ], + "url": "http://www.penn.museum/collections/object/18643", + "curatorial_section": "Historic", + "object_number": "16231" + }, + { + "emuIRN": "34693", + "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Metal", + "Glass", + "Wood" + ], + "accession_credit_line": [ + "Gift of Mrs. John Harrison, 1894" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/34693", + "date_made_early": "1869", + "date_made": "c. 1894", + "date_made_late": "1894", + "curatorial_section": "Historic", + "object_number": "16401" + }, + { + "emuIRN": "93791", + "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", + "provenience": [ + "England", + "London" + ], + "culture": [ + "British" + ], + "accession_credit_line": [ + "Gift of Henry Jones, 1893" + ], + "object_name": [ + "Card Game", + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93791", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "16555" + }, + { + "emuIRN": "117728", + "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "creator": [ + "Donaldson Brothers" + ], + "material": [ + "Paper" + ], + "object_name": [ + "Puzzle", + "Advertisement" + ], + "url": "http://www.penn.museum/collections/object/117728", + "curatorial_section": "Historic", + "object_number": "18578" + }, + { + "emuIRN": "303943", + "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", + "provenience": [ + "Pennsylvania", + "Bucks County" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Glass", + "Metal", + "String", + "Cork" + ], + "accession_credit_line": [ + "Gift of Col. Henry D. Paxson, 1897" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/303943", + "curatorial_section": "Historic", + "object_number": "20067" + }, + { + "emuIRN": "287388", + "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Dr. Max Uhle, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/287388", + "curatorial_section": "Historic", + "object_number": "21082" + }, + { + "emuIRN": "140578", + "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/140578", + "curatorial_section": "Historic", + "object_number": "21458" + }, + { + "emuIRN": "120293", + "description": "Wood Board with instructions. Metal Arm.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120293", + "curatorial_section": "Historic", + "object_number": "21460" + }, + { + "emuIRN": "25280", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/25280", + "curatorial_section": "Historic", + "object_number": "21594A" + }, + { + "emuIRN": "406863", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/406863", + "curatorial_section": "Historic", + "object_number": "21594B" + }, + { + "emuIRN": "93703", + "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "The American Game and Puzzle Company" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93703", + "curatorial_section": "Historic", + "object_number": "29-191-146" + }, + { + "emuIRN": "64758", + "description": "Yamato Block Puzzle - 6 pieces of wood", + "provenience": [ + "Japan" + ], + "culture": [ + "Japanese" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64758", + "curatorial_section": "Historic", + "object_number": "29-191-159" + }, + { + "emuIRN": "64759", + "description": "See Dar Wonderful - 9 pieces of wood", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64759", + "curatorial_section": "Historic", + "object_number": "29-191-160" + }, + { + "emuIRN": "30391", + "description": "12 pieces", + "provenience": [ + "New York", + "New York City" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle", + "Reproduction (uncertain)" + ], + "url": "http://www.penn.museum/collections/object/30391", + "curatorial_section": "Historic", + "object_number": "29-191-161" + }, + { + "emuIRN": "22499", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/22499", + "other_numbers": [ + "4001" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157B" + }, + { + "emuIRN": "120252", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120252", + "other_numbers": [ + "4001?" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157C" + }, + { + "emuIRN": "156290", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/156290", + "other_numbers": [ + "4002" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157D" + }, + { + "emuIRN": "99398", + "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", + "provenience": [ + "Pennsylvania", + "Pittsburgh" + ], + "culture": [ + "American" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Charles Este, Jr., 1899" + ], + "object_name": [ + "Puzzle", + "Trick" + ], + "url": "http://www.penn.museum/collections/object/99398", + "curatorial_section": "Historic", + "object_number": "19783" + }, + { + "emuIRN": "130464", + "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/130464", + "native_name": [ + "Cartes a Jouer" + ], + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "7594" + }, + { + "emuIRN": "160242", + "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/160242", + "date_made_early": "1800", + "date_made": "1800-1899", + "date_made_late": "1899", + "curatorial_section": "Historic", + "object_number": "7595" + }, + { + "emuIRN": "157104", + "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1890" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "url": "http://www.penn.museum/collections/object/157104", + "date_made_early": "1800", + "date_made": "19th century", + "date_made_late": "1890", + "curatorial_section": "Historic", + "object_number": "7629" + }, + { + "emuIRN": "157105", + "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "C. L. Wust" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of J. D. Sergeant, 1890" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/157105", + "curatorial_section": "Historic", + "object_number": "7630" + }, + { + "emuIRN": "98559", + "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "B. Dondorf" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of W. Yorke Stevenson, 1891" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/98559", + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "other_numbers": [ + "27" + ], + "curatorial_section": "Historic", + "object_number": "7712" + }, + { + "emuIRN": "248509", + "description": "Card dominoes in box.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Card Game", + "Dominoe" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/248509", + "curatorial_section": "Historic", + "object_number": "8813" + }, + { + "emuIRN": "137944", + "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/137944", + "date_made_early": "1866", + "date_made": "c. 1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "9011" + }, + { + "emuIRN": "194220", + "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "creator": [ + "Watilliaux" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/194220", + "date_made_early": "1878", + "date_made": "1878", + "date_made_late": "1878", + "curatorial_section": "Historic", + "object_number": "9018" + }, + { + "emuIRN": "205296", + "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", + "technique": [ + "Printed" + ], + "provenience": [ + "Mexico (Central America)", + "Puebla (Mexican State)" + ], + "culture": [ + "Spanish" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of the US National Museum, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/205296", + "date_made_early": "1873", + "date_made": "1873-1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15360" + }, + { + "emuIRN": "21030", + "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Fortune Telling Cards" + ], + "url": "http://www.penn.museum/collections/object/21030", + "date_made_early": "1865", + "date_made": "pre 1890", + "date_made_late": "1890", + "other_numbers": [ + "43" + ], + "curatorial_section": "Historic", + "object_number": "15513" + }, + { + "emuIRN": "46932", + "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", + "provenience": [ + "Italy", + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/46932", + "date_made_early": "1880", + "date_made": "1880-1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15528" + }, + { + "emuIRN": "220035", + "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/220035", + "date_made_early": "29 Nov 1890", + "date_made": "11/29/1890", + "date_made_late": "29 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15529" + }, + { + "emuIRN": "220036", + "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/220036", + "date_made_early": "27 Oct 1890", + "date_made": "10/27/1890", + "date_made_late": "27 Oct 1890", + "other_numbers": [ + "42" + ], + "curatorial_section": "Historic", + "object_number": "15530" + }, + { + "emuIRN": "289473", + "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/289473", + "date_made_early": "17 Jan 1887", + "date_made": "1/17/1887", + "date_made_late": "17 Jan 1887", + "curatorial_section": "Historic", + "object_number": "15532" + }, + { + "emuIRN": "114394", + "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/114394", + "date_made_early": "1867", + "date_made": " pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15533" + }, + { + "emuIRN": "82994", + "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/82994", + "date_made_early": "17 Jun 1890", + "date_made": "6/17/1890", + "date_made_late": "17 Jun 1890", + "other_numbers": [ + "13" + ], + "curatorial_section": "Historic", + "object_number": "15534" + }, + { + "emuIRN": "233242", + "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/233242", + "date_made_early": "13 Mar 1891", + "date_made": "3/13/1891", + "date_made_late": "13 Mar 1891", + "other_numbers": [ + "5" + ], + "curatorial_section": "Historic", + "object_number": "15536" + }, + { + "emuIRN": "237987", + "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/237987", + "date_made_early": "13 Mar 1891", + "date_made": "pre 1892", + "date_made_late": "13 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15537" + }, + { + "emuIRN": "264110", + "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/264110", + "date_made_early": "1867", + "date_made": "pre 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15538" + }, + { + "emuIRN": "36188", + "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/36188", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15540" + }, + { + "emuIRN": "154504", + "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/154504", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15541" + }, + { + "emuIRN": "203963", + "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/203963", + "date_made_early": "27 Aug 1891", + "date_made": "8/27/1891", + "date_made_late": "27 Aug 1891", + "curatorial_section": "Historic", + "object_number": "15543" + }, + { + "emuIRN": "241994", + "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/241994", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15544" + }, + { + "emuIRN": "243680", + "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/243680", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15545" + }, + { + "emuIRN": "87145", + "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/87145", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15546" + }, + { + "emuIRN": "59271", + "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/59271", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15547" + }, + { + "emuIRN": "336096", + "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/336096", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15548" + }, + { + "emuIRN": "203973", + "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/203973", + "date_made_early": "09 Apr 1888", + "date_made": "4/9/1888", + "date_made_late": "09 Apr 1888", + "curatorial_section": "Historic", + "object_number": "15550" + }, + { + "emuIRN": "238541", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/238541", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15552" + }, + { + "emuIRN": "131933", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/131933", + "date_made_early": "16 Jun 1891", + "date_made": "6/16/1891", + "date_made_late": "16 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15553" + }, + { + "emuIRN": "158923", + "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/158923", + "date_made_early": "01 Jun 1891", + "date_made": "6/1/1891", + "date_made_late": "01 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15554" + }, + { + "emuIRN": "103187", + "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/103187", + "native_name": [ + "Tarocchino" + ], + "date_made_early": "03 Feb 1891", + "date_made": "2/3/1891", + "date_made_late": "03 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15555" + }, + { + "emuIRN": "178709", + "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", + "provenience": [ + "Italy", + "Povoletto-Udine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "F. L. Muccioli" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/178709", + "date_made_early": "09 May 1890", + "date_made": "5/9/1890", + "date_made_late": "09 May 1890", + "curatorial_section": "Historic", + "object_number": "15556" + }, + { + "emuIRN": "277112", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/277112", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15557" + }, + { + "emuIRN": "25552", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/25552", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15558" + }, + { + "emuIRN": "325482", + "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/325482", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1895", + "curatorial_section": "Historic", + "object_number": "15559" + }, + { + "emuIRN": "325483", + "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/325483", + "date_made_early": "12 Mar 2091", + "date_made": "3/12/91", + "date_made_late": "12 Mar 2091", + "curatorial_section": "Historic", + "object_number": "15560" + }, + { + "emuIRN": "48114", + "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/48114", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "22 Jun 1891", + "date_made": "6/22/1891", + "date_made_late": "22 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15561" + }, + { + "emuIRN": "167380", + "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/167380", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15562" + }, + { + "emuIRN": "321272", + "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Vincenzo Russo" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack", + "Neopolitan Pack" + ], + "url": "http://www.penn.museum/collections/object/321272", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "11 Feb 1891", + "date_made": "2/11/1891", + "date_made_late": "11 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15563" + }, + { + "emuIRN": "279915", + "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Luigi Pignalosa" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/279915", + "date_made_early": "14 Feb 1891", + "date_made": "2/14/1891", + "date_made_late": "14 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15564" + }, + { + "emuIRN": "157272", + "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/157272", + "date_made_early": "04 Oct 1888", + "date_made": "10/4/1888", + "date_made_late": "04 Oct 1888", + "curatorial_section": "Historic", + "object_number": "15566" + }, + { + "emuIRN": "88522", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/88522", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15567" + }, + { + "emuIRN": "177453", + "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/177453", + "date_made_early": "24 Mar 1891", + "date_made": "3/24/1891", + "date_made_late": "24 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15568" + }, + { + "emuIRN": "322855", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322855", + "date_made_early": "25 Nov 1890", + "date_made": "11/25/1890", + "date_made_late": "25 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15569" + }, + { + "emuIRN": "322856", + "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322856", + "date_made_early": "27 Jul 2091", + "date_made": "7/27/91", + "date_made_late": "27 Jul 2091", + "curatorial_section": "Historic", + "object_number": "15570" + }, + { + "emuIRN": "289232", + "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/289232", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15571" + }, + { + "emuIRN": "71704", + "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "L. Bartolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/71704", + "date_made_early": "02 Jul 1892", + "date_made": "7/2/1892", + "date_made_late": "02 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15572" + }, + { + "emuIRN": "341571", + "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Silvertrini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/341571", + "date_made_early": "01 Jul 1892", + "date_made": "7/1/1892", + "date_made_late": "01 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15573" + }, + { + "emuIRN": "231215", + "description": "Playing card deck - 44 cards", + "provenience": [ + "Italy", + "Bergamo" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Masenghini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Milanese Deck" + ], + "url": "http://www.penn.museum/collections/object/231215", + "curatorial_section": "Historic", + "object_number": "15575" + }, + { + "emuIRN": "290651", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", + "provenience": [ + "Italy", + "Trento" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giac. Bertoldi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/290651", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15577" + }, + { + "emuIRN": "116249", + "description": "Playing card deck - 40 cards, printed back with pink abstract designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/116249", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15578" + }, + { + "emuIRN": "76331", + "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/76331", + "date_made_early": "1867", + "date_made": "c.1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15579" + }, + { + "emuIRN": "76332", + "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/76332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15580" + }, + { + "emuIRN": "189908", + "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/189908", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15583" + }, + { + "emuIRN": "275719", + "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/275719", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15584" + }, + { + "emuIRN": "51584", + "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/51584", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15585" + }, + { + "emuIRN": "56004", + "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Crispolani" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/56004", + "date_made_early": "1850", + "date_made": "circa 1860", + "date_made_late": "1870", + "curatorial_section": "Historic", + "object_number": "15586" + }, + { + "emuIRN": "124979", + "description": "Playing card deck - Tarocchi/Tarot - 78 cards", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/124979", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15587" + }, + { + "emuIRN": "212458", + "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "url": "http://www.penn.museum/collections/object/212458", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15588" + }, + { + "emuIRN": "309331", + "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "G. C. Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309331", + "date_made_early": "30 Mar 1891", + "date_made": "3/30/1891", + "date_made_late": "30 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15589" + }, + { + "emuIRN": "309332", + "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15590" + }, + { + "emuIRN": "86979", + "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/86979", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15592" + }, + { + "emuIRN": "5817", + "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5817", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15594" + }, + { + "emuIRN": "170983", + "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Baby", + "Angel" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/170983", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15595" + }, + { + "emuIRN": "300071", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Tambourine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/300071", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15596" + }, + { + "emuIRN": "236603", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236603", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15597" + }, + { + "emuIRN": "141064", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141064", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15598" + }, + { + "emuIRN": "126294", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", + "provenience": [ + "Italy", + "Treviso" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Francesca Rino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/126294", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15599" + }, + { + "emuIRN": "309333", + "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", + "provenience": [ + "Italy", + "Parma (Italy)" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Faelli Carlo" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309333", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15600" + }, + { + "emuIRN": "261187", + "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Cassini Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Cucu" + ], + "url": "http://www.penn.museum/collections/object/261187", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15601" + }, + { + "emuIRN": "5818", + "description": "40 cards with wrapper. Printed back: green and blue plaid", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5818", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15604" + }, + { + "emuIRN": "236604", + "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236604", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15607" + }, + { + "emuIRN": "141065", + "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141065", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15608" + }, + { + "emuIRN": "319728", + "description": "Playing card deck - 40 cards", + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/319728", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15621" + }, + { + "emuIRN": "119150", + "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Florentine Pack" + ], + "url": "http://www.penn.museum/collections/object/119150", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15622" + }, + { + "emuIRN": "92457", + "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/92457", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15623" + }, + { + "emuIRN": "406753", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406753", + "curatorial_section": "Historic", + "object_number": "19124.15" + }, + { + "emuIRN": "406754", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406754", + "curatorial_section": "Historic", + "object_number": "19124.16" + }, + { + "emuIRN": "406755", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406755", + "curatorial_section": "Historic", + "object_number": "19124.17" + }, + { + "emuIRN": "406756", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406756", + "curatorial_section": "Historic", + "object_number": "19124.18" + }, + { + "emuIRN": "406757", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406757", + "curatorial_section": "Historic", + "object_number": "19124.19" + }, + { + "emuIRN": "406758", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406758", + "curatorial_section": "Historic", + "object_number": "19124.20" + }, + { + "emuIRN": "406759", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406759", + "curatorial_section": "Historic", + "object_number": "19124.21" + }, + { + "emuIRN": "406760", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406760", + "curatorial_section": "Historic", + "object_number": "19124.22" + }, + { + "emuIRN": "406761", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406761", + "curatorial_section": "Historic", + "object_number": "19124.23" + }, + { + "emuIRN": "406762", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406762", + "curatorial_section": "Historic", + "object_number": "19124.24" + }, + { + "emuIRN": "406763", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406763", + "curatorial_section": "Historic", + "object_number": "19124.25" + }, + { + "emuIRN": "406764", + "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", + "technique": [ + "Embossed" + ], + "provenience": [ + "Europe" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Draughtsmen" + ], + "url": "http://www.penn.museum/collections/object/406764", + "curatorial_section": "Historic", + "object_number": "19124.26" + }, + { + "emuIRN": "330556", + "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", + "provenience": [ + "Europe (uncertain)" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/330556", + "curatorial_section": "Historic", + "object_number": "29-191-128" + }, + { + "emuIRN": "321909", + "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/321909", + "curatorial_section": "Historic", + "object_number": "29-191-129" + }, + { + "emuIRN": "127367", + "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/127367", + "curatorial_section": "Historic", + "object_number": "29-191-227" + }, + { + "emuIRN": "203363", + "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", + "technique": [ + "Painted" + ], + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Paint", + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Spinning Top" + ], + "url": "http://www.penn.museum/collections/object/203363", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15792" + }, + { + "emuIRN": "185526", + "description": "Red and gold sphere with small metall loop on 1 end", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of H. C. Thomson, 1894" + ], + "object_name": [ + "Whistling Top" + ], + "url": "http://www.penn.museum/collections/object/185526", + "curatorial_section": "Historic", + "object_number": "17817" + }, + { + "emuIRN": "59206", + "description": "Wood ball with metal spike. Cord for spinning", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top", + "Cord" + ], + "url": "http://www.penn.museum/collections/object/59206", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19214" + }, + { + "emuIRN": "186142", + "description": "Turned wood, bell-shaped with metal spike.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/186142", + "other_numbers": [ + "232" + ], + "curatorial_section": "Historic", + "object_number": "19216" + }, + { + "emuIRN": "234646", + "description": "Toy rolling disc - wooden.", + "provenience": [ + "Italy" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Henry H. Giglioli, 1896" + ], + "object_name": [ + "Spinning Toy (uncertain)", + "Rolling Disc" + ], + "url": "http://www.penn.museum/collections/object/234646", + "curatorial_section": "Historic", + "object_number": "19217" + }, + { + "emuIRN": "134935", + "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal", + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1897" + ], + "object_name": [ + "Pinwheel" + ], + "url": "http://www.penn.museum/collections/object/134935", + "curatorial_section": "Historic", + "object_number": "20037" + }, + { + "emuIRN": "340545", + "description": "Turned wood ball with metal peg. Smaller version of 19214.", + "provenience": [ + "Italy", + "Sicily" + ], + "culture": [ + "Italian" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1896" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/340545", + "curatorial_section": "Historic", + "object_number": "19215A" + }, + { + "emuIRN": "273066", + "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Top Die", + "Teetotum" + ], + "url": "http://www.penn.museum/collections/object/273066", + "curatorial_section": "Historic", + "object_number": "71-18-6" + }, + { + "emuIRN": "146612", + "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", + "provenience": [ + "Japan" + ], + "material": [ + "Brass", + "Tin" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/146612", + "curatorial_section": "Historic", + "object_number": "71-18-11" + }, + { + "emuIRN": "264736", + "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top" + ], + "url": "http://www.penn.museum/collections/object/264736", + "curatorial_section": "Historic", + "object_number": "71-18-41" + }, + { + "emuIRN": "128464", + "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", + "provenience": [ + "West Germany" + ], + "culture": [ + "German" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/128464", + "curatorial_section": "Historic", + "object_number": "71-18-45" + }, + { + "emuIRN": "102950", + "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", + "provenience": [ + "Japan" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spring-Top", + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/102950", + "curatorial_section": "Historic", + "object_number": "71-18-50" + }, + { + "emuIRN": "215073", + "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Gyroscope" + ], + "url": "http://www.penn.museum/collections/object/215073", + "curatorial_section": "Historic", + "object_number": "71-18-53" + }, + { + "emuIRN": "281519", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/281519", + "curatorial_section": "Historic", + "object_number": "71-18-10A" + }, + { + "emuIRN": "132216", + "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", + "provenience": [ + "China", + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/132216", + "curatorial_section": "Historic", + "object_number": "71-18-10B" + }, + { + "emuIRN": "222994", + "description": "Turned wooden spinnters. A-D have stems.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/222994", + "curatorial_section": "Historic", + "object_number": "71-18-17A" + }, + { + "emuIRN": "293378", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/293378", + "curatorial_section": "Historic", + "object_number": "71-18-17B" + }, + { + "emuIRN": "244262", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/244262", + "curatorial_section": "Historic", + "object_number": "71-18-17C" + }, + { + "emuIRN": "97422", + "description": "Turned wooden spinnters. A-D have stems", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/97422", + "curatorial_section": "Historic", + "object_number": "71-18-17D" + }, + { + "emuIRN": "283240", + "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/283240", + "curatorial_section": "Historic", + "object_number": "71-18-17E" + }, + { + "emuIRN": "199531", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/199531", + "curatorial_section": "Historic", + "object_number": "71-18-20A" + }, + { + "emuIRN": "315942", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/315942", + "curatorial_section": "Historic", + "object_number": "71-18-20B" + }, + { + "emuIRN": "154811", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/154811", + "curatorial_section": "Historic", + "object_number": "71-18-20C" + }, + { + "emuIRN": "119329", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/119329", + "curatorial_section": "Historic", + "object_number": "71-18-20D" + }, + { + "emuIRN": "138169", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/138169", + "curatorial_section": "Historic", + "object_number": "71-18-20E" + }, + { + "emuIRN": "168699", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/168699", + "curatorial_section": "Historic", + "object_number": "71-18-20F" + }, + { + "emuIRN": "165852", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/165852", + "curatorial_section": "Historic", + "object_number": "71-18-20G" + }, + { + "emuIRN": "307682", + "description": "Turned wood; painted. Shape and design to simulate berry or fruit", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinner" + ], + "url": "http://www.penn.museum/collections/object/307682", + "curatorial_section": "Historic", + "object_number": "71-18-20H" + }, + { + "emuIRN": "336448", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336448", + "curatorial_section": "Historic", + "object_number": "71-18-32A" + }, + { + "emuIRN": "181753", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/181753", + "curatorial_section": "Historic", + "object_number": "71-18-32B" + }, + { + "emuIRN": "277851", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/277851", + "curatorial_section": "Historic", + "object_number": "71-18-32C" + }, + { + "emuIRN": "44213", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/44213", + "curatorial_section": "Historic", + "object_number": "71-18-32D" + }, + { + "emuIRN": "343371", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/343371", + "curatorial_section": "Historic", + "object_number": "71-18-32E" + }, + { + "emuIRN": "405192", + "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "culture": [ + "Modern" + ], + "material": [ + "Wood", + "Steel" + ], + "period": [ + "Modern" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/405192", + "curatorial_section": "Historic", + "object_number": "71-18-32F" + }, + { + "emuIRN": "174014", + "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Spinning Toy", + "Supported Top", + "Whistle" + ], + "url": "http://www.penn.museum/collections/object/174014", + "curatorial_section": "Historic", + "object_number": "71-18-72" + }, + { + "emuIRN": "54377", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/54377", + "curatorial_section": "Historic", + "object_number": "71-18-71A" + }, + { + "emuIRN": "336914", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/336914", + "curatorial_section": "Historic", + "object_number": "71-18-71B" + }, + { + "emuIRN": "40527", + "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", + "provenience": [ + "Mexico (Central America)" + ], + "culture": [ + "Mexican" + ], + "material": [ + "Wood", + "Steel", + "Plastic" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/40527", + "curatorial_section": "Historic", + "object_number": "71-18-71C" + }, + { + "emuIRN": "81633", + "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "iconography": [ + "Dog", + "Flag" + ], + "material": [ + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81633", + "other_numbers": [ + "533107" + ], + "curatorial_section": "Historic", + "object_number": "73-1-9" + }, + { + "emuIRN": "315995", + "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/315995", + "curatorial_section": "Historic", + "object_number": "73-1-11" + }, + { + "emuIRN": "81890", + "description": "Bi-colored light plastic top / yo-yo", + "provenience": [ + "Hong Kong" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/81890", + "curatorial_section": "Historic", + "object_number": "73-1-12" + }, + { + "emuIRN": "158974", + "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top", + "Yo-Yo" + ], + "url": "http://www.penn.museum/collections/object/158974", + "curatorial_section": "Historic", + "object_number": "73-1-21" + }, + { + "emuIRN": "270492", + "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", + "provenience": [ + "Japan" + ], + "material": [ + "Wood", + "Steel" + ], + "accession_credit_line": [ + "Gift of Marion Greene, 1973" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/270492", + "curatorial_section": "Historic", + "object_number": "73-1-15B" + }, + { + "emuIRN": "122561", + "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "material": [ + "Plastic", + "Nylon" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/122561", + "curatorial_section": "Historic", + "object_number": "75-13-1" + }, + { + "emuIRN": "169135", + "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", + "provenience": [ + "Wisconsin", + "Milwaukee" + ], + "culture": [ + "American" + ], + "creator": [ + "Jak Pak Inc." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/169135", + "curatorial_section": "Historic", + "object_number": "75-13-18" + }, + { + "emuIRN": "265153", + "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", + "provenience": [ + "New York", + "Brooklyn" + ], + "culture": [ + "American" + ], + "creator": [ + "American Magnetop Corp." + ], + "material": [ + "Plastic", + "Metal" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/265153", + "curatorial_section": "Historic", + "object_number": "75-13-19" + }, + { + "emuIRN": "258185", + "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Giant Plastics Corp." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/258185", + "curatorial_section": "Historic", + "object_number": "75-13-21" + }, + { + "emuIRN": "112910", + "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", + "provenience": [ + "England" + ], + "culture": [ + "English" + ], + "creator": [ + "Christie & Jay, Ltd" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/112910", + "curatorial_section": "Historic", + "object_number": "75-13-30" + }, + { + "emuIRN": "206818", + "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", + "provenience": [ + "Tennessee", + "Nashville" + ], + "culture": [ + "American" + ], + "creator": [ + "Kusan, Inc" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Yo-Yo", + "Buzzer" + ], + "url": "http://www.penn.museum/collections/object/206818", + "curatorial_section": "Historic", + "object_number": "75-13-32" + }, + { + "emuIRN": "320134", + "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", + "provenience": [ + "New York", + "Brooklyn" + ], + "creator": [ + "Shimmel" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top Kit" + ], + "url": "http://www.penn.museum/collections/object/320134", + "curatorial_section": "Historic", + "object_number": "75-13-33" + }, + { + "emuIRN": "13411", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/13411", + "curatorial_section": "Historic", + "object_number": "75-13-10A" + }, + { + "emuIRN": "2151", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/2151", + "curatorial_section": "Historic", + "object_number": "75-13-10B" + }, + { + "emuIRN": "227620", + "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", + "provenience": [ + "Wisconsin", + "Baraboo" + ], + "culture": [ + "American" + ], + "creator": [ + "Flambeau Plastics" + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/227620", + "curatorial_section": "Historic", + "object_number": "75-13-10C" + }, + { + "emuIRN": "205966", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/205966", + "curatorial_section": "Historic", + "object_number": "75-13-29A" + }, + { + "emuIRN": "281691", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/281691", + "curatorial_section": "Historic", + "object_number": "75-13-29B" + }, + { + "emuIRN": "99171", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/99171", + "curatorial_section": "Historic", + "object_number": "75-13-29C" + }, + { + "emuIRN": "101034", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/101034", + "curatorial_section": "Historic", + "object_number": "75-13-29D" + }, + { + "emuIRN": "308170", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/308170", + "curatorial_section": "Historic", + "object_number": "75-13-29E" + }, + { + "emuIRN": "212263", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/212263", + "curatorial_section": "Historic", + "object_number": "75-13-29F" + }, + { + "emuIRN": "171295", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/171295", + "curatorial_section": "Historic", + "object_number": "75-13-29G" + }, + { + "emuIRN": "252428", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/252428", + "curatorial_section": "Historic", + "object_number": "75-13-29H" + }, + { + "emuIRN": "33474", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/33474", + "curatorial_section": "Historic", + "object_number": "75-13-29I" + }, + { + "emuIRN": "64988", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/64988", + "curatorial_section": "Historic", + "object_number": "75-13-29J" + }, + { + "emuIRN": "149403", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/149403", + "curatorial_section": "Historic", + "object_number": "75-13-29K" + }, + { + "emuIRN": "192238", + "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", + "provenience": [ + "Minnesota", + "Willmar" + ], + "culture": [ + "American" + ], + "creator": [ + "Molenaar, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Spinning Top", + "Twirler" + ], + "url": "http://www.penn.museum/collections/object/192238", + "curatorial_section": "Historic", + "object_number": "75-13-29L" + }, + { + "emuIRN": "87050", + "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Peg Top" + ], + "url": "http://www.penn.museum/collections/object/87050", + "curatorial_section": "Historic", + "object_number": "75-13-5A" + }, + { + "emuIRN": "241334", + "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", + "provenience": [ + "Hawthorne" + ], + "culture": [ + "American" + ], + "creator": [ + "Mattel, Inc." + ], + "material": [ + "Plastic" + ], + "accession_credit_line": [ + "Gift of Douglas W. Gould, 1975" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/241334", + "curatorial_section": "Historic", + "object_number": "75-13-9D" + }, + { + "emuIRN": "77859", + "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/77859", + "curatorial_section": "Historic", + "object_number": "71-18-24" + }, + { + "emuIRN": "285019", + "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top", + "Musical Top" + ], + "url": "http://www.penn.museum/collections/object/285019", + "curatorial_section": "Historic", + "object_number": "71-18-27" + }, + { + "emuIRN": "37984", + "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", + "technique": [ + "Painted" + ], + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top", + "Humming Top" + ], + "url": "http://www.penn.museum/collections/object/37984", + "curatorial_section": "Historic", + "object_number": "71-18-38" + }, + { + "emuIRN": "239276", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/239276", + "curatorial_section": "Historic", + "object_number": "71-18-28A" + }, + { + "emuIRN": "32312", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/32312", + "curatorial_section": "Historic", + "object_number": "71-18-28B" + }, + { + "emuIRN": "65727", + "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", + "provenience": [ + "Japan" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of Smithsonian Institution, 1971" + ], + "object_name": [ + "Supported Top" + ], + "url": "http://www.penn.museum/collections/object/65727", + "curatorial_section": "Historic", + "object_number": "71-18-28C" + }, + { + "emuIRN": "274339", + "description": "Wire puzzle with boot and cap.", + "provenience": [ + "Europe", + "France (uncertain)" + ], + "material": [ + "Metal" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Wire Puzzle" + ], + "url": "http://www.penn.museum/collections/object/274339", + "curatorial_section": "Historic", + "object_number": "8812" + }, + { + "emuIRN": "159716", + "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Selchow & Richter" + ], + "material": [ + "Cardboard" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/159716", + "date_made_early": "1880", + "date_made": "9/7/1880", + "date_made_late": "1880", + "curatorial_section": "Historic", + "object_number": "15496" + }, + { + "emuIRN": "18643", + "description": "12 lithographed cards with pictures of children's games. Fused to 16555", + "technique": [ + "Lithograph" + ], + "provenience": [ + "France", + "Paris (France)" + ], + "iconography": [ + "Games" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Cards" + ], + "url": "http://www.penn.museum/collections/object/18643", + "curatorial_section": "Historic", + "object_number": "16231" + }, + { + "emuIRN": "34693", + "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", + "provenience": [ + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Metal", + "Glass", + "Wood" + ], + "accession_credit_line": [ + "Gift of Mrs. John Harrison, 1894" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/34693", + "date_made_early": "1869", + "date_made": "c. 1894", + "date_made_late": "1894", + "curatorial_section": "Historic", + "object_number": "16401" + }, + { + "emuIRN": "93791", + "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", + "provenience": [ + "England", + "London" + ], + "culture": [ + "British" + ], + "accession_credit_line": [ + "Gift of Henry Jones, 1893" + ], + "object_name": [ + "Card Game", + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93791", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "16555" + }, + { + "emuIRN": "117728", + "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", + "provenience": [ + "New York" + ], + "culture": [ + "American" + ], + "creator": [ + "Donaldson Brothers" + ], + "material": [ + "Paper" + ], + "object_name": [ + "Puzzle", + "Advertisement" + ], + "url": "http://www.penn.museum/collections/object/117728", + "curatorial_section": "Historic", + "object_number": "18578" + }, + { + "emuIRN": "303943", + "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", + "provenience": [ + "Pennsylvania", + "Bucks County" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Glass", + "Metal", + "String", + "Cork" + ], + "accession_credit_line": [ + "Gift of Col. Henry D. Paxson, 1897" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/303943", + "curatorial_section": "Historic", + "object_number": "20067" + }, + { + "emuIRN": "287388", + "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", + "provenience": [ + "Pennsylvania", + "Philadelphia" + ], + "culture": [ + "American" + ], + "accession_credit_line": [ + "Gift of Dr. Max Uhle, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/287388", + "curatorial_section": "Historic", + "object_number": "21082" + }, + { + "emuIRN": "140578", + "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/140578", + "curatorial_section": "Historic", + "object_number": "21458" + }, + { + "emuIRN": "120293", + "description": "Wood Board with instructions. Metal Arm.", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "material": [ + "Wood", + "Metal" + ], + "accession_credit_line": [ + "Gift of R. Stewart Culin, 1898" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120293", + "curatorial_section": "Historic", + "object_number": "21460" + }, + { + "emuIRN": "25280", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/25280", + "curatorial_section": "Historic", + "object_number": "21594A" + }, + { + "emuIRN": "406863", + "description": "canoe puzzle. original and copy; both are wood and string", + "provenience": [ + "Massachusetts", + "Salem" + ], + "iconography": [ + "Canoe" + ], + "material": [ + "Wood", + "String" + ], + "accession_credit_line": [ + "Gift of Margaret W. Brooks, 1899" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/406863", + "curatorial_section": "Historic", + "object_number": "21594B" + }, + { + "emuIRN": "93703", + "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "The American Game and Puzzle Company" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/93703", + "curatorial_section": "Historic", + "object_number": "29-191-146" + }, + { + "emuIRN": "64758", + "description": "Yamato Block Puzzle - 6 pieces of wood", + "provenience": [ + "Japan" + ], + "culture": [ + "Japanese" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64758", + "curatorial_section": "Historic", + "object_number": "29-191-159" + }, + { + "emuIRN": "64759", + "description": "See Dar Wonderful - 9 pieces of wood", + "provenience": [ + "Europe (uncertain)" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle" + ], + "url": "http://www.penn.museum/collections/object/64759", + "curatorial_section": "Historic", + "object_number": "29-191-160" + }, + { + "emuIRN": "30391", + "description": "12 pieces", + "provenience": [ + "New York", + "New York City" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Wood" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Block Puzzle", + "Reproduction (uncertain)" + ], + "url": "http://www.penn.museum/collections/object/30391", + "curatorial_section": "Historic", + "object_number": "29-191-161" + }, + { + "emuIRN": "22499", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle", + "Reproduction" + ], + "url": "http://www.penn.museum/collections/object/22499", + "other_numbers": [ + "4001" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157B" + }, + { + "emuIRN": "120252", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/120252", + "other_numbers": [ + "4001?" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157C" + }, + { + "emuIRN": "156290", + "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", + "provenience": [ + "New York", + "New York City" + ], + "culture": [ + "American" + ], + "creator": [ + "Stanford White Company" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Received from various sources, pre-1929" + ], + "object_name": [ + "Puzzle" + ], + "url": "http://www.penn.museum/collections/object/156290", + "other_numbers": [ + "4002" + ], + "curatorial_section": "Historic", + "object_number": "29-191-157D" + }, + { + "emuIRN": "99398", + "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", + "provenience": [ + "Pennsylvania", + "Pittsburgh" + ], + "culture": [ + "American" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Charles Este, Jr., 1899" + ], + "object_name": [ + "Puzzle", + "Trick" + ], + "url": "http://www.penn.museum/collections/object/99398", + "curatorial_section": "Historic", + "object_number": "19783" + }, + { + "emuIRN": "130464", + "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/130464", + "native_name": [ + "Cartes a Jouer" + ], + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "7594" + }, + { + "emuIRN": "160242", + "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/160242", + "date_made_early": "1800", + "date_made": "1800-1899", + "date_made_late": "1899", + "curatorial_section": "Historic", + "object_number": "7595" + }, + { + "emuIRN": "157104", + "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "France" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1890" + ], + "object_name": [ + "Playing Card Deck", + "Piquet" + ], + "url": "http://www.penn.museum/collections/object/157104", + "date_made_early": "1800", + "date_made": "19th century", + "date_made_late": "1890", + "curatorial_section": "Historic", + "object_number": "7629" + }, + { + "emuIRN": "157105", + "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "C. L. Wust" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of J. D. Sergeant, 1890" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/157105", + "curatorial_section": "Historic", + "object_number": "7630" + }, + { + "emuIRN": "98559", + "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", + "provenience": [ + "Germany", + "Frankfurt" + ], + "culture": [ + "German" + ], + "creator": [ + "B. Dondorf" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of W. Yorke Stevenson, 1891" + ], + "object_name": [ + "Playing Card Deck" + ], + "url": "http://www.penn.museum/collections/object/98559", + "date_made_early": "1800", + "date_made": "1800-1891", + "date_made_late": "1891", + "other_numbers": [ + "27" + ], + "curatorial_section": "Historic", + "object_number": "7712" + }, + { + "emuIRN": "248509", + "description": "Card dominoes in box.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Card Game", + "Dominoe" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/248509", + "curatorial_section": "Historic", + "object_number": "8813" + }, + { + "emuIRN": "137944", + "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", + "provenience": [ + "France" + ], + "culture": [ + "French" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/137944", + "date_made_early": "1866", + "date_made": "c. 1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "9011" + }, + { + "emuIRN": "194220", + "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "creator": [ + "Watilliaux" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1891" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/194220", + "date_made_early": "1878", + "date_made": "1878", + "date_made_late": "1878", + "curatorial_section": "Historic", + "object_number": "9018" + }, + { + "emuIRN": "205296", + "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", + "technique": [ + "Printed" + ], + "provenience": [ + "Mexico (Central America)", + "Puebla (Mexican State)" + ], + "culture": [ + "Spanish" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of the US National Museum, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/205296", + "date_made_early": "1873", + "date_made": "1873-1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15360" + }, + { + "emuIRN": "21030", + "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", + "provenience": [ + "France", + "Paris (France)" + ], + "culture": [ + "French" + ], + "material": [ + "Cardboard" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1892" + ], + "object_name": [ + "Playing Card Deck", + "Fortune Telling Cards" + ], + "url": "http://www.penn.museum/collections/object/21030", + "date_made_early": "1865", + "date_made": "pre 1890", + "date_made_late": "1890", + "other_numbers": [ + "43" + ], + "curatorial_section": "Historic", + "object_number": "15513" + }, + { + "emuIRN": "46932", + "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", + "provenience": [ + "Italy", + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/46932", + "date_made_early": "1880", + "date_made": "1880-1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15528" + }, + { + "emuIRN": "220035", + "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/220035", + "date_made_early": "29 Nov 1890", + "date_made": "11/29/1890", + "date_made_late": "29 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15529" + }, + { + "emuIRN": "220036", + "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/220036", + "date_made_early": "27 Oct 1890", + "date_made": "10/27/1890", + "date_made_late": "27 Oct 1890", + "other_numbers": [ + "42" + ], + "curatorial_section": "Historic", + "object_number": "15530" + }, + { + "emuIRN": "289473", + "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/289473", + "date_made_early": "17 Jan 1887", + "date_made": "1/17/1887", + "date_made_late": "17 Jan 1887", + "curatorial_section": "Historic", + "object_number": "15532" + }, + { + "emuIRN": "114394", + "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/114394", + "date_made_early": "1867", + "date_made": " pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15533" + }, + { + "emuIRN": "82994", + "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack" + ], + "url": "http://www.penn.museum/collections/object/82994", + "date_made_early": "17 Jun 1890", + "date_made": "6/17/1890", + "date_made_late": "17 Jun 1890", + "other_numbers": [ + "13" + ], + "curatorial_section": "Historic", + "object_number": "15534" + }, + { + "emuIRN": "233242", + "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/233242", + "date_made_early": "13 Mar 1891", + "date_made": "3/13/1891", + "date_made_late": "13 Mar 1891", + "other_numbers": [ + "5" + ], + "curatorial_section": "Historic", + "object_number": "15536" + }, + { + "emuIRN": "237987", + "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Bari, Italy" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Guglielmo Murari" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/237987", + "date_made_early": "13 Mar 1891", + "date_made": "pre 1892", + "date_made_late": "13 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15537" + }, + { + "emuIRN": "264110", + "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/264110", + "date_made_early": "1867", + "date_made": "pre 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15538" + }, + { + "emuIRN": "36188", + "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/36188", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15540" + }, + { + "emuIRN": "154504", + "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/154504", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15541" + }, + { + "emuIRN": "203963", + "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/203963", + "date_made_early": "27 Aug 1891", + "date_made": "8/27/1891", + "date_made_late": "27 Aug 1891", + "curatorial_section": "Historic", + "object_number": "15543" + }, + { + "emuIRN": "241994", + "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/241994", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15544" + }, + { + "emuIRN": "243680", + "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/243680", + "date_made_early": "17 May 1891", + "date_made": "5/17/1891", + "date_made_late": "17 May 1891", + "curatorial_section": "Historic", + "object_number": "15545" + }, + { + "emuIRN": "87145", + "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/87145", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15546" + }, + { + "emuIRN": "59271", + "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Cucu" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/59271", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15547" + }, + { + "emuIRN": "336096", + "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/336096", + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15548" + }, + { + "emuIRN": "203973", + "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Marchesini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/203973", + "date_made_early": "09 Apr 1888", + "date_made": "4/9/1888", + "date_made_late": "09 Apr 1888", + "curatorial_section": "Historic", + "object_number": "15550" + }, + { + "emuIRN": "238541", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Whist" + ], + "url": "http://www.penn.museum/collections/object/238541", + "date_made_early": "1891", + "date_made": "1891", + "date_made_late": "1891", + "curatorial_section": "Historic", + "object_number": "15552" + }, + { + "emuIRN": "131933", + "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/131933", + "date_made_early": "16 Jun 1891", + "date_made": "6/16/1891", + "date_made_late": "16 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15553" + }, + { + "emuIRN": "158923", + "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/158923", + "date_made_early": "01 Jun 1891", + "date_made": "6/1/1891", + "date_made_late": "01 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15554" + }, + { + "emuIRN": "103187", + "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Emilia Angiolini" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/103187", + "native_name": [ + "Tarocchino" + ], + "date_made_early": "03 Feb 1891", + "date_made": "2/3/1891", + "date_made_late": "03 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15555" + }, + { + "emuIRN": "178709", + "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", + "provenience": [ + "Italy", + "Povoletto-Udine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "F. L. Muccioli" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/178709", + "date_made_early": "09 May 1890", + "date_made": "5/9/1890", + "date_made_late": "09 May 1890", + "curatorial_section": "Historic", + "object_number": "15556" + }, + { + "emuIRN": "277112", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/277112", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15557" + }, + { + "emuIRN": "25552", + "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/25552", + "date_made_early": "12 Mar 1891", + "date_made": "3/12/1891", + "date_made_late": "12 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15558" + }, + { + "emuIRN": "325482", + "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/325482", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1895", + "curatorial_section": "Historic", + "object_number": "15559" + }, + { + "emuIRN": "325483", + "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Fiorentini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/325483", + "date_made_early": "12 Mar 2091", + "date_made": "3/12/91", + "date_made_late": "12 Mar 2091", + "curatorial_section": "Historic", + "object_number": "15560" + }, + { + "emuIRN": "48114", + "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/48114", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "22 Jun 1891", + "date_made": "6/22/1891", + "date_made_late": "22 Jun 1891", + "curatorial_section": "Historic", + "object_number": "15561" + }, + { + "emuIRN": "167380", + "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/167380", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15562" + }, + { + "emuIRN": "321272", + "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", + "technique": [ + "Watercolor" + ], + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Vincenzo Russo" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Spanish Pack", + "Neopolitan Pack" + ], + "url": "http://www.penn.museum/collections/object/321272", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "11 Feb 1891", + "date_made": "2/11/1891", + "date_made_late": "11 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15563" + }, + { + "emuIRN": "279915", + "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", + "provenience": [ + "Italy", + "Naples" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Luigi Pignalosa" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/279915", + "date_made_early": "14 Feb 1891", + "date_made": "2/14/1891", + "date_made_late": "14 Feb 1891", + "curatorial_section": "Historic", + "object_number": "15564" + }, + { + "emuIRN": "157272", + "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/157272", + "date_made_early": "04 Oct 1888", + "date_made": "10/4/1888", + "date_made_late": "04 Oct 1888", + "curatorial_section": "Historic", + "object_number": "15566" + }, + { + "emuIRN": "88522", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/88522", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15567" + }, + { + "emuIRN": "177453", + "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/177453", + "date_made_early": "24 Mar 1891", + "date_made": "3/24/1891", + "date_made_late": "24 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15568" + }, + { + "emuIRN": "322855", + "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", + "provenience": [ + "Italy", + "Ferrara" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Ravenna & Frat" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322855", + "date_made_early": "25 Nov 1890", + "date_made": "11/25/1890", + "date_made_late": "25 Nov 1890", + "curatorial_section": "Historic", + "object_number": "15569" + }, + { + "emuIRN": "322856", + "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/322856", + "date_made_early": "27 Jul 2091", + "date_made": "7/27/91", + "date_made_late": "27 Jul 2091", + "curatorial_section": "Historic", + "object_number": "15570" + }, + { + "emuIRN": "289232", + "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giovanni Pozzi" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/289232", + "date_made": "pre 1892", + "curatorial_section": "Historic", + "object_number": "15571" + }, + { + "emuIRN": "71704", + "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "L. Bartolini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/71704", + "date_made_early": "02 Jul 1892", + "date_made": "7/2/1892", + "date_made_late": "02 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15572" + }, + { + "emuIRN": "341571", + "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Perugia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Silvertrini" + ], + "material": [ + "Paper" + ], + "period": [ + "Late 19Th Century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/341571", + "date_made_early": "01 Jul 1892", + "date_made": "7/1/1892", + "date_made_late": "01 Jul 1892", + "curatorial_section": "Historic", + "object_number": "15573" + }, + { + "emuIRN": "231215", + "description": "Playing card deck - 44 cards", + "provenience": [ + "Italy", + "Bergamo" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Masenghini" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Milanese Deck" + ], + "url": "http://www.penn.museum/collections/object/231215", + "curatorial_section": "Historic", + "object_number": "15575" + }, + { + "emuIRN": "290651", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", + "provenience": [ + "Italy", + "Trento" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Giac. Bertoldi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/290651", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15577" + }, + { + "emuIRN": "116249", + "description": "Playing card deck - 40 cards, printed back with pink abstract designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/116249", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15578" + }, + { + "emuIRN": "76331", + "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/76331", + "date_made_early": "1867", + "date_made": "c.1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15579" + }, + { + "emuIRN": "76332", + "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", + "provenience": [ + "Italy", + "Piacenza" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Gius Beghi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/76332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15580" + }, + { + "emuIRN": "189908", + "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/189908", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15583" + }, + { + "emuIRN": "275719", + "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "url": "http://www.penn.museum/collections/object/275719", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15584" + }, + { + "emuIRN": "51584", + "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "M. Grazia" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/51584", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15585" + }, + { + "emuIRN": "56004", + "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", + "provenience": [ + "Italy", + "Modena" + ], + "culture": [ + "Italian" + ], + "creator": [ + "A. Crispolani" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/56004", + "date_made_early": "1850", + "date_made": "circa 1860", + "date_made_late": "1870", + "curatorial_section": "Historic", + "object_number": "15586" + }, + { + "emuIRN": "124979", + "description": "Playing card deck - Tarocchi/Tarot - 78 cards", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Tarot" + ], + "measurement_unit": "cm", + "url": "http://www.penn.museum/collections/object/124979", + "native_name": [ + "Tarocchi" + ], + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1892", + "curatorial_section": "Historic", + "object_number": "15587" + }, + { + "emuIRN": "212458", + "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", + "provenience": [ + "Italy", + "Sesia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Serravalle" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "French Pack" + ], + "url": "http://www.penn.museum/collections/object/212458", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15588" + }, + { + "emuIRN": "309331", + "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "G. C. Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309331", + "date_made_early": "30 Mar 1891", + "date_made": "3/30/1891", + "date_made_late": "30 Mar 1891", + "curatorial_section": "Historic", + "object_number": "15589" + }, + { + "emuIRN": "309332", + "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309332", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15590" + }, + { + "emuIRN": "86979", + "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Genoa" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Fratelli Armanino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/86979", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15592" + }, + { + "emuIRN": "5817", + "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "period": [ + "19th century" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5817", + "native_name": [ + "Carte da Giuocare" + ], + "date_made_early": "1867", + "date_made": "pre 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15594" + }, + { + "emuIRN": "170983", + "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Baby", + "Angel" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/170983", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15595" + }, + { + "emuIRN": "300071", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", + "provenience": [ + "Italy", + "Bologna" + ], + "iconography": [ + "Tambourine" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/300071", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15596" + }, + { + "emuIRN": "236603", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236603", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15597" + }, + { + "emuIRN": "141064", + "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", + "provenience": [ + "Italy", + "Bologna" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Pietro Barigazzi" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141064", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15598" + }, + { + "emuIRN": "126294", + "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", + "provenience": [ + "Italy", + "Treviso" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Francesca Rino" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/126294", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15599" + }, + { + "emuIRN": "309333", + "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", + "provenience": [ + "Italy", + "Parma (Italy)" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Faelli Carlo" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/309333", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15600" + }, + { + "emuIRN": "261187", + "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", + "provenience": [ + "Italy", + "Brescia" + ], + "culture": [ + "Italian" + ], + "creator": [ + "C. Cassini Salvotti" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Cucu" + ], + "url": "http://www.penn.museum/collections/object/261187", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15601" + }, + { + "emuIRN": "5818", + "description": "40 cards with wrapper. Printed back: green and blue plaid", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/5818", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15604" + }, + { + "emuIRN": "236604", + "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Deposited by R. Stewart Culin, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/236604", + "date_made_early": "1868", + "date_made": "c. 1893", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15607" + }, + { + "emuIRN": "141065", + "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Antonio Poli" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/141065", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15608" + }, + { + "emuIRN": "319728", + "description": "Playing card deck - 40 cards", + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/319728", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15621" + }, + { + "emuIRN": "119150", + "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack", + "Florentine Pack" + ], + "url": "http://www.penn.museum/collections/object/119150", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15622" + }, + { + "emuIRN": "92457", + "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", + "technique": [ + "Printed" + ], + "provenience": [ + "Italy", + "Firenze" + ], + "culture": [ + "Italian" + ], + "creator": [ + "Allesandro Conti Co" + ], + "material": [ + "Paper" + ], + "accession_credit_line": [ + "Gift of Francis C. Macauley, 1893" + ], + "object_name": [ + "Playing Card Deck", + "Italian Pack" + ], + "url": "http://www.penn.museum/collections/object/92457", + "date_made_early": "1867", + "date_made": "c. 1892", + "date_made_late": "1893", + "curatorial_section": "Historic", + "object_number": "15623" + } + ] +} diff --git a/src/tests-tokens/tokens-metadata-tests.ts b/src/tests-tokens/tokens-metadata-tests.ts index cfe316825d..cad6a9a0fb 100644 --- a/src/tests-tokens/tokens-metadata-tests.ts +++ b/src/tests-tokens/tokens-metadata-tests.ts @@ -23,6 +23,7 @@ import { getStacksTestnetNetwork } from '../rosetta-helpers'; import { StacksCoreRpcClient } from '../core-rpc/client'; import { logger } from '../helpers'; import * as nock from 'nock'; +import { performFetch } from './../event-stream/tokens-contract-handler'; const pKey = 'cb3df38053d132895220b9ce471f6b676db5b9bf0b4adefb55f2118ece2478df01'; const stacksNetwork = getStacksTestnetNetwork(); @@ -81,12 +82,7 @@ describe('api tests', () => { return Promise.resolve({ txId: '' }); } - async function deployContract( - contractName: string, - senderPk: string, - sourceFile: string, - api: ApiServer - ) { + async function deployContract(contractName: string, senderPk: string, sourceFile: string) { const senderAddress = getAddressFromPrivateKey(senderPk, stacksNetwork.version); const source = fs.readFileSync(sourceFile).toString(); const normalized_contract_source = source.replace(/\r/g, '').replace(/\t/g, ' '); @@ -129,8 +125,7 @@ describe('api tests', () => { const contract1 = await deployContract( 'beeple-a', pKey, - 'src/tests-tokens/test-contracts/beeple-data-url-a.clar', - api + 'src/tests-tokens/test-contracts/beeple-data-url-a.clar' ); await standByForTokens(contract1.contractId); @@ -149,8 +144,7 @@ describe('api tests', () => { const contract1 = await deployContract( 'beeple-b', pKey, - 'src/tests-tokens/test-contracts/beeple-data-url-b.clar', - api + 'src/tests-tokens/test-contracts/beeple-data-url-b.clar' ); await standByForTokens(contract1.contractId); @@ -170,8 +164,7 @@ describe('api tests', () => { const contract1 = await deployContract( 'beeple-c', pKey, - 'src/tests-tokens/test-contracts/beeple-data-url-c.clar', - api + 'src/tests-tokens/test-contracts/beeple-data-url-c.clar' ); await standByForTokens(contract1.contractId); @@ -203,8 +196,7 @@ describe('api tests', () => { const contract = await deployContract( 'nft-trait', pKey, - 'src/tests-tokens/test-contracts/nft-trait.clar', - api + 'src/tests-tokens/test-contracts/nft-trait.clar' ); const tx = await standByForTx(contract.txId); if (tx.status != 1) logger.error('contract deploy error', tx); @@ -212,8 +204,7 @@ describe('api tests', () => { const contract1 = await deployContract( 'beeple', pKey, - 'src/tests-tokens/test-contracts/beeple.clar', - api + 'src/tests-tokens/test-contracts/beeple.clar' ); await standByForTokens(contract1.contractId); @@ -244,8 +235,7 @@ describe('api tests', () => { const contract = await deployContract( 'ft-trait', pKey, - 'src/tests-tokens/test-contracts/ft-trait.clar', - api + 'src/tests-tokens/test-contracts/ft-trait.clar' ); const tx = await standByForTx(contract.txId); @@ -254,8 +244,7 @@ describe('api tests', () => { const contract1 = await deployContract( 'hey-token', pKey, - 'src/tests-tokens/test-contracts/hey-token.clar', - api + 'src/tests-tokens/test-contracts/hey-token.clar' ); await standByForTokens(contract1.contractId); @@ -334,6 +323,17 @@ describe('api tests', () => { expect(query1.body.results.length).toStrictEqual(20); }); + test('large payload test', () => { + //mock the response + const rawdata = fs.readFileSync('src/tests-tokens/test-data/large-size-test-data.json'); + + nock('https://example.com').get('/large_payload').reply(200, rawdata.toString()); + + void expect(async () => { + await performFetch('https://example.com/large_payload'); + }).rejects.toThrow(); + }); + afterAll(async () => { await new Promise(resolve => eventServer.close(() => resolve(true))); await api.terminate(); From 48b67be21f84839403bce7f59757137e9a562e73 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Mon, 19 Jul 2021 19:18:14 +0500 Subject: [PATCH 27/44] test: generate random data run time instead of a file to test large payload unit test --- .../test-data/large-size-test-data.json | 65221 ---------------- src/tests-tokens/tokens-metadata-tests.ts | 9 +- 2 files changed, 6 insertions(+), 65224 deletions(-) delete mode 100644 src/tests-tokens/test-data/large-size-test-data.json diff --git a/src/tests-tokens/test-data/large-size-test-data.json b/src/tests-tokens/test-data/large-size-test-data.json deleted file mode 100644 index 3b16f9a9dc..0000000000 --- a/src/tests-tokens/test-data/large-size-test-data.json +++ /dev/null @@ -1,65221 +0,0 @@ -{ - "result": [ - { - "emuIRN": "406752", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406752", - "curatorial_section": "Historic", - "object_number": "19124.14" - }, - { - "emuIRN": "406753", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406753", - "curatorial_section": "Historic", - "object_number": "19124.15" - }, - { - "emuIRN": "406754", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406754", - "curatorial_section": "Historic", - "object_number": "19124.16" - }, - { - "emuIRN": "406755", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406755", - "curatorial_section": "Historic", - "object_number": "19124.17" - }, - { - "emuIRN": "406756", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406756", - "curatorial_section": "Historic", - "object_number": "19124.18" - }, - { - "emuIRN": "406757", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406757", - "curatorial_section": "Historic", - "object_number": "19124.19" - }, - { - "emuIRN": "406758", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406758", - "curatorial_section": "Historic", - "object_number": "19124.20" - }, - { - "emuIRN": "406759", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406759", - "curatorial_section": "Historic", - "object_number": "19124.21" - }, - { - "emuIRN": "406760", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406760", - "curatorial_section": "Historic", - "object_number": "19124.22" - }, - { - "emuIRN": "406761", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406761", - "curatorial_section": "Historic", - "object_number": "19124.23" - }, - { - "emuIRN": "406762", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406762", - "curatorial_section": "Historic", - "object_number": "19124.24" - }, - { - "emuIRN": "406763", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406763", - "curatorial_section": "Historic", - "object_number": "19124.25" - }, - { - "emuIRN": "406764", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406764", - "curatorial_section": "Historic", - "object_number": "19124.26" - }, - { - "emuIRN": "330556", - "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", - "provenience": [ - "Europe (uncertain)" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/330556", - "curatorial_section": "Historic", - "object_number": "29-191-128" - }, - { - "emuIRN": "321909", - "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/321909", - "curatorial_section": "Historic", - "object_number": "29-191-129" - }, - { - "emuIRN": "127367", - "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/127367", - "curatorial_section": "Historic", - "object_number": "29-191-227" - }, - { - "emuIRN": "203363", - "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", - "technique": [ - "Painted" - ], - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Paint", - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/203363", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15792" - }, - { - "emuIRN": "185526", - "description": "Red and gold sphere with small metall loop on 1 end", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of H. C. Thomson, 1894" - ], - "object_name": [ - "Whistling Top" - ], - "url": "http://www.penn.museum/collections/object/185526", - "curatorial_section": "Historic", - "object_number": "17817" - }, - { - "emuIRN": "59206", - "description": "Wood ball with metal spike. Cord for spinning", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top", - "Cord" - ], - "url": "http://www.penn.museum/collections/object/59206", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19214" - }, - { - "emuIRN": "186142", - "description": "Turned wood, bell-shaped with metal spike.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/186142", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19216" - }, - { - "emuIRN": "234646", - "description": "Toy rolling disc - wooden.", - "provenience": [ - "Italy" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Henry H. Giglioli, 1896" - ], - "object_name": [ - "Spinning Toy (uncertain)", - "Rolling Disc" - ], - "url": "http://www.penn.museum/collections/object/234646", - "curatorial_section": "Historic", - "object_number": "19217" - }, - { - "emuIRN": "134935", - "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal", - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1897" - ], - "object_name": [ - "Pinwheel" - ], - "url": "http://www.penn.museum/collections/object/134935", - "curatorial_section": "Historic", - "object_number": "20037" - }, - { - "emuIRN": "340545", - "description": "Turned wood ball with metal peg. Smaller version of 19214.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/340545", - "curatorial_section": "Historic", - "object_number": "19215A" - }, - { - "emuIRN": "273066", - "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Top Die", - "Teetotum" - ], - "url": "http://www.penn.museum/collections/object/273066", - "curatorial_section": "Historic", - "object_number": "71-18-6" - }, - { - "emuIRN": "146612", - "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", - "provenience": [ - "Japan" - ], - "material": [ - "Brass", - "Tin" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/146612", - "curatorial_section": "Historic", - "object_number": "71-18-11" - }, - { - "emuIRN": "264736", - "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top" - ], - "url": "http://www.penn.museum/collections/object/264736", - "curatorial_section": "Historic", - "object_number": "71-18-41" - }, - { - "emuIRN": "128464", - "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", - "provenience": [ - "West Germany" - ], - "culture": [ - "German" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/128464", - "curatorial_section": "Historic", - "object_number": "71-18-45" - }, - { - "emuIRN": "102950", - "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top", - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/102950", - "curatorial_section": "Historic", - "object_number": "71-18-50" - }, - { - "emuIRN": "215073", - "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Gyroscope" - ], - "url": "http://www.penn.museum/collections/object/215073", - "curatorial_section": "Historic", - "object_number": "71-18-53" - }, - { - "emuIRN": "281519", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/281519", - "curatorial_section": "Historic", - "object_number": "71-18-10A" - }, - { - "emuIRN": "132216", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/132216", - "curatorial_section": "Historic", - "object_number": "71-18-10B" - }, - { - "emuIRN": "222994", - "description": "Turned wooden spinnters. A-D have stems.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/222994", - "curatorial_section": "Historic", - "object_number": "71-18-17A" - }, - { - "emuIRN": "293378", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/293378", - "curatorial_section": "Historic", - "object_number": "71-18-17B" - }, - { - "emuIRN": "244262", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/244262", - "curatorial_section": "Historic", - "object_number": "71-18-17C" - }, - { - "emuIRN": "97422", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/97422", - "curatorial_section": "Historic", - "object_number": "71-18-17D" - }, - { - "emuIRN": "283240", - "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/283240", - "curatorial_section": "Historic", - "object_number": "71-18-17E" - }, - { - "emuIRN": "199531", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/199531", - "curatorial_section": "Historic", - "object_number": "71-18-20A" - }, - { - "emuIRN": "315942", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/315942", - "curatorial_section": "Historic", - "object_number": "71-18-20B" - }, - { - "emuIRN": "154811", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/154811", - "curatorial_section": "Historic", - "object_number": "71-18-20C" - }, - { - "emuIRN": "119329", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/119329", - "curatorial_section": "Historic", - "object_number": "71-18-20D" - }, - { - "emuIRN": "138169", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/138169", - "curatorial_section": "Historic", - "object_number": "71-18-20E" - }, - { - "emuIRN": "168699", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/168699", - "curatorial_section": "Historic", - "object_number": "71-18-20F" - }, - { - "emuIRN": "165852", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/165852", - "curatorial_section": "Historic", - "object_number": "71-18-20G" - }, - { - "emuIRN": "307682", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/307682", - "curatorial_section": "Historic", - "object_number": "71-18-20H" - }, - { - "emuIRN": "336448", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336448", - "curatorial_section": "Historic", - "object_number": "71-18-32A" - }, - { - "emuIRN": "181753", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/181753", - "curatorial_section": "Historic", - "object_number": "71-18-32B" - }, - { - "emuIRN": "277851", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/277851", - "curatorial_section": "Historic", - "object_number": "71-18-32C" - }, - { - "emuIRN": "44213", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/44213", - "curatorial_section": "Historic", - "object_number": "71-18-32D" - }, - { - "emuIRN": "343371", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/343371", - "curatorial_section": "Historic", - "object_number": "71-18-32E" - }, - { - "emuIRN": "405192", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "period": [ - "Modern" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/405192", - "curatorial_section": "Historic", - "object_number": "71-18-32F" - }, - { - "emuIRN": "174014", - "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinning Toy", - "Supported Top", - "Whistle" - ], - "url": "http://www.penn.museum/collections/object/174014", - "curatorial_section": "Historic", - "object_number": "71-18-72" - }, - { - "emuIRN": "54377", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/54377", - "curatorial_section": "Historic", - "object_number": "71-18-71A" - }, - { - "emuIRN": "336914", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336914", - "curatorial_section": "Historic", - "object_number": "71-18-71B" - }, - { - "emuIRN": "40527", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel", - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/40527", - "curatorial_section": "Historic", - "object_number": "71-18-71C" - }, - { - "emuIRN": "81633", - "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "iconography": [ - "Dog", - "Flag" - ], - "material": [ - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81633", - "other_numbers": [ - "533107" - ], - "curatorial_section": "Historic", - "object_number": "73-1-9" - }, - { - "emuIRN": "315995", - "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/315995", - "curatorial_section": "Historic", - "object_number": "73-1-11" - }, - { - "emuIRN": "81890", - "description": "Bi-colored light plastic top / yo-yo", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81890", - "curatorial_section": "Historic", - "object_number": "73-1-12" - }, - { - "emuIRN": "158974", - "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/158974", - "curatorial_section": "Historic", - "object_number": "73-1-21" - }, - { - "emuIRN": "270492", - "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/270492", - "curatorial_section": "Historic", - "object_number": "73-1-15B" - }, - { - "emuIRN": "122561", - "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "material": [ - "Plastic", - "Nylon" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/122561", - "curatorial_section": "Historic", - "object_number": "75-13-1" - }, - { - "emuIRN": "169135", - "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", - "provenience": [ - "Wisconsin", - "Milwaukee" - ], - "culture": [ - "American" - ], - "creator": [ - "Jak Pak Inc." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/169135", - "curatorial_section": "Historic", - "object_number": "75-13-18" - }, - { - "emuIRN": "265153", - "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", - "provenience": [ - "New York", - "Brooklyn" - ], - "culture": [ - "American" - ], - "creator": [ - "American Magnetop Corp." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/265153", - "curatorial_section": "Historic", - "object_number": "75-13-19" - }, - { - "emuIRN": "258185", - "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Giant Plastics Corp." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/258185", - "curatorial_section": "Historic", - "object_number": "75-13-21" - }, - { - "emuIRN": "112910", - "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", - "provenience": [ - "England" - ], - "culture": [ - "English" - ], - "creator": [ - "Christie & Jay, Ltd" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/112910", - "curatorial_section": "Historic", - "object_number": "75-13-30" - }, - { - "emuIRN": "206818", - "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", - "provenience": [ - "Tennessee", - "Nashville" - ], - "culture": [ - "American" - ], - "creator": [ - "Kusan, Inc" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Yo-Yo", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/206818", - "curatorial_section": "Historic", - "object_number": "75-13-32" - }, - { - "emuIRN": "320134", - "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", - "provenience": [ - "New York", - "Brooklyn" - ], - "creator": [ - "Shimmel" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/320134", - "curatorial_section": "Historic", - "object_number": "75-13-33" - }, - { - "emuIRN": "13411", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/13411", - "curatorial_section": "Historic", - "object_number": "75-13-10A" - }, - { - "emuIRN": "2151", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/2151", - "curatorial_section": "Historic", - "object_number": "75-13-10B" - }, - { - "emuIRN": "227620", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/227620", - "curatorial_section": "Historic", - "object_number": "75-13-10C" - }, - { - "emuIRN": "205966", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/205966", - "curatorial_section": "Historic", - "object_number": "75-13-29A" - }, - { - "emuIRN": "281691", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/281691", - "curatorial_section": "Historic", - "object_number": "75-13-29B" - }, - { - "emuIRN": "99171", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/99171", - "curatorial_section": "Historic", - "object_number": "75-13-29C" - }, - { - "emuIRN": "101034", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/101034", - "curatorial_section": "Historic", - "object_number": "75-13-29D" - }, - { - "emuIRN": "308170", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/308170", - "curatorial_section": "Historic", - "object_number": "75-13-29E" - }, - { - "emuIRN": "212263", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/212263", - "curatorial_section": "Historic", - "object_number": "75-13-29F" - }, - { - "emuIRN": "171295", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/171295", - "curatorial_section": "Historic", - "object_number": "75-13-29G" - }, - { - "emuIRN": "252428", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/252428", - "curatorial_section": "Historic", - "object_number": "75-13-29H" - }, - { - "emuIRN": "33474", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/33474", - "curatorial_section": "Historic", - "object_number": "75-13-29I" - }, - { - "emuIRN": "64988", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/64988", - "curatorial_section": "Historic", - "object_number": "75-13-29J" - }, - { - "emuIRN": "149403", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/149403", - "curatorial_section": "Historic", - "object_number": "75-13-29K" - }, - { - "emuIRN": "192238", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/192238", - "curatorial_section": "Historic", - "object_number": "75-13-29L" - }, - { - "emuIRN": "87050", - "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/87050", - "curatorial_section": "Historic", - "object_number": "75-13-5A" - }, - { - "emuIRN": "241334", - "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", - "provenience": [ - "Hawthorne" - ], - "culture": [ - "American" - ], - "creator": [ - "Mattel, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/241334", - "curatorial_section": "Historic", - "object_number": "75-13-9D" - }, - { - "emuIRN": "77859", - "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/77859", - "curatorial_section": "Historic", - "object_number": "71-18-24" - }, - { - "emuIRN": "285019", - "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top", - "Musical Top" - ], - "url": "http://www.penn.museum/collections/object/285019", - "curatorial_section": "Historic", - "object_number": "71-18-27" - }, - { - "emuIRN": "37984", - "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/37984", - "curatorial_section": "Historic", - "object_number": "71-18-38" - }, - { - "emuIRN": "239276", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/239276", - "curatorial_section": "Historic", - "object_number": "71-18-28A" - }, - { - "emuIRN": "32312", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/32312", - "curatorial_section": "Historic", - "object_number": "71-18-28B" - }, - { - "emuIRN": "65727", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/65727", - "curatorial_section": "Historic", - "object_number": "71-18-28C" - }, - { - "emuIRN": "274339", - "description": "Wire puzzle with boot and cap.", - "provenience": [ - "Europe", - "France (uncertain)" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Wire Puzzle" - ], - "url": "http://www.penn.museum/collections/object/274339", - "curatorial_section": "Historic", - "object_number": "8812" - }, - { - "emuIRN": "159716", - "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Selchow & Richter" - ], - "material": [ - "Cardboard" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/159716", - "date_made_early": "1880", - "date_made": "9/7/1880", - "date_made_late": "1880", - "curatorial_section": "Historic", - "object_number": "15496" - }, - { - "emuIRN": "18643", - "description": "12 lithographed cards with pictures of children's games. Fused to 16555", - "technique": [ - "Lithograph" - ], - "provenience": [ - "France", - "Paris (France)" - ], - "iconography": [ - "Games" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Cards" - ], - "url": "http://www.penn.museum/collections/object/18643", - "curatorial_section": "Historic", - "object_number": "16231" - }, - { - "emuIRN": "34693", - "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Metal", - "Glass", - "Wood" - ], - "accession_credit_line": [ - "Gift of Mrs. John Harrison, 1894" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/34693", - "date_made_early": "1869", - "date_made": "c. 1894", - "date_made_late": "1894", - "curatorial_section": "Historic", - "object_number": "16401" - }, - { - "emuIRN": "93791", - "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", - "provenience": [ - "England", - "London" - ], - "culture": [ - "British" - ], - "accession_credit_line": [ - "Gift of Henry Jones, 1893" - ], - "object_name": [ - "Card Game", - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93791", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "16555" - }, - { - "emuIRN": "117728", - "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "creator": [ - "Donaldson Brothers" - ], - "material": [ - "Paper" - ], - "object_name": [ - "Puzzle", - "Advertisement" - ], - "url": "http://www.penn.museum/collections/object/117728", - "curatorial_section": "Historic", - "object_number": "18578" - }, - { - "emuIRN": "303943", - "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", - "provenience": [ - "Pennsylvania", - "Bucks County" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Glass", - "Metal", - "String", - "Cork" - ], - "accession_credit_line": [ - "Gift of Col. Henry D. Paxson, 1897" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/303943", - "curatorial_section": "Historic", - "object_number": "20067" - }, - { - "emuIRN": "287388", - "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Dr. Max Uhle, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/287388", - "curatorial_section": "Historic", - "object_number": "21082" - }, - { - "emuIRN": "140578", - "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/140578", - "curatorial_section": "Historic", - "object_number": "21458" - }, - { - "emuIRN": "120293", - "description": "Wood Board with instructions. Metal Arm.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120293", - "curatorial_section": "Historic", - "object_number": "21460" - }, - { - "emuIRN": "25280", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/25280", - "curatorial_section": "Historic", - "object_number": "21594A" - }, - { - "emuIRN": "406863", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/406863", - "curatorial_section": "Historic", - "object_number": "21594B" - }, - { - "emuIRN": "93703", - "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "The American Game and Puzzle Company" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93703", - "curatorial_section": "Historic", - "object_number": "29-191-146" - }, - { - "emuIRN": "64758", - "description": "Yamato Block Puzzle - 6 pieces of wood", - "provenience": [ - "Japan" - ], - "culture": [ - "Japanese" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64758", - "curatorial_section": "Historic", - "object_number": "29-191-159" - }, - { - "emuIRN": "64759", - "description": "See Dar Wonderful - 9 pieces of wood", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64759", - "curatorial_section": "Historic", - "object_number": "29-191-160" - }, - { - "emuIRN": "30391", - "description": "12 pieces", - "provenience": [ - "New York", - "New York City" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle", - "Reproduction (uncertain)" - ], - "url": "http://www.penn.museum/collections/object/30391", - "curatorial_section": "Historic", - "object_number": "29-191-161" - }, - { - "emuIRN": "22499", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/22499", - "other_numbers": [ - "4001" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157B" - }, - { - "emuIRN": "120252", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120252", - "other_numbers": [ - "4001?" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157C" - }, - { - "emuIRN": "156290", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/156290", - "other_numbers": [ - "4002" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157D" - }, - { - "emuIRN": "99398", - "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", - "provenience": [ - "Pennsylvania", - "Pittsburgh" - ], - "culture": [ - "American" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Charles Este, Jr., 1899" - ], - "object_name": [ - "Puzzle", - "Trick" - ], - "url": "http://www.penn.museum/collections/object/99398", - "curatorial_section": "Historic", - "object_number": "19783" - }, - { - "emuIRN": "130464", - "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/130464", - "native_name": [ - "Cartes a Jouer" - ], - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "7594" - }, - { - "emuIRN": "160242", - "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/160242", - "date_made_early": "1800", - "date_made": "1800-1899", - "date_made_late": "1899", - "curatorial_section": "Historic", - "object_number": "7595" - }, - { - "emuIRN": "157104", - "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1890" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "url": "http://www.penn.museum/collections/object/157104", - "date_made_early": "1800", - "date_made": "19th century", - "date_made_late": "1890", - "curatorial_section": "Historic", - "object_number": "7629" - }, - { - "emuIRN": "157105", - "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "C. L. Wust" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of J. D. Sergeant, 1890" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/157105", - "curatorial_section": "Historic", - "object_number": "7630" - }, - { - "emuIRN": "98559", - "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "B. Dondorf" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of W. Yorke Stevenson, 1891" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/98559", - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "other_numbers": [ - "27" - ], - "curatorial_section": "Historic", - "object_number": "7712" - }, - { - "emuIRN": "248509", - "description": "Card dominoes in box.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Card Game", - "Dominoe" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/248509", - "curatorial_section": "Historic", - "object_number": "8813" - }, - { - "emuIRN": "137944", - "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/137944", - "date_made_early": "1866", - "date_made": "c. 1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "9011" - }, - { - "emuIRN": "194220", - "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "creator": [ - "Watilliaux" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/194220", - "date_made_early": "1878", - "date_made": "1878", - "date_made_late": "1878", - "curatorial_section": "Historic", - "object_number": "9018" - }, - { - "emuIRN": "205296", - "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", - "technique": [ - "Printed" - ], - "provenience": [ - "Mexico (Central America)", - "Puebla (Mexican State)" - ], - "culture": [ - "Spanish" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of the US National Museum, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/205296", - "date_made_early": "1873", - "date_made": "1873-1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15360" - }, - { - "emuIRN": "21030", - "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Fortune Telling Cards" - ], - "url": "http://www.penn.museum/collections/object/21030", - "date_made_early": "1865", - "date_made": "pre 1890", - "date_made_late": "1890", - "other_numbers": [ - "43" - ], - "curatorial_section": "Historic", - "object_number": "15513" - }, - { - "emuIRN": "46932", - "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", - "provenience": [ - "Italy", - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/46932", - "date_made_early": "1880", - "date_made": "1880-1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15528" - }, - { - "emuIRN": "220035", - "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/220035", - "date_made_early": "29 Nov 1890", - "date_made": "11/29/1890", - "date_made_late": "29 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15529" - }, - { - "emuIRN": "220036", - "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/220036", - "date_made_early": "27 Oct 1890", - "date_made": "10/27/1890", - "date_made_late": "27 Oct 1890", - "other_numbers": [ - "42" - ], - "curatorial_section": "Historic", - "object_number": "15530" - }, - { - "emuIRN": "289473", - "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/289473", - "date_made_early": "17 Jan 1887", - "date_made": "1/17/1887", - "date_made_late": "17 Jan 1887", - "curatorial_section": "Historic", - "object_number": "15532" - }, - { - "emuIRN": "114394", - "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/114394", - "date_made_early": "1867", - "date_made": " pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15533" - }, - { - "emuIRN": "82994", - "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/82994", - "date_made_early": "17 Jun 1890", - "date_made": "6/17/1890", - "date_made_late": "17 Jun 1890", - "other_numbers": [ - "13" - ], - "curatorial_section": "Historic", - "object_number": "15534" - }, - { - "emuIRN": "233242", - "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/233242", - "date_made_early": "13 Mar 1891", - "date_made": "3/13/1891", - "date_made_late": "13 Mar 1891", - "other_numbers": [ - "5" - ], - "curatorial_section": "Historic", - "object_number": "15536" - }, - { - "emuIRN": "237987", - "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/237987", - "date_made_early": "13 Mar 1891", - "date_made": "pre 1892", - "date_made_late": "13 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15537" - }, - { - "emuIRN": "264110", - "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/264110", - "date_made_early": "1867", - "date_made": "pre 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15538" - }, - { - "emuIRN": "36188", - "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/36188", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15540" - }, - { - "emuIRN": "154504", - "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/154504", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15541" - }, - { - "emuIRN": "203963", - "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/203963", - "date_made_early": "27 Aug 1891", - "date_made": "8/27/1891", - "date_made_late": "27 Aug 1891", - "curatorial_section": "Historic", - "object_number": "15543" - }, - { - "emuIRN": "241994", - "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/241994", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15544" - }, - { - "emuIRN": "243680", - "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/243680", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15545" - }, - { - "emuIRN": "87145", - "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/87145", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15546" - }, - { - "emuIRN": "59271", - "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/59271", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15547" - }, - { - "emuIRN": "336096", - "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/336096", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15548" - }, - { - "emuIRN": "203973", - "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/203973", - "date_made_early": "09 Apr 1888", - "date_made": "4/9/1888", - "date_made_late": "09 Apr 1888", - "curatorial_section": "Historic", - "object_number": "15550" - }, - { - "emuIRN": "238541", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/238541", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15552" - }, - { - "emuIRN": "131933", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/131933", - "date_made_early": "16 Jun 1891", - "date_made": "6/16/1891", - "date_made_late": "16 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15553" - }, - { - "emuIRN": "158923", - "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/158923", - "date_made_early": "01 Jun 1891", - "date_made": "6/1/1891", - "date_made_late": "01 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15554" - }, - { - "emuIRN": "103187", - "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/103187", - "native_name": [ - "Tarocchino" - ], - "date_made_early": "03 Feb 1891", - "date_made": "2/3/1891", - "date_made_late": "03 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15555" - }, - { - "emuIRN": "178709", - "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", - "provenience": [ - "Italy", - "Povoletto-Udine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "F. L. Muccioli" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/178709", - "date_made_early": "09 May 1890", - "date_made": "5/9/1890", - "date_made_late": "09 May 1890", - "curatorial_section": "Historic", - "object_number": "15556" - }, - { - "emuIRN": "277112", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/277112", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15557" - }, - { - "emuIRN": "25552", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/25552", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15558" - }, - { - "emuIRN": "325482", - "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/325482", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1895", - "curatorial_section": "Historic", - "object_number": "15559" - }, - { - "emuIRN": "325483", - "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/325483", - "date_made_early": "12 Mar 2091", - "date_made": "3/12/91", - "date_made_late": "12 Mar 2091", - "curatorial_section": "Historic", - "object_number": "15560" - }, - { - "emuIRN": "48114", - "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/48114", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "22 Jun 1891", - "date_made": "6/22/1891", - "date_made_late": "22 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15561" - }, - { - "emuIRN": "167380", - "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/167380", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15562" - }, - { - "emuIRN": "321272", - "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Vincenzo Russo" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack", - "Neopolitan Pack" - ], - "url": "http://www.penn.museum/collections/object/321272", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "11 Feb 1891", - "date_made": "2/11/1891", - "date_made_late": "11 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15563" - }, - { - "emuIRN": "279915", - "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Luigi Pignalosa" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/279915", - "date_made_early": "14 Feb 1891", - "date_made": "2/14/1891", - "date_made_late": "14 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15564" - }, - { - "emuIRN": "157272", - "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/157272", - "date_made_early": "04 Oct 1888", - "date_made": "10/4/1888", - "date_made_late": "04 Oct 1888", - "curatorial_section": "Historic", - "object_number": "15566" - }, - { - "emuIRN": "88522", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/88522", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15567" - }, - { - "emuIRN": "177453", - "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/177453", - "date_made_early": "24 Mar 1891", - "date_made": "3/24/1891", - "date_made_late": "24 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15568" - }, - { - "emuIRN": "322855", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322855", - "date_made_early": "25 Nov 1890", - "date_made": "11/25/1890", - "date_made_late": "25 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15569" - }, - { - "emuIRN": "322856", - "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322856", - "date_made_early": "27 Jul 2091", - "date_made": "7/27/91", - "date_made_late": "27 Jul 2091", - "curatorial_section": "Historic", - "object_number": "15570" - }, - { - "emuIRN": "289232", - "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/289232", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15571" - }, - { - "emuIRN": "71704", - "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "L. Bartolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/71704", - "date_made_early": "02 Jul 1892", - "date_made": "7/2/1892", - "date_made_late": "02 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15572" - }, - { - "emuIRN": "341571", - "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Silvertrini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/341571", - "date_made_early": "01 Jul 1892", - "date_made": "7/1/1892", - "date_made_late": "01 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15573" - }, - { - "emuIRN": "231215", - "description": "Playing card deck - 44 cards", - "provenience": [ - "Italy", - "Bergamo" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Masenghini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Milanese Deck" - ], - "url": "http://www.penn.museum/collections/object/231215", - "curatorial_section": "Historic", - "object_number": "15575" - }, - { - "emuIRN": "290651", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", - "provenience": [ - "Italy", - "Trento" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giac. Bertoldi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/290651", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15577" - }, - { - "emuIRN": "116249", - "description": "Playing card deck - 40 cards, printed back with pink abstract designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/116249", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15578" - }, - { - "emuIRN": "76331", - "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/76331", - "date_made_early": "1867", - "date_made": "c.1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15579" - }, - { - "emuIRN": "76332", - "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/76332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15580" - }, - { - "emuIRN": "189908", - "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/189908", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15583" - }, - { - "emuIRN": "275719", - "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/275719", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15584" - }, - { - "emuIRN": "51584", - "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/51584", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15585" - }, - { - "emuIRN": "56004", - "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Crispolani" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/56004", - "date_made_early": "1850", - "date_made": "circa 1860", - "date_made_late": "1870", - "curatorial_section": "Historic", - "object_number": "15586" - }, - { - "emuIRN": "124979", - "description": "Playing card deck - Tarocchi/Tarot - 78 cards", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/124979", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15587" - }, - { - "emuIRN": "212458", - "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "url": "http://www.penn.museum/collections/object/212458", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15588" - }, - { - "emuIRN": "309331", - "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "G. C. Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309331", - "date_made_early": "30 Mar 1891", - "date_made": "3/30/1891", - "date_made_late": "30 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15589" - }, - { - "emuIRN": "309332", - "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15590" - }, - { - "emuIRN": "86979", - "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/86979", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15592" - }, - { - "emuIRN": "5817", - "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5817", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15594" - }, - { - "emuIRN": "170983", - "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Baby", - "Angel" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/170983", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15595" - }, - { - "emuIRN": "300071", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Tambourine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/300071", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15596" - }, - { - "emuIRN": "236603", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236603", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15597" - }, - { - "emuIRN": "141064", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141064", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15598" - }, - { - "emuIRN": "126294", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", - "provenience": [ - "Italy", - "Treviso" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Francesca Rino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/126294", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15599" - }, - { - "emuIRN": "309333", - "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", - "provenience": [ - "Italy", - "Parma (Italy)" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Faelli Carlo" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309333", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15600" - }, - { - "emuIRN": "261187", - "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Cassini Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Cucu" - ], - "url": "http://www.penn.museum/collections/object/261187", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15601" - }, - { - "emuIRN": "5818", - "description": "40 cards with wrapper. Printed back: green and blue plaid", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5818", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15604" - }, - { - "emuIRN": "236604", - "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236604", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15607" - }, - { - "emuIRN": "141065", - "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141065", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15608" - }, - { - "emuIRN": "319728", - "description": "Playing card deck - 40 cards", - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/319728", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15621" - }, - { - "emuIRN": "119150", - "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Florentine Pack" - ], - "url": "http://www.penn.museum/collections/object/119150", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15622" - }, - { - "emuIRN": "92457", - "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/92457", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15623" - }, - { - "emuIRN": "406753", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406753", - "curatorial_section": "Historic", - "object_number": "19124.15" - }, - { - "emuIRN": "406754", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406754", - "curatorial_section": "Historic", - "object_number": "19124.16" - }, - { - "emuIRN": "406755", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406755", - "curatorial_section": "Historic", - "object_number": "19124.17" - }, - { - "emuIRN": "406756", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406756", - "curatorial_section": "Historic", - "object_number": "19124.18" - }, - { - "emuIRN": "406757", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406757", - "curatorial_section": "Historic", - "object_number": "19124.19" - }, - { - "emuIRN": "406758", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406758", - "curatorial_section": "Historic", - "object_number": "19124.20" - }, - { - "emuIRN": "406759", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406759", - "curatorial_section": "Historic", - "object_number": "19124.21" - }, - { - "emuIRN": "406760", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406760", - "curatorial_section": "Historic", - "object_number": "19124.22" - }, - { - "emuIRN": "406761", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406761", - "curatorial_section": "Historic", - "object_number": "19124.23" - }, - { - "emuIRN": "406762", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406762", - "curatorial_section": "Historic", - "object_number": "19124.24" - }, - { - "emuIRN": "406763", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406763", - "curatorial_section": "Historic", - "object_number": "19124.25" - }, - { - "emuIRN": "406764", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406764", - "curatorial_section": "Historic", - "object_number": "19124.26" - }, - { - "emuIRN": "330556", - "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", - "provenience": [ - "Europe (uncertain)" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/330556", - "curatorial_section": "Historic", - "object_number": "29-191-128" - }, - { - "emuIRN": "321909", - "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/321909", - "curatorial_section": "Historic", - "object_number": "29-191-129" - }, - { - "emuIRN": "127367", - "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/127367", - "curatorial_section": "Historic", - "object_number": "29-191-227" - }, - { - "emuIRN": "203363", - "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", - "technique": [ - "Painted" - ], - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Paint", - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/203363", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15792" - }, - { - "emuIRN": "185526", - "description": "Red and gold sphere with small metall loop on 1 end", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of H. C. Thomson, 1894" - ], - "object_name": [ - "Whistling Top" - ], - "url": "http://www.penn.museum/collections/object/185526", - "curatorial_section": "Historic", - "object_number": "17817" - }, - { - "emuIRN": "59206", - "description": "Wood ball with metal spike. Cord for spinning", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top", - "Cord" - ], - "url": "http://www.penn.museum/collections/object/59206", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19214" - }, - { - "emuIRN": "186142", - "description": "Turned wood, bell-shaped with metal spike.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/186142", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19216" - }, - { - "emuIRN": "234646", - "description": "Toy rolling disc - wooden.", - "provenience": [ - "Italy" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Henry H. Giglioli, 1896" - ], - "object_name": [ - "Spinning Toy (uncertain)", - "Rolling Disc" - ], - "url": "http://www.penn.museum/collections/object/234646", - "curatorial_section": "Historic", - "object_number": "19217" - }, - { - "emuIRN": "134935", - "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal", - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1897" - ], - "object_name": [ - "Pinwheel" - ], - "url": "http://www.penn.museum/collections/object/134935", - "curatorial_section": "Historic", - "object_number": "20037" - }, - { - "emuIRN": "340545", - "description": "Turned wood ball with metal peg. Smaller version of 19214.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/340545", - "curatorial_section": "Historic", - "object_number": "19215A" - }, - { - "emuIRN": "273066", - "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Top Die", - "Teetotum" - ], - "url": "http://www.penn.museum/collections/object/273066", - "curatorial_section": "Historic", - "object_number": "71-18-6" - }, - { - "emuIRN": "146612", - "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", - "provenience": [ - "Japan" - ], - "material": [ - "Brass", - "Tin" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/146612", - "curatorial_section": "Historic", - "object_number": "71-18-11" - }, - { - "emuIRN": "264736", - "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top" - ], - "url": "http://www.penn.museum/collections/object/264736", - "curatorial_section": "Historic", - "object_number": "71-18-41" - }, - { - "emuIRN": "128464", - "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", - "provenience": [ - "West Germany" - ], - "culture": [ - "German" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/128464", - "curatorial_section": "Historic", - "object_number": "71-18-45" - }, - { - "emuIRN": "102950", - "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top", - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/102950", - "curatorial_section": "Historic", - "object_number": "71-18-50" - }, - { - "emuIRN": "215073", - "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Gyroscope" - ], - "url": "http://www.penn.museum/collections/object/215073", - "curatorial_section": "Historic", - "object_number": "71-18-53" - }, - { - "emuIRN": "281519", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/281519", - "curatorial_section": "Historic", - "object_number": "71-18-10A" - }, - { - "emuIRN": "132216", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/132216", - "curatorial_section": "Historic", - "object_number": "71-18-10B" - }, - { - "emuIRN": "222994", - "description": "Turned wooden spinnters. A-D have stems.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/222994", - "curatorial_section": "Historic", - "object_number": "71-18-17A" - }, - { - "emuIRN": "293378", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/293378", - "curatorial_section": "Historic", - "object_number": "71-18-17B" - }, - { - "emuIRN": "244262", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/244262", - "curatorial_section": "Historic", - "object_number": "71-18-17C" - }, - { - "emuIRN": "97422", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/97422", - "curatorial_section": "Historic", - "object_number": "71-18-17D" - }, - { - "emuIRN": "283240", - "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/283240", - "curatorial_section": "Historic", - "object_number": "71-18-17E" - }, - { - "emuIRN": "199531", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/199531", - "curatorial_section": "Historic", - "object_number": "71-18-20A" - }, - { - "emuIRN": "315942", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/315942", - "curatorial_section": "Historic", - "object_number": "71-18-20B" - }, - { - "emuIRN": "154811", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/154811", - "curatorial_section": "Historic", - "object_number": "71-18-20C" - }, - { - "emuIRN": "119329", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/119329", - "curatorial_section": "Historic", - "object_number": "71-18-20D" - }, - { - "emuIRN": "138169", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/138169", - "curatorial_section": "Historic", - "object_number": "71-18-20E" - }, - { - "emuIRN": "168699", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/168699", - "curatorial_section": "Historic", - "object_number": "71-18-20F" - }, - { - "emuIRN": "165852", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/165852", - "curatorial_section": "Historic", - "object_number": "71-18-20G" - }, - { - "emuIRN": "307682", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/307682", - "curatorial_section": "Historic", - "object_number": "71-18-20H" - }, - { - "emuIRN": "336448", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336448", - "curatorial_section": "Historic", - "object_number": "71-18-32A" - }, - { - "emuIRN": "181753", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/181753", - "curatorial_section": "Historic", - "object_number": "71-18-32B" - }, - { - "emuIRN": "277851", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/277851", - "curatorial_section": "Historic", - "object_number": "71-18-32C" - }, - { - "emuIRN": "44213", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/44213", - "curatorial_section": "Historic", - "object_number": "71-18-32D" - }, - { - "emuIRN": "343371", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/343371", - "curatorial_section": "Historic", - "object_number": "71-18-32E" - }, - { - "emuIRN": "405192", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "period": [ - "Modern" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/405192", - "curatorial_section": "Historic", - "object_number": "71-18-32F" - }, - { - "emuIRN": "174014", - "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinning Toy", - "Supported Top", - "Whistle" - ], - "url": "http://www.penn.museum/collections/object/174014", - "curatorial_section": "Historic", - "object_number": "71-18-72" - }, - { - "emuIRN": "54377", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/54377", - "curatorial_section": "Historic", - "object_number": "71-18-71A" - }, - { - "emuIRN": "336914", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336914", - "curatorial_section": "Historic", - "object_number": "71-18-71B" - }, - { - "emuIRN": "40527", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel", - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/40527", - "curatorial_section": "Historic", - "object_number": "71-18-71C" - }, - { - "emuIRN": "81633", - "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "iconography": [ - "Dog", - "Flag" - ], - "material": [ - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81633", - "other_numbers": [ - "533107" - ], - "curatorial_section": "Historic", - "object_number": "73-1-9" - }, - { - "emuIRN": "315995", - "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/315995", - "curatorial_section": "Historic", - "object_number": "73-1-11" - }, - { - "emuIRN": "81890", - "description": "Bi-colored light plastic top / yo-yo", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81890", - "curatorial_section": "Historic", - "object_number": "73-1-12" - }, - { - "emuIRN": "158974", - "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/158974", - "curatorial_section": "Historic", - "object_number": "73-1-21" - }, - { - "emuIRN": "270492", - "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/270492", - "curatorial_section": "Historic", - "object_number": "73-1-15B" - }, - { - "emuIRN": "122561", - "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "material": [ - "Plastic", - "Nylon" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/122561", - "curatorial_section": "Historic", - "object_number": "75-13-1" - }, - { - "emuIRN": "169135", - "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", - "provenience": [ - "Wisconsin", - "Milwaukee" - ], - "culture": [ - "American" - ], - "creator": [ - "Jak Pak Inc." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/169135", - "curatorial_section": "Historic", - "object_number": "75-13-18" - }, - { - "emuIRN": "265153", - "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", - "provenience": [ - "New York", - "Brooklyn" - ], - "culture": [ - "American" - ], - "creator": [ - "American Magnetop Corp." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/265153", - "curatorial_section": "Historic", - "object_number": "75-13-19" - }, - { - "emuIRN": "258185", - "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Giant Plastics Corp." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/258185", - "curatorial_section": "Historic", - "object_number": "75-13-21" - }, - { - "emuIRN": "112910", - "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", - "provenience": [ - "England" - ], - "culture": [ - "English" - ], - "creator": [ - "Christie & Jay, Ltd" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/112910", - "curatorial_section": "Historic", - "object_number": "75-13-30" - }, - { - "emuIRN": "206818", - "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", - "provenience": [ - "Tennessee", - "Nashville" - ], - "culture": [ - "American" - ], - "creator": [ - "Kusan, Inc" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Yo-Yo", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/206818", - "curatorial_section": "Historic", - "object_number": "75-13-32" - }, - { - "emuIRN": "320134", - "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", - "provenience": [ - "New York", - "Brooklyn" - ], - "creator": [ - "Shimmel" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/320134", - "curatorial_section": "Historic", - "object_number": "75-13-33" - }, - { - "emuIRN": "13411", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/13411", - "curatorial_section": "Historic", - "object_number": "75-13-10A" - }, - { - "emuIRN": "2151", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/2151", - "curatorial_section": "Historic", - "object_number": "75-13-10B" - }, - { - "emuIRN": "227620", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/227620", - "curatorial_section": "Historic", - "object_number": "75-13-10C" - }, - { - "emuIRN": "205966", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/205966", - "curatorial_section": "Historic", - "object_number": "75-13-29A" - }, - { - "emuIRN": "281691", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/281691", - "curatorial_section": "Historic", - "object_number": "75-13-29B" - }, - { - "emuIRN": "99171", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/99171", - "curatorial_section": "Historic", - "object_number": "75-13-29C" - }, - { - "emuIRN": "101034", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/101034", - "curatorial_section": "Historic", - "object_number": "75-13-29D" - }, - { - "emuIRN": "308170", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/308170", - "curatorial_section": "Historic", - "object_number": "75-13-29E" - }, - { - "emuIRN": "212263", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/212263", - "curatorial_section": "Historic", - "object_number": "75-13-29F" - }, - { - "emuIRN": "171295", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/171295", - "curatorial_section": "Historic", - "object_number": "75-13-29G" - }, - { - "emuIRN": "252428", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/252428", - "curatorial_section": "Historic", - "object_number": "75-13-29H" - }, - { - "emuIRN": "33474", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/33474", - "curatorial_section": "Historic", - "object_number": "75-13-29I" - }, - { - "emuIRN": "64988", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/64988", - "curatorial_section": "Historic", - "object_number": "75-13-29J" - }, - { - "emuIRN": "149403", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/149403", - "curatorial_section": "Historic", - "object_number": "75-13-29K" - }, - { - "emuIRN": "192238", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/192238", - "curatorial_section": "Historic", - "object_number": "75-13-29L" - }, - { - "emuIRN": "87050", - "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/87050", - "curatorial_section": "Historic", - "object_number": "75-13-5A" - }, - { - "emuIRN": "241334", - "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", - "provenience": [ - "Hawthorne" - ], - "culture": [ - "American" - ], - "creator": [ - "Mattel, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/241334", - "curatorial_section": "Historic", - "object_number": "75-13-9D" - }, - { - "emuIRN": "77859", - "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/77859", - "curatorial_section": "Historic", - "object_number": "71-18-24" - }, - { - "emuIRN": "285019", - "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top", - "Musical Top" - ], - "url": "http://www.penn.museum/collections/object/285019", - "curatorial_section": "Historic", - "object_number": "71-18-27" - }, - { - "emuIRN": "37984", - "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/37984", - "curatorial_section": "Historic", - "object_number": "71-18-38" - }, - { - "emuIRN": "239276", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/239276", - "curatorial_section": "Historic", - "object_number": "71-18-28A" - }, - { - "emuIRN": "32312", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/32312", - "curatorial_section": "Historic", - "object_number": "71-18-28B" - }, - { - "emuIRN": "65727", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/65727", - "curatorial_section": "Historic", - "object_number": "71-18-28C" - }, - { - "emuIRN": "274339", - "description": "Wire puzzle with boot and cap.", - "provenience": [ - "Europe", - "France (uncertain)" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Wire Puzzle" - ], - "url": "http://www.penn.museum/collections/object/274339", - "curatorial_section": "Historic", - "object_number": "8812" - }, - { - "emuIRN": "159716", - "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Selchow & Richter" - ], - "material": [ - "Cardboard" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/159716", - "date_made_early": "1880", - "date_made": "9/7/1880", - "date_made_late": "1880", - "curatorial_section": "Historic", - "object_number": "15496" - }, - { - "emuIRN": "18643", - "description": "12 lithographed cards with pictures of children's games. Fused to 16555", - "technique": [ - "Lithograph" - ], - "provenience": [ - "France", - "Paris (France)" - ], - "iconography": [ - "Games" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Cards" - ], - "url": "http://www.penn.museum/collections/object/18643", - "curatorial_section": "Historic", - "object_number": "16231" - }, - { - "emuIRN": "34693", - "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Metal", - "Glass", - "Wood" - ], - "accession_credit_line": [ - "Gift of Mrs. John Harrison, 1894" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/34693", - "date_made_early": "1869", - "date_made": "c. 1894", - "date_made_late": "1894", - "curatorial_section": "Historic", - "object_number": "16401" - }, - { - "emuIRN": "93791", - "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", - "provenience": [ - "England", - "London" - ], - "culture": [ - "British" - ], - "accession_credit_line": [ - "Gift of Henry Jones, 1893" - ], - "object_name": [ - "Card Game", - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93791", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "16555" - }, - { - "emuIRN": "117728", - "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "creator": [ - "Donaldson Brothers" - ], - "material": [ - "Paper" - ], - "object_name": [ - "Puzzle", - "Advertisement" - ], - "url": "http://www.penn.museum/collections/object/117728", - "curatorial_section": "Historic", - "object_number": "18578" - }, - { - "emuIRN": "303943", - "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", - "provenience": [ - "Pennsylvania", - "Bucks County" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Glass", - "Metal", - "String", - "Cork" - ], - "accession_credit_line": [ - "Gift of Col. Henry D. Paxson, 1897" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/303943", - "curatorial_section": "Historic", - "object_number": "20067" - }, - { - "emuIRN": "287388", - "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Dr. Max Uhle, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/287388", - "curatorial_section": "Historic", - "object_number": "21082" - }, - { - "emuIRN": "140578", - "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/140578", - "curatorial_section": "Historic", - "object_number": "21458" - }, - { - "emuIRN": "120293", - "description": "Wood Board with instructions. Metal Arm.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120293", - "curatorial_section": "Historic", - "object_number": "21460" - }, - { - "emuIRN": "25280", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/25280", - "curatorial_section": "Historic", - "object_number": "21594A" - }, - { - "emuIRN": "406863", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/406863", - "curatorial_section": "Historic", - "object_number": "21594B" - }, - { - "emuIRN": "93703", - "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "The American Game and Puzzle Company" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93703", - "curatorial_section": "Historic", - "object_number": "29-191-146" - }, - { - "emuIRN": "64758", - "description": "Yamato Block Puzzle - 6 pieces of wood", - "provenience": [ - "Japan" - ], - "culture": [ - "Japanese" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64758", - "curatorial_section": "Historic", - "object_number": "29-191-159" - }, - { - "emuIRN": "64759", - "description": "See Dar Wonderful - 9 pieces of wood", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64759", - "curatorial_section": "Historic", - "object_number": "29-191-160" - }, - { - "emuIRN": "30391", - "description": "12 pieces", - "provenience": [ - "New York", - "New York City" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle", - "Reproduction (uncertain)" - ], - "url": "http://www.penn.museum/collections/object/30391", - "curatorial_section": "Historic", - "object_number": "29-191-161" - }, - { - "emuIRN": "22499", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/22499", - "other_numbers": [ - "4001" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157B" - }, - { - "emuIRN": "120252", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120252", - "other_numbers": [ - "4001?" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157C" - }, - { - "emuIRN": "156290", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/156290", - "other_numbers": [ - "4002" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157D" - }, - { - "emuIRN": "99398", - "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", - "provenience": [ - "Pennsylvania", - "Pittsburgh" - ], - "culture": [ - "American" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Charles Este, Jr., 1899" - ], - "object_name": [ - "Puzzle", - "Trick" - ], - "url": "http://www.penn.museum/collections/object/99398", - "curatorial_section": "Historic", - "object_number": "19783" - }, - { - "emuIRN": "130464", - "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/130464", - "native_name": [ - "Cartes a Jouer" - ], - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "7594" - }, - { - "emuIRN": "160242", - "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/160242", - "date_made_early": "1800", - "date_made": "1800-1899", - "date_made_late": "1899", - "curatorial_section": "Historic", - "object_number": "7595" - }, - { - "emuIRN": "157104", - "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1890" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "url": "http://www.penn.museum/collections/object/157104", - "date_made_early": "1800", - "date_made": "19th century", - "date_made_late": "1890", - "curatorial_section": "Historic", - "object_number": "7629" - }, - { - "emuIRN": "157105", - "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "C. L. Wust" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of J. D. Sergeant, 1890" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/157105", - "curatorial_section": "Historic", - "object_number": "7630" - }, - { - "emuIRN": "98559", - "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "B. Dondorf" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of W. Yorke Stevenson, 1891" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/98559", - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "other_numbers": [ - "27" - ], - "curatorial_section": "Historic", - "object_number": "7712" - }, - { - "emuIRN": "248509", - "description": "Card dominoes in box.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Card Game", - "Dominoe" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/248509", - "curatorial_section": "Historic", - "object_number": "8813" - }, - { - "emuIRN": "137944", - "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/137944", - "date_made_early": "1866", - "date_made": "c. 1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "9011" - }, - { - "emuIRN": "194220", - "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "creator": [ - "Watilliaux" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/194220", - "date_made_early": "1878", - "date_made": "1878", - "date_made_late": "1878", - "curatorial_section": "Historic", - "object_number": "9018" - }, - { - "emuIRN": "205296", - "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", - "technique": [ - "Printed" - ], - "provenience": [ - "Mexico (Central America)", - "Puebla (Mexican State)" - ], - "culture": [ - "Spanish" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of the US National Museum, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/205296", - "date_made_early": "1873", - "date_made": "1873-1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15360" - }, - { - "emuIRN": "21030", - "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Fortune Telling Cards" - ], - "url": "http://www.penn.museum/collections/object/21030", - "date_made_early": "1865", - "date_made": "pre 1890", - "date_made_late": "1890", - "other_numbers": [ - "43" - ], - "curatorial_section": "Historic", - "object_number": "15513" - }, - { - "emuIRN": "46932", - "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", - "provenience": [ - "Italy", - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/46932", - "date_made_early": "1880", - "date_made": "1880-1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15528" - }, - { - "emuIRN": "220035", - "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/220035", - "date_made_early": "29 Nov 1890", - "date_made": "11/29/1890", - "date_made_late": "29 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15529" - }, - { - "emuIRN": "220036", - "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/220036", - "date_made_early": "27 Oct 1890", - "date_made": "10/27/1890", - "date_made_late": "27 Oct 1890", - "other_numbers": [ - "42" - ], - "curatorial_section": "Historic", - "object_number": "15530" - }, - { - "emuIRN": "289473", - "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/289473", - "date_made_early": "17 Jan 1887", - "date_made": "1/17/1887", - "date_made_late": "17 Jan 1887", - "curatorial_section": "Historic", - "object_number": "15532" - }, - { - "emuIRN": "114394", - "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/114394", - "date_made_early": "1867", - "date_made": " pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15533" - }, - { - "emuIRN": "82994", - "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/82994", - "date_made_early": "17 Jun 1890", - "date_made": "6/17/1890", - "date_made_late": "17 Jun 1890", - "other_numbers": [ - "13" - ], - "curatorial_section": "Historic", - "object_number": "15534" - }, - { - "emuIRN": "233242", - "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/233242", - "date_made_early": "13 Mar 1891", - "date_made": "3/13/1891", - "date_made_late": "13 Mar 1891", - "other_numbers": [ - "5" - ], - "curatorial_section": "Historic", - "object_number": "15536" - }, - { - "emuIRN": "237987", - "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/237987", - "date_made_early": "13 Mar 1891", - "date_made": "pre 1892", - "date_made_late": "13 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15537" - }, - { - "emuIRN": "264110", - "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/264110", - "date_made_early": "1867", - "date_made": "pre 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15538" - }, - { - "emuIRN": "36188", - "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/36188", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15540" - }, - { - "emuIRN": "154504", - "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/154504", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15541" - }, - { - "emuIRN": "203963", - "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/203963", - "date_made_early": "27 Aug 1891", - "date_made": "8/27/1891", - "date_made_late": "27 Aug 1891", - "curatorial_section": "Historic", - "object_number": "15543" - }, - { - "emuIRN": "241994", - "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/241994", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15544" - }, - { - "emuIRN": "243680", - "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/243680", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15545" - }, - { - "emuIRN": "87145", - "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/87145", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15546" - }, - { - "emuIRN": "59271", - "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/59271", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15547" - }, - { - "emuIRN": "336096", - "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/336096", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15548" - }, - { - "emuIRN": "203973", - "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/203973", - "date_made_early": "09 Apr 1888", - "date_made": "4/9/1888", - "date_made_late": "09 Apr 1888", - "curatorial_section": "Historic", - "object_number": "15550" - }, - { - "emuIRN": "238541", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/238541", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15552" - }, - { - "emuIRN": "131933", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/131933", - "date_made_early": "16 Jun 1891", - "date_made": "6/16/1891", - "date_made_late": "16 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15553" - }, - { - "emuIRN": "158923", - "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/158923", - "date_made_early": "01 Jun 1891", - "date_made": "6/1/1891", - "date_made_late": "01 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15554" - }, - { - "emuIRN": "103187", - "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/103187", - "native_name": [ - "Tarocchino" - ], - "date_made_early": "03 Feb 1891", - "date_made": "2/3/1891", - "date_made_late": "03 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15555" - }, - { - "emuIRN": "178709", - "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", - "provenience": [ - "Italy", - "Povoletto-Udine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "F. L. Muccioli" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/178709", - "date_made_early": "09 May 1890", - "date_made": "5/9/1890", - "date_made_late": "09 May 1890", - "curatorial_section": "Historic", - "object_number": "15556" - }, - { - "emuIRN": "277112", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/277112", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15557" - }, - { - "emuIRN": "25552", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/25552", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15558" - }, - { - "emuIRN": "325482", - "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/325482", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1895", - "curatorial_section": "Historic", - "object_number": "15559" - }, - { - "emuIRN": "325483", - "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/325483", - "date_made_early": "12 Mar 2091", - "date_made": "3/12/91", - "date_made_late": "12 Mar 2091", - "curatorial_section": "Historic", - "object_number": "15560" - }, - { - "emuIRN": "48114", - "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/48114", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "22 Jun 1891", - "date_made": "6/22/1891", - "date_made_late": "22 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15561" - }, - { - "emuIRN": "167380", - "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/167380", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15562" - }, - { - "emuIRN": "321272", - "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Vincenzo Russo" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack", - "Neopolitan Pack" - ], - "url": "http://www.penn.museum/collections/object/321272", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "11 Feb 1891", - "date_made": "2/11/1891", - "date_made_late": "11 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15563" - }, - { - "emuIRN": "279915", - "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Luigi Pignalosa" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/279915", - "date_made_early": "14 Feb 1891", - "date_made": "2/14/1891", - "date_made_late": "14 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15564" - }, - { - "emuIRN": "157272", - "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/157272", - "date_made_early": "04 Oct 1888", - "date_made": "10/4/1888", - "date_made_late": "04 Oct 1888", - "curatorial_section": "Historic", - "object_number": "15566" - }, - { - "emuIRN": "88522", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/88522", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15567" - }, - { - "emuIRN": "177453", - "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/177453", - "date_made_early": "24 Mar 1891", - "date_made": "3/24/1891", - "date_made_late": "24 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15568" - }, - { - "emuIRN": "322855", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322855", - "date_made_early": "25 Nov 1890", - "date_made": "11/25/1890", - "date_made_late": "25 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15569" - }, - { - "emuIRN": "322856", - "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322856", - "date_made_early": "27 Jul 2091", - "date_made": "7/27/91", - "date_made_late": "27 Jul 2091", - "curatorial_section": "Historic", - "object_number": "15570" - }, - { - "emuIRN": "289232", - "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/289232", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15571" - }, - { - "emuIRN": "71704", - "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "L. Bartolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/71704", - "date_made_early": "02 Jul 1892", - "date_made": "7/2/1892", - "date_made_late": "02 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15572" - }, - { - "emuIRN": "341571", - "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Silvertrini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/341571", - "date_made_early": "01 Jul 1892", - "date_made": "7/1/1892", - "date_made_late": "01 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15573" - }, - { - "emuIRN": "231215", - "description": "Playing card deck - 44 cards", - "provenience": [ - "Italy", - "Bergamo" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Masenghini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Milanese Deck" - ], - "url": "http://www.penn.museum/collections/object/231215", - "curatorial_section": "Historic", - "object_number": "15575" - }, - { - "emuIRN": "290651", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", - "provenience": [ - "Italy", - "Trento" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giac. Bertoldi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/290651", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15577" - }, - { - "emuIRN": "116249", - "description": "Playing card deck - 40 cards, printed back with pink abstract designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/116249", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15578" - }, - { - "emuIRN": "76331", - "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/76331", - "date_made_early": "1867", - "date_made": "c.1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15579" - }, - { - "emuIRN": "76332", - "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/76332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15580" - }, - { - "emuIRN": "189908", - "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/189908", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15583" - }, - { - "emuIRN": "275719", - "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/275719", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15584" - }, - { - "emuIRN": "51584", - "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/51584", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15585" - }, - { - "emuIRN": "56004", - "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Crispolani" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/56004", - "date_made_early": "1850", - "date_made": "circa 1860", - "date_made_late": "1870", - "curatorial_section": "Historic", - "object_number": "15586" - }, - { - "emuIRN": "124979", - "description": "Playing card deck - Tarocchi/Tarot - 78 cards", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/124979", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15587" - }, - { - "emuIRN": "212458", - "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "url": "http://www.penn.museum/collections/object/212458", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15588" - }, - { - "emuIRN": "309331", - "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "G. C. Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309331", - "date_made_early": "30 Mar 1891", - "date_made": "3/30/1891", - "date_made_late": "30 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15589" - }, - { - "emuIRN": "309332", - "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15590" - }, - { - "emuIRN": "86979", - "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/86979", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15592" - }, - { - "emuIRN": "5817", - "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5817", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15594" - }, - { - "emuIRN": "170983", - "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Baby", - "Angel" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/170983", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15595" - }, - { - "emuIRN": "300071", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Tambourine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/300071", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15596" - }, - { - "emuIRN": "236603", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236603", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15597" - }, - { - "emuIRN": "141064", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141064", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15598" - }, - { - "emuIRN": "126294", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", - "provenience": [ - "Italy", - "Treviso" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Francesca Rino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/126294", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15599" - }, - { - "emuIRN": "309333", - "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", - "provenience": [ - "Italy", - "Parma (Italy)" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Faelli Carlo" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309333", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15600" - }, - { - "emuIRN": "261187", - "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Cassini Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Cucu" - ], - "url": "http://www.penn.museum/collections/object/261187", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15601" - }, - { - "emuIRN": "5818", - "description": "40 cards with wrapper. Printed back: green and blue plaid", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5818", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15604" - }, - { - "emuIRN": "236604", - "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236604", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15607" - }, - { - "emuIRN": "141065", - "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141065", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15608" - }, - { - "emuIRN": "319728", - "description": "Playing card deck - 40 cards", - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/319728", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15621" - }, - { - "emuIRN": "119150", - "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Florentine Pack" - ], - "url": "http://www.penn.museum/collections/object/119150", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15622" - }, - { - "emuIRN": "92457", - "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/92457", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15623" - }, - { - "emuIRN": "406753", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406753", - "curatorial_section": "Historic", - "object_number": "19124.15" - }, - { - "emuIRN": "406754", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406754", - "curatorial_section": "Historic", - "object_number": "19124.16" - }, - { - "emuIRN": "406755", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406755", - "curatorial_section": "Historic", - "object_number": "19124.17" - }, - { - "emuIRN": "406756", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406756", - "curatorial_section": "Historic", - "object_number": "19124.18" - }, - { - "emuIRN": "406757", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406757", - "curatorial_section": "Historic", - "object_number": "19124.19" - }, - { - "emuIRN": "406758", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406758", - "curatorial_section": "Historic", - "object_number": "19124.20" - }, - { - "emuIRN": "406759", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406759", - "curatorial_section": "Historic", - "object_number": "19124.21" - }, - { - "emuIRN": "406760", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406760", - "curatorial_section": "Historic", - "object_number": "19124.22" - }, - { - "emuIRN": "406761", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406761", - "curatorial_section": "Historic", - "object_number": "19124.23" - }, - { - "emuIRN": "406762", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406762", - "curatorial_section": "Historic", - "object_number": "19124.24" - }, - { - "emuIRN": "406763", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406763", - "curatorial_section": "Historic", - "object_number": "19124.25" - }, - { - "emuIRN": "406764", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406764", - "curatorial_section": "Historic", - "object_number": "19124.26" - }, - { - "emuIRN": "330556", - "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", - "provenience": [ - "Europe (uncertain)" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/330556", - "curatorial_section": "Historic", - "object_number": "29-191-128" - }, - { - "emuIRN": "321909", - "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/321909", - "curatorial_section": "Historic", - "object_number": "29-191-129" - }, - { - "emuIRN": "127367", - "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/127367", - "curatorial_section": "Historic", - "object_number": "29-191-227" - }, - { - "emuIRN": "203363", - "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", - "technique": [ - "Painted" - ], - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Paint", - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/203363", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15792" - }, - { - "emuIRN": "185526", - "description": "Red and gold sphere with small metall loop on 1 end", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of H. C. Thomson, 1894" - ], - "object_name": [ - "Whistling Top" - ], - "url": "http://www.penn.museum/collections/object/185526", - "curatorial_section": "Historic", - "object_number": "17817" - }, - { - "emuIRN": "59206", - "description": "Wood ball with metal spike. Cord for spinning", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top", - "Cord" - ], - "url": "http://www.penn.museum/collections/object/59206", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19214" - }, - { - "emuIRN": "186142", - "description": "Turned wood, bell-shaped with metal spike.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/186142", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19216" - }, - { - "emuIRN": "234646", - "description": "Toy rolling disc - wooden.", - "provenience": [ - "Italy" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Henry H. Giglioli, 1896" - ], - "object_name": [ - "Spinning Toy (uncertain)", - "Rolling Disc" - ], - "url": "http://www.penn.museum/collections/object/234646", - "curatorial_section": "Historic", - "object_number": "19217" - }, - { - "emuIRN": "134935", - "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal", - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1897" - ], - "object_name": [ - "Pinwheel" - ], - "url": "http://www.penn.museum/collections/object/134935", - "curatorial_section": "Historic", - "object_number": "20037" - }, - { - "emuIRN": "340545", - "description": "Turned wood ball with metal peg. Smaller version of 19214.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/340545", - "curatorial_section": "Historic", - "object_number": "19215A" - }, - { - "emuIRN": "273066", - "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Top Die", - "Teetotum" - ], - "url": "http://www.penn.museum/collections/object/273066", - "curatorial_section": "Historic", - "object_number": "71-18-6" - }, - { - "emuIRN": "146612", - "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", - "provenience": [ - "Japan" - ], - "material": [ - "Brass", - "Tin" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/146612", - "curatorial_section": "Historic", - "object_number": "71-18-11" - }, - { - "emuIRN": "264736", - "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top" - ], - "url": "http://www.penn.museum/collections/object/264736", - "curatorial_section": "Historic", - "object_number": "71-18-41" - }, - { - "emuIRN": "128464", - "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", - "provenience": [ - "West Germany" - ], - "culture": [ - "German" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/128464", - "curatorial_section": "Historic", - "object_number": "71-18-45" - }, - { - "emuIRN": "102950", - "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top", - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/102950", - "curatorial_section": "Historic", - "object_number": "71-18-50" - }, - { - "emuIRN": "215073", - "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Gyroscope" - ], - "url": "http://www.penn.museum/collections/object/215073", - "curatorial_section": "Historic", - "object_number": "71-18-53" - }, - { - "emuIRN": "281519", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/281519", - "curatorial_section": "Historic", - "object_number": "71-18-10A" - }, - { - "emuIRN": "132216", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/132216", - "curatorial_section": "Historic", - "object_number": "71-18-10B" - }, - { - "emuIRN": "222994", - "description": "Turned wooden spinnters. A-D have stems.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/222994", - "curatorial_section": "Historic", - "object_number": "71-18-17A" - }, - { - "emuIRN": "293378", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/293378", - "curatorial_section": "Historic", - "object_number": "71-18-17B" - }, - { - "emuIRN": "244262", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/244262", - "curatorial_section": "Historic", - "object_number": "71-18-17C" - }, - { - "emuIRN": "97422", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/97422", - "curatorial_section": "Historic", - "object_number": "71-18-17D" - }, - { - "emuIRN": "283240", - "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/283240", - "curatorial_section": "Historic", - "object_number": "71-18-17E" - }, - { - "emuIRN": "199531", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/199531", - "curatorial_section": "Historic", - "object_number": "71-18-20A" - }, - { - "emuIRN": "315942", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/315942", - "curatorial_section": "Historic", - "object_number": "71-18-20B" - }, - { - "emuIRN": "154811", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/154811", - "curatorial_section": "Historic", - "object_number": "71-18-20C" - }, - { - "emuIRN": "119329", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/119329", - "curatorial_section": "Historic", - "object_number": "71-18-20D" - }, - { - "emuIRN": "138169", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/138169", - "curatorial_section": "Historic", - "object_number": "71-18-20E" - }, - { - "emuIRN": "168699", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/168699", - "curatorial_section": "Historic", - "object_number": "71-18-20F" - }, - { - "emuIRN": "165852", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/165852", - "curatorial_section": "Historic", - "object_number": "71-18-20G" - }, - { - "emuIRN": "307682", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/307682", - "curatorial_section": "Historic", - "object_number": "71-18-20H" - }, - { - "emuIRN": "336448", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336448", - "curatorial_section": "Historic", - "object_number": "71-18-32A" - }, - { - "emuIRN": "181753", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/181753", - "curatorial_section": "Historic", - "object_number": "71-18-32B" - }, - { - "emuIRN": "277851", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/277851", - "curatorial_section": "Historic", - "object_number": "71-18-32C" - }, - { - "emuIRN": "44213", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/44213", - "curatorial_section": "Historic", - "object_number": "71-18-32D" - }, - { - "emuIRN": "343371", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/343371", - "curatorial_section": "Historic", - "object_number": "71-18-32E" - }, - { - "emuIRN": "405192", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "period": [ - "Modern" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/405192", - "curatorial_section": "Historic", - "object_number": "71-18-32F" - }, - { - "emuIRN": "174014", - "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinning Toy", - "Supported Top", - "Whistle" - ], - "url": "http://www.penn.museum/collections/object/174014", - "curatorial_section": "Historic", - "object_number": "71-18-72" - }, - { - "emuIRN": "54377", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/54377", - "curatorial_section": "Historic", - "object_number": "71-18-71A" - }, - { - "emuIRN": "336914", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336914", - "curatorial_section": "Historic", - "object_number": "71-18-71B" - }, - { - "emuIRN": "40527", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel", - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/40527", - "curatorial_section": "Historic", - "object_number": "71-18-71C" - }, - { - "emuIRN": "81633", - "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "iconography": [ - "Dog", - "Flag" - ], - "material": [ - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81633", - "other_numbers": [ - "533107" - ], - "curatorial_section": "Historic", - "object_number": "73-1-9" - }, - { - "emuIRN": "315995", - "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/315995", - "curatorial_section": "Historic", - "object_number": "73-1-11" - }, - { - "emuIRN": "81890", - "description": "Bi-colored light plastic top / yo-yo", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81890", - "curatorial_section": "Historic", - "object_number": "73-1-12" - }, - { - "emuIRN": "158974", - "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/158974", - "curatorial_section": "Historic", - "object_number": "73-1-21" - }, - { - "emuIRN": "270492", - "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/270492", - "curatorial_section": "Historic", - "object_number": "73-1-15B" - }, - { - "emuIRN": "122561", - "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "material": [ - "Plastic", - "Nylon" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/122561", - "curatorial_section": "Historic", - "object_number": "75-13-1" - }, - { - "emuIRN": "169135", - "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", - "provenience": [ - "Wisconsin", - "Milwaukee" - ], - "culture": [ - "American" - ], - "creator": [ - "Jak Pak Inc." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/169135", - "curatorial_section": "Historic", - "object_number": "75-13-18" - }, - { - "emuIRN": "265153", - "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", - "provenience": [ - "New York", - "Brooklyn" - ], - "culture": [ - "American" - ], - "creator": [ - "American Magnetop Corp." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/265153", - "curatorial_section": "Historic", - "object_number": "75-13-19" - }, - { - "emuIRN": "258185", - "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Giant Plastics Corp." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/258185", - "curatorial_section": "Historic", - "object_number": "75-13-21" - }, - { - "emuIRN": "112910", - "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", - "provenience": [ - "England" - ], - "culture": [ - "English" - ], - "creator": [ - "Christie & Jay, Ltd" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/112910", - "curatorial_section": "Historic", - "object_number": "75-13-30" - }, - { - "emuIRN": "206818", - "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", - "provenience": [ - "Tennessee", - "Nashville" - ], - "culture": [ - "American" - ], - "creator": [ - "Kusan, Inc" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Yo-Yo", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/206818", - "curatorial_section": "Historic", - "object_number": "75-13-32" - }, - { - "emuIRN": "320134", - "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", - "provenience": [ - "New York", - "Brooklyn" - ], - "creator": [ - "Shimmel" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/320134", - "curatorial_section": "Historic", - "object_number": "75-13-33" - }, - { - "emuIRN": "13411", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/13411", - "curatorial_section": "Historic", - "object_number": "75-13-10A" - }, - { - "emuIRN": "2151", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/2151", - "curatorial_section": "Historic", - "object_number": "75-13-10B" - }, - { - "emuIRN": "227620", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/227620", - "curatorial_section": "Historic", - "object_number": "75-13-10C" - }, - { - "emuIRN": "205966", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/205966", - "curatorial_section": "Historic", - "object_number": "75-13-29A" - }, - { - "emuIRN": "281691", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/281691", - "curatorial_section": "Historic", - "object_number": "75-13-29B" - }, - { - "emuIRN": "99171", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/99171", - "curatorial_section": "Historic", - "object_number": "75-13-29C" - }, - { - "emuIRN": "101034", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/101034", - "curatorial_section": "Historic", - "object_number": "75-13-29D" - }, - { - "emuIRN": "308170", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/308170", - "curatorial_section": "Historic", - "object_number": "75-13-29E" - }, - { - "emuIRN": "212263", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/212263", - "curatorial_section": "Historic", - "object_number": "75-13-29F" - }, - { - "emuIRN": "171295", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/171295", - "curatorial_section": "Historic", - "object_number": "75-13-29G" - }, - { - "emuIRN": "252428", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/252428", - "curatorial_section": "Historic", - "object_number": "75-13-29H" - }, - { - "emuIRN": "33474", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/33474", - "curatorial_section": "Historic", - "object_number": "75-13-29I" - }, - { - "emuIRN": "64988", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/64988", - "curatorial_section": "Historic", - "object_number": "75-13-29J" - }, - { - "emuIRN": "149403", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/149403", - "curatorial_section": "Historic", - "object_number": "75-13-29K" - }, - { - "emuIRN": "192238", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/192238", - "curatorial_section": "Historic", - "object_number": "75-13-29L" - }, - { - "emuIRN": "87050", - "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/87050", - "curatorial_section": "Historic", - "object_number": "75-13-5A" - }, - { - "emuIRN": "241334", - "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", - "provenience": [ - "Hawthorne" - ], - "culture": [ - "American" - ], - "creator": [ - "Mattel, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/241334", - "curatorial_section": "Historic", - "object_number": "75-13-9D" - }, - { - "emuIRN": "77859", - "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/77859", - "curatorial_section": "Historic", - "object_number": "71-18-24" - }, - { - "emuIRN": "285019", - "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top", - "Musical Top" - ], - "url": "http://www.penn.museum/collections/object/285019", - "curatorial_section": "Historic", - "object_number": "71-18-27" - }, - { - "emuIRN": "37984", - "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/37984", - "curatorial_section": "Historic", - "object_number": "71-18-38" - }, - { - "emuIRN": "239276", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/239276", - "curatorial_section": "Historic", - "object_number": "71-18-28A" - }, - { - "emuIRN": "32312", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/32312", - "curatorial_section": "Historic", - "object_number": "71-18-28B" - }, - { - "emuIRN": "65727", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/65727", - "curatorial_section": "Historic", - "object_number": "71-18-28C" - }, - { - "emuIRN": "274339", - "description": "Wire puzzle with boot and cap.", - "provenience": [ - "Europe", - "France (uncertain)" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Wire Puzzle" - ], - "url": "http://www.penn.museum/collections/object/274339", - "curatorial_section": "Historic", - "object_number": "8812" - }, - { - "emuIRN": "159716", - "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Selchow & Richter" - ], - "material": [ - "Cardboard" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/159716", - "date_made_early": "1880", - "date_made": "9/7/1880", - "date_made_late": "1880", - "curatorial_section": "Historic", - "object_number": "15496" - }, - { - "emuIRN": "18643", - "description": "12 lithographed cards with pictures of children's games. Fused to 16555", - "technique": [ - "Lithograph" - ], - "provenience": [ - "France", - "Paris (France)" - ], - "iconography": [ - "Games" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Cards" - ], - "url": "http://www.penn.museum/collections/object/18643", - "curatorial_section": "Historic", - "object_number": "16231" - }, - { - "emuIRN": "34693", - "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Metal", - "Glass", - "Wood" - ], - "accession_credit_line": [ - "Gift of Mrs. John Harrison, 1894" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/34693", - "date_made_early": "1869", - "date_made": "c. 1894", - "date_made_late": "1894", - "curatorial_section": "Historic", - "object_number": "16401" - }, - { - "emuIRN": "93791", - "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", - "provenience": [ - "England", - "London" - ], - "culture": [ - "British" - ], - "accession_credit_line": [ - "Gift of Henry Jones, 1893" - ], - "object_name": [ - "Card Game", - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93791", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "16555" - }, - { - "emuIRN": "117728", - "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "creator": [ - "Donaldson Brothers" - ], - "material": [ - "Paper" - ], - "object_name": [ - "Puzzle", - "Advertisement" - ], - "url": "http://www.penn.museum/collections/object/117728", - "curatorial_section": "Historic", - "object_number": "18578" - }, - { - "emuIRN": "303943", - "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", - "provenience": [ - "Pennsylvania", - "Bucks County" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Glass", - "Metal", - "String", - "Cork" - ], - "accession_credit_line": [ - "Gift of Col. Henry D. Paxson, 1897" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/303943", - "curatorial_section": "Historic", - "object_number": "20067" - }, - { - "emuIRN": "287388", - "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Dr. Max Uhle, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/287388", - "curatorial_section": "Historic", - "object_number": "21082" - }, - { - "emuIRN": "140578", - "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/140578", - "curatorial_section": "Historic", - "object_number": "21458" - }, - { - "emuIRN": "120293", - "description": "Wood Board with instructions. Metal Arm.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120293", - "curatorial_section": "Historic", - "object_number": "21460" - }, - { - "emuIRN": "25280", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/25280", - "curatorial_section": "Historic", - "object_number": "21594A" - }, - { - "emuIRN": "406863", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/406863", - "curatorial_section": "Historic", - "object_number": "21594B" - }, - { - "emuIRN": "93703", - "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "The American Game and Puzzle Company" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93703", - "curatorial_section": "Historic", - "object_number": "29-191-146" - }, - { - "emuIRN": "64758", - "description": "Yamato Block Puzzle - 6 pieces of wood", - "provenience": [ - "Japan" - ], - "culture": [ - "Japanese" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64758", - "curatorial_section": "Historic", - "object_number": "29-191-159" - }, - { - "emuIRN": "64759", - "description": "See Dar Wonderful - 9 pieces of wood", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64759", - "curatorial_section": "Historic", - "object_number": "29-191-160" - }, - { - "emuIRN": "30391", - "description": "12 pieces", - "provenience": [ - "New York", - "New York City" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle", - "Reproduction (uncertain)" - ], - "url": "http://www.penn.museum/collections/object/30391", - "curatorial_section": "Historic", - "object_number": "29-191-161" - }, - { - "emuIRN": "22499", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/22499", - "other_numbers": [ - "4001" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157B" - }, - { - "emuIRN": "120252", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120252", - "other_numbers": [ - "4001?" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157C" - }, - { - "emuIRN": "156290", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/156290", - "other_numbers": [ - "4002" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157D" - }, - { - "emuIRN": "99398", - "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", - "provenience": [ - "Pennsylvania", - "Pittsburgh" - ], - "culture": [ - "American" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Charles Este, Jr., 1899" - ], - "object_name": [ - "Puzzle", - "Trick" - ], - "url": "http://www.penn.museum/collections/object/99398", - "curatorial_section": "Historic", - "object_number": "19783" - }, - { - "emuIRN": "130464", - "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/130464", - "native_name": [ - "Cartes a Jouer" - ], - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "7594" - }, - { - "emuIRN": "160242", - "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/160242", - "date_made_early": "1800", - "date_made": "1800-1899", - "date_made_late": "1899", - "curatorial_section": "Historic", - "object_number": "7595" - }, - { - "emuIRN": "157104", - "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1890" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "url": "http://www.penn.museum/collections/object/157104", - "date_made_early": "1800", - "date_made": "19th century", - "date_made_late": "1890", - "curatorial_section": "Historic", - "object_number": "7629" - }, - { - "emuIRN": "157105", - "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "C. L. Wust" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of J. D. Sergeant, 1890" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/157105", - "curatorial_section": "Historic", - "object_number": "7630" - }, - { - "emuIRN": "98559", - "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "B. Dondorf" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of W. Yorke Stevenson, 1891" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/98559", - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "other_numbers": [ - "27" - ], - "curatorial_section": "Historic", - "object_number": "7712" - }, - { - "emuIRN": "248509", - "description": "Card dominoes in box.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Card Game", - "Dominoe" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/248509", - "curatorial_section": "Historic", - "object_number": "8813" - }, - { - "emuIRN": "137944", - "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/137944", - "date_made_early": "1866", - "date_made": "c. 1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "9011" - }, - { - "emuIRN": "194220", - "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "creator": [ - "Watilliaux" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/194220", - "date_made_early": "1878", - "date_made": "1878", - "date_made_late": "1878", - "curatorial_section": "Historic", - "object_number": "9018" - }, - { - "emuIRN": "205296", - "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", - "technique": [ - "Printed" - ], - "provenience": [ - "Mexico (Central America)", - "Puebla (Mexican State)" - ], - "culture": [ - "Spanish" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of the US National Museum, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/205296", - "date_made_early": "1873", - "date_made": "1873-1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15360" - }, - { - "emuIRN": "21030", - "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Fortune Telling Cards" - ], - "url": "http://www.penn.museum/collections/object/21030", - "date_made_early": "1865", - "date_made": "pre 1890", - "date_made_late": "1890", - "other_numbers": [ - "43" - ], - "curatorial_section": "Historic", - "object_number": "15513" - }, - { - "emuIRN": "46932", - "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", - "provenience": [ - "Italy", - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/46932", - "date_made_early": "1880", - "date_made": "1880-1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15528" - }, - { - "emuIRN": "220035", - "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/220035", - "date_made_early": "29 Nov 1890", - "date_made": "11/29/1890", - "date_made_late": "29 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15529" - }, - { - "emuIRN": "220036", - "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/220036", - "date_made_early": "27 Oct 1890", - "date_made": "10/27/1890", - "date_made_late": "27 Oct 1890", - "other_numbers": [ - "42" - ], - "curatorial_section": "Historic", - "object_number": "15530" - }, - { - "emuIRN": "289473", - "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/289473", - "date_made_early": "17 Jan 1887", - "date_made": "1/17/1887", - "date_made_late": "17 Jan 1887", - "curatorial_section": "Historic", - "object_number": "15532" - }, - { - "emuIRN": "114394", - "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/114394", - "date_made_early": "1867", - "date_made": " pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15533" - }, - { - "emuIRN": "82994", - "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/82994", - "date_made_early": "17 Jun 1890", - "date_made": "6/17/1890", - "date_made_late": "17 Jun 1890", - "other_numbers": [ - "13" - ], - "curatorial_section": "Historic", - "object_number": "15534" - }, - { - "emuIRN": "233242", - "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/233242", - "date_made_early": "13 Mar 1891", - "date_made": "3/13/1891", - "date_made_late": "13 Mar 1891", - "other_numbers": [ - "5" - ], - "curatorial_section": "Historic", - "object_number": "15536" - }, - { - "emuIRN": "237987", - "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/237987", - "date_made_early": "13 Mar 1891", - "date_made": "pre 1892", - "date_made_late": "13 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15537" - }, - { - "emuIRN": "264110", - "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/264110", - "date_made_early": "1867", - "date_made": "pre 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15538" - }, - { - "emuIRN": "36188", - "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/36188", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15540" - }, - { - "emuIRN": "154504", - "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/154504", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15541" - }, - { - "emuIRN": "203963", - "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/203963", - "date_made_early": "27 Aug 1891", - "date_made": "8/27/1891", - "date_made_late": "27 Aug 1891", - "curatorial_section": "Historic", - "object_number": "15543" - }, - { - "emuIRN": "241994", - "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/241994", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15544" - }, - { - "emuIRN": "243680", - "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/243680", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15545" - }, - { - "emuIRN": "87145", - "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/87145", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15546" - }, - { - "emuIRN": "59271", - "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/59271", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15547" - }, - { - "emuIRN": "336096", - "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/336096", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15548" - }, - { - "emuIRN": "203973", - "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/203973", - "date_made_early": "09 Apr 1888", - "date_made": "4/9/1888", - "date_made_late": "09 Apr 1888", - "curatorial_section": "Historic", - "object_number": "15550" - }, - { - "emuIRN": "238541", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/238541", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15552" - }, - { - "emuIRN": "131933", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/131933", - "date_made_early": "16 Jun 1891", - "date_made": "6/16/1891", - "date_made_late": "16 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15553" - }, - { - "emuIRN": "158923", - "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/158923", - "date_made_early": "01 Jun 1891", - "date_made": "6/1/1891", - "date_made_late": "01 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15554" - }, - { - "emuIRN": "103187", - "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/103187", - "native_name": [ - "Tarocchino" - ], - "date_made_early": "03 Feb 1891", - "date_made": "2/3/1891", - "date_made_late": "03 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15555" - }, - { - "emuIRN": "178709", - "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", - "provenience": [ - "Italy", - "Povoletto-Udine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "F. L. Muccioli" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/178709", - "date_made_early": "09 May 1890", - "date_made": "5/9/1890", - "date_made_late": "09 May 1890", - "curatorial_section": "Historic", - "object_number": "15556" - }, - { - "emuIRN": "277112", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/277112", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15557" - }, - { - "emuIRN": "25552", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/25552", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15558" - }, - { - "emuIRN": "325482", - "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/325482", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1895", - "curatorial_section": "Historic", - "object_number": "15559" - }, - { - "emuIRN": "325483", - "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/325483", - "date_made_early": "12 Mar 2091", - "date_made": "3/12/91", - "date_made_late": "12 Mar 2091", - "curatorial_section": "Historic", - "object_number": "15560" - }, - { - "emuIRN": "48114", - "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/48114", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "22 Jun 1891", - "date_made": "6/22/1891", - "date_made_late": "22 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15561" - }, - { - "emuIRN": "167380", - "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/167380", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15562" - }, - { - "emuIRN": "321272", - "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Vincenzo Russo" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack", - "Neopolitan Pack" - ], - "url": "http://www.penn.museum/collections/object/321272", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "11 Feb 1891", - "date_made": "2/11/1891", - "date_made_late": "11 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15563" - }, - { - "emuIRN": "279915", - "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Luigi Pignalosa" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/279915", - "date_made_early": "14 Feb 1891", - "date_made": "2/14/1891", - "date_made_late": "14 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15564" - }, - { - "emuIRN": "157272", - "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/157272", - "date_made_early": "04 Oct 1888", - "date_made": "10/4/1888", - "date_made_late": "04 Oct 1888", - "curatorial_section": "Historic", - "object_number": "15566" - }, - { - "emuIRN": "88522", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/88522", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15567" - }, - { - "emuIRN": "177453", - "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/177453", - "date_made_early": "24 Mar 1891", - "date_made": "3/24/1891", - "date_made_late": "24 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15568" - }, - { - "emuIRN": "322855", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322855", - "date_made_early": "25 Nov 1890", - "date_made": "11/25/1890", - "date_made_late": "25 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15569" - }, - { - "emuIRN": "322856", - "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322856", - "date_made_early": "27 Jul 2091", - "date_made": "7/27/91", - "date_made_late": "27 Jul 2091", - "curatorial_section": "Historic", - "object_number": "15570" - }, - { - "emuIRN": "289232", - "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/289232", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15571" - }, - { - "emuIRN": "71704", - "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "L. Bartolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/71704", - "date_made_early": "02 Jul 1892", - "date_made": "7/2/1892", - "date_made_late": "02 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15572" - }, - { - "emuIRN": "341571", - "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Silvertrini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/341571", - "date_made_early": "01 Jul 1892", - "date_made": "7/1/1892", - "date_made_late": "01 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15573" - }, - { - "emuIRN": "231215", - "description": "Playing card deck - 44 cards", - "provenience": [ - "Italy", - "Bergamo" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Masenghini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Milanese Deck" - ], - "url": "http://www.penn.museum/collections/object/231215", - "curatorial_section": "Historic", - "object_number": "15575" - }, - { - "emuIRN": "290651", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", - "provenience": [ - "Italy", - "Trento" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giac. Bertoldi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/290651", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15577" - }, - { - "emuIRN": "116249", - "description": "Playing card deck - 40 cards, printed back with pink abstract designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/116249", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15578" - }, - { - "emuIRN": "76331", - "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/76331", - "date_made_early": "1867", - "date_made": "c.1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15579" - }, - { - "emuIRN": "76332", - "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/76332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15580" - }, - { - "emuIRN": "189908", - "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/189908", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15583" - }, - { - "emuIRN": "275719", - "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/275719", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15584" - }, - { - "emuIRN": "51584", - "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/51584", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15585" - }, - { - "emuIRN": "56004", - "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Crispolani" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/56004", - "date_made_early": "1850", - "date_made": "circa 1860", - "date_made_late": "1870", - "curatorial_section": "Historic", - "object_number": "15586" - }, - { - "emuIRN": "124979", - "description": "Playing card deck - Tarocchi/Tarot - 78 cards", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/124979", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15587" - }, - { - "emuIRN": "212458", - "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "url": "http://www.penn.museum/collections/object/212458", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15588" - }, - { - "emuIRN": "309331", - "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "G. C. Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309331", - "date_made_early": "30 Mar 1891", - "date_made": "3/30/1891", - "date_made_late": "30 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15589" - }, - { - "emuIRN": "309332", - "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15590" - }, - { - "emuIRN": "86979", - "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/86979", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15592" - }, - { - "emuIRN": "5817", - "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5817", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15594" - }, - { - "emuIRN": "170983", - "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Baby", - "Angel" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/170983", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15595" - }, - { - "emuIRN": "300071", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Tambourine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/300071", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15596" - }, - { - "emuIRN": "236603", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236603", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15597" - }, - { - "emuIRN": "141064", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141064", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15598" - }, - { - "emuIRN": "126294", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", - "provenience": [ - "Italy", - "Treviso" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Francesca Rino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/126294", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15599" - }, - { - "emuIRN": "309333", - "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", - "provenience": [ - "Italy", - "Parma (Italy)" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Faelli Carlo" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309333", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15600" - }, - { - "emuIRN": "261187", - "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Cassini Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Cucu" - ], - "url": "http://www.penn.museum/collections/object/261187", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15601" - }, - { - "emuIRN": "5818", - "description": "40 cards with wrapper. Printed back: green and blue plaid", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5818", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15604" - }, - { - "emuIRN": "236604", - "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236604", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15607" - }, - { - "emuIRN": "141065", - "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141065", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15608" - }, - { - "emuIRN": "319728", - "description": "Playing card deck - 40 cards", - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/319728", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15621" - }, - { - "emuIRN": "119150", - "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Florentine Pack" - ], - "url": "http://www.penn.museum/collections/object/119150", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15622" - }, - { - "emuIRN": "92457", - "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/92457", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15623" - }, - { - "emuIRN": "406753", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406753", - "curatorial_section": "Historic", - "object_number": "19124.15" - }, - { - "emuIRN": "406754", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406754", - "curatorial_section": "Historic", - "object_number": "19124.16" - }, - { - "emuIRN": "406755", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406755", - "curatorial_section": "Historic", - "object_number": "19124.17" - }, - { - "emuIRN": "406756", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406756", - "curatorial_section": "Historic", - "object_number": "19124.18" - }, - { - "emuIRN": "406757", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406757", - "curatorial_section": "Historic", - "object_number": "19124.19" - }, - { - "emuIRN": "406758", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406758", - "curatorial_section": "Historic", - "object_number": "19124.20" - }, - { - "emuIRN": "406759", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406759", - "curatorial_section": "Historic", - "object_number": "19124.21" - }, - { - "emuIRN": "406760", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406760", - "curatorial_section": "Historic", - "object_number": "19124.22" - }, - { - "emuIRN": "406761", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406761", - "curatorial_section": "Historic", - "object_number": "19124.23" - }, - { - "emuIRN": "406762", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406762", - "curatorial_section": "Historic", - "object_number": "19124.24" - }, - { - "emuIRN": "406763", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406763", - "curatorial_section": "Historic", - "object_number": "19124.25" - }, - { - "emuIRN": "406764", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406764", - "curatorial_section": "Historic", - "object_number": "19124.26" - }, - { - "emuIRN": "330556", - "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", - "provenience": [ - "Europe (uncertain)" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/330556", - "curatorial_section": "Historic", - "object_number": "29-191-128" - }, - { - "emuIRN": "321909", - "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/321909", - "curatorial_section": "Historic", - "object_number": "29-191-129" - }, - { - "emuIRN": "127367", - "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/127367", - "curatorial_section": "Historic", - "object_number": "29-191-227" - }, - { - "emuIRN": "203363", - "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", - "technique": [ - "Painted" - ], - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Paint", - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/203363", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15792" - }, - { - "emuIRN": "185526", - "description": "Red and gold sphere with small metall loop on 1 end", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of H. C. Thomson, 1894" - ], - "object_name": [ - "Whistling Top" - ], - "url": "http://www.penn.museum/collections/object/185526", - "curatorial_section": "Historic", - "object_number": "17817" - }, - { - "emuIRN": "59206", - "description": "Wood ball with metal spike. Cord for spinning", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top", - "Cord" - ], - "url": "http://www.penn.museum/collections/object/59206", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19214" - }, - { - "emuIRN": "186142", - "description": "Turned wood, bell-shaped with metal spike.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/186142", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19216" - }, - { - "emuIRN": "234646", - "description": "Toy rolling disc - wooden.", - "provenience": [ - "Italy" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Henry H. Giglioli, 1896" - ], - "object_name": [ - "Spinning Toy (uncertain)", - "Rolling Disc" - ], - "url": "http://www.penn.museum/collections/object/234646", - "curatorial_section": "Historic", - "object_number": "19217" - }, - { - "emuIRN": "134935", - "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal", - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1897" - ], - "object_name": [ - "Pinwheel" - ], - "url": "http://www.penn.museum/collections/object/134935", - "curatorial_section": "Historic", - "object_number": "20037" - }, - { - "emuIRN": "340545", - "description": "Turned wood ball with metal peg. Smaller version of 19214.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/340545", - "curatorial_section": "Historic", - "object_number": "19215A" - }, - { - "emuIRN": "273066", - "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Top Die", - "Teetotum" - ], - "url": "http://www.penn.museum/collections/object/273066", - "curatorial_section": "Historic", - "object_number": "71-18-6" - }, - { - "emuIRN": "146612", - "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", - "provenience": [ - "Japan" - ], - "material": [ - "Brass", - "Tin" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/146612", - "curatorial_section": "Historic", - "object_number": "71-18-11" - }, - { - "emuIRN": "264736", - "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top" - ], - "url": "http://www.penn.museum/collections/object/264736", - "curatorial_section": "Historic", - "object_number": "71-18-41" - }, - { - "emuIRN": "128464", - "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", - "provenience": [ - "West Germany" - ], - "culture": [ - "German" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/128464", - "curatorial_section": "Historic", - "object_number": "71-18-45" - }, - { - "emuIRN": "102950", - "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top", - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/102950", - "curatorial_section": "Historic", - "object_number": "71-18-50" - }, - { - "emuIRN": "215073", - "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Gyroscope" - ], - "url": "http://www.penn.museum/collections/object/215073", - "curatorial_section": "Historic", - "object_number": "71-18-53" - }, - { - "emuIRN": "281519", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/281519", - "curatorial_section": "Historic", - "object_number": "71-18-10A" - }, - { - "emuIRN": "132216", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/132216", - "curatorial_section": "Historic", - "object_number": "71-18-10B" - }, - { - "emuIRN": "222994", - "description": "Turned wooden spinnters. A-D have stems.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/222994", - "curatorial_section": "Historic", - "object_number": "71-18-17A" - }, - { - "emuIRN": "293378", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/293378", - "curatorial_section": "Historic", - "object_number": "71-18-17B" - }, - { - "emuIRN": "244262", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/244262", - "curatorial_section": "Historic", - "object_number": "71-18-17C" - }, - { - "emuIRN": "97422", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/97422", - "curatorial_section": "Historic", - "object_number": "71-18-17D" - }, - { - "emuIRN": "283240", - "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/283240", - "curatorial_section": "Historic", - "object_number": "71-18-17E" - }, - { - "emuIRN": "199531", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/199531", - "curatorial_section": "Historic", - "object_number": "71-18-20A" - }, - { - "emuIRN": "315942", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/315942", - "curatorial_section": "Historic", - "object_number": "71-18-20B" - }, - { - "emuIRN": "154811", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/154811", - "curatorial_section": "Historic", - "object_number": "71-18-20C" - }, - { - "emuIRN": "119329", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/119329", - "curatorial_section": "Historic", - "object_number": "71-18-20D" - }, - { - "emuIRN": "138169", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/138169", - "curatorial_section": "Historic", - "object_number": "71-18-20E" - }, - { - "emuIRN": "168699", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/168699", - "curatorial_section": "Historic", - "object_number": "71-18-20F" - }, - { - "emuIRN": "165852", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/165852", - "curatorial_section": "Historic", - "object_number": "71-18-20G" - }, - { - "emuIRN": "307682", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/307682", - "curatorial_section": "Historic", - "object_number": "71-18-20H" - }, - { - "emuIRN": "336448", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336448", - "curatorial_section": "Historic", - "object_number": "71-18-32A" - }, - { - "emuIRN": "181753", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/181753", - "curatorial_section": "Historic", - "object_number": "71-18-32B" - }, - { - "emuIRN": "277851", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/277851", - "curatorial_section": "Historic", - "object_number": "71-18-32C" - }, - { - "emuIRN": "44213", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/44213", - "curatorial_section": "Historic", - "object_number": "71-18-32D" - }, - { - "emuIRN": "343371", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/343371", - "curatorial_section": "Historic", - "object_number": "71-18-32E" - }, - { - "emuIRN": "405192", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "period": [ - "Modern" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/405192", - "curatorial_section": "Historic", - "object_number": "71-18-32F" - }, - { - "emuIRN": "174014", - "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinning Toy", - "Supported Top", - "Whistle" - ], - "url": "http://www.penn.museum/collections/object/174014", - "curatorial_section": "Historic", - "object_number": "71-18-72" - }, - { - "emuIRN": "54377", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/54377", - "curatorial_section": "Historic", - "object_number": "71-18-71A" - }, - { - "emuIRN": "336914", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336914", - "curatorial_section": "Historic", - "object_number": "71-18-71B" - }, - { - "emuIRN": "40527", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel", - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/40527", - "curatorial_section": "Historic", - "object_number": "71-18-71C" - }, - { - "emuIRN": "81633", - "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "iconography": [ - "Dog", - "Flag" - ], - "material": [ - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81633", - "other_numbers": [ - "533107" - ], - "curatorial_section": "Historic", - "object_number": "73-1-9" - }, - { - "emuIRN": "315995", - "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/315995", - "curatorial_section": "Historic", - "object_number": "73-1-11" - }, - { - "emuIRN": "81890", - "description": "Bi-colored light plastic top / yo-yo", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81890", - "curatorial_section": "Historic", - "object_number": "73-1-12" - }, - { - "emuIRN": "158974", - "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/158974", - "curatorial_section": "Historic", - "object_number": "73-1-21" - }, - { - "emuIRN": "270492", - "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/270492", - "curatorial_section": "Historic", - "object_number": "73-1-15B" - }, - { - "emuIRN": "122561", - "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "material": [ - "Plastic", - "Nylon" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/122561", - "curatorial_section": "Historic", - "object_number": "75-13-1" - }, - { - "emuIRN": "169135", - "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", - "provenience": [ - "Wisconsin", - "Milwaukee" - ], - "culture": [ - "American" - ], - "creator": [ - "Jak Pak Inc." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/169135", - "curatorial_section": "Historic", - "object_number": "75-13-18" - }, - { - "emuIRN": "265153", - "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", - "provenience": [ - "New York", - "Brooklyn" - ], - "culture": [ - "American" - ], - "creator": [ - "American Magnetop Corp." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/265153", - "curatorial_section": "Historic", - "object_number": "75-13-19" - }, - { - "emuIRN": "258185", - "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Giant Plastics Corp." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/258185", - "curatorial_section": "Historic", - "object_number": "75-13-21" - }, - { - "emuIRN": "112910", - "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", - "provenience": [ - "England" - ], - "culture": [ - "English" - ], - "creator": [ - "Christie & Jay, Ltd" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/112910", - "curatorial_section": "Historic", - "object_number": "75-13-30" - }, - { - "emuIRN": "206818", - "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", - "provenience": [ - "Tennessee", - "Nashville" - ], - "culture": [ - "American" - ], - "creator": [ - "Kusan, Inc" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Yo-Yo", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/206818", - "curatorial_section": "Historic", - "object_number": "75-13-32" - }, - { - "emuIRN": "320134", - "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", - "provenience": [ - "New York", - "Brooklyn" - ], - "creator": [ - "Shimmel" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/320134", - "curatorial_section": "Historic", - "object_number": "75-13-33" - }, - { - "emuIRN": "13411", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/13411", - "curatorial_section": "Historic", - "object_number": "75-13-10A" - }, - { - "emuIRN": "2151", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/2151", - "curatorial_section": "Historic", - "object_number": "75-13-10B" - }, - { - "emuIRN": "227620", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/227620", - "curatorial_section": "Historic", - "object_number": "75-13-10C" - }, - { - "emuIRN": "205966", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/205966", - "curatorial_section": "Historic", - "object_number": "75-13-29A" - }, - { - "emuIRN": "281691", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/281691", - "curatorial_section": "Historic", - "object_number": "75-13-29B" - }, - { - "emuIRN": "99171", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/99171", - "curatorial_section": "Historic", - "object_number": "75-13-29C" - }, - { - "emuIRN": "101034", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/101034", - "curatorial_section": "Historic", - "object_number": "75-13-29D" - }, - { - "emuIRN": "308170", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/308170", - "curatorial_section": "Historic", - "object_number": "75-13-29E" - }, - { - "emuIRN": "212263", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/212263", - "curatorial_section": "Historic", - "object_number": "75-13-29F" - }, - { - "emuIRN": "171295", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/171295", - "curatorial_section": "Historic", - "object_number": "75-13-29G" - }, - { - "emuIRN": "252428", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/252428", - "curatorial_section": "Historic", - "object_number": "75-13-29H" - }, - { - "emuIRN": "33474", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/33474", - "curatorial_section": "Historic", - "object_number": "75-13-29I" - }, - { - "emuIRN": "64988", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/64988", - "curatorial_section": "Historic", - "object_number": "75-13-29J" - }, - { - "emuIRN": "149403", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/149403", - "curatorial_section": "Historic", - "object_number": "75-13-29K" - }, - { - "emuIRN": "192238", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/192238", - "curatorial_section": "Historic", - "object_number": "75-13-29L" - }, - { - "emuIRN": "87050", - "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/87050", - "curatorial_section": "Historic", - "object_number": "75-13-5A" - }, - { - "emuIRN": "241334", - "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", - "provenience": [ - "Hawthorne" - ], - "culture": [ - "American" - ], - "creator": [ - "Mattel, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/241334", - "curatorial_section": "Historic", - "object_number": "75-13-9D" - }, - { - "emuIRN": "77859", - "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/77859", - "curatorial_section": "Historic", - "object_number": "71-18-24" - }, - { - "emuIRN": "285019", - "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top", - "Musical Top" - ], - "url": "http://www.penn.museum/collections/object/285019", - "curatorial_section": "Historic", - "object_number": "71-18-27" - }, - { - "emuIRN": "37984", - "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/37984", - "curatorial_section": "Historic", - "object_number": "71-18-38" - }, - { - "emuIRN": "239276", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/239276", - "curatorial_section": "Historic", - "object_number": "71-18-28A" - }, - { - "emuIRN": "32312", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/32312", - "curatorial_section": "Historic", - "object_number": "71-18-28B" - }, - { - "emuIRN": "65727", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/65727", - "curatorial_section": "Historic", - "object_number": "71-18-28C" - }, - { - "emuIRN": "274339", - "description": "Wire puzzle with boot and cap.", - "provenience": [ - "Europe", - "France (uncertain)" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Wire Puzzle" - ], - "url": "http://www.penn.museum/collections/object/274339", - "curatorial_section": "Historic", - "object_number": "8812" - }, - { - "emuIRN": "159716", - "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Selchow & Richter" - ], - "material": [ - "Cardboard" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/159716", - "date_made_early": "1880", - "date_made": "9/7/1880", - "date_made_late": "1880", - "curatorial_section": "Historic", - "object_number": "15496" - }, - { - "emuIRN": "18643", - "description": "12 lithographed cards with pictures of children's games. Fused to 16555", - "technique": [ - "Lithograph" - ], - "provenience": [ - "France", - "Paris (France)" - ], - "iconography": [ - "Games" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Cards" - ], - "url": "http://www.penn.museum/collections/object/18643", - "curatorial_section": "Historic", - "object_number": "16231" - }, - { - "emuIRN": "34693", - "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Metal", - "Glass", - "Wood" - ], - "accession_credit_line": [ - "Gift of Mrs. John Harrison, 1894" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/34693", - "date_made_early": "1869", - "date_made": "c. 1894", - "date_made_late": "1894", - "curatorial_section": "Historic", - "object_number": "16401" - }, - { - "emuIRN": "93791", - "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", - "provenience": [ - "England", - "London" - ], - "culture": [ - "British" - ], - "accession_credit_line": [ - "Gift of Henry Jones, 1893" - ], - "object_name": [ - "Card Game", - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93791", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "16555" - }, - { - "emuIRN": "117728", - "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "creator": [ - "Donaldson Brothers" - ], - "material": [ - "Paper" - ], - "object_name": [ - "Puzzle", - "Advertisement" - ], - "url": "http://www.penn.museum/collections/object/117728", - "curatorial_section": "Historic", - "object_number": "18578" - }, - { - "emuIRN": "303943", - "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", - "provenience": [ - "Pennsylvania", - "Bucks County" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Glass", - "Metal", - "String", - "Cork" - ], - "accession_credit_line": [ - "Gift of Col. Henry D. Paxson, 1897" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/303943", - "curatorial_section": "Historic", - "object_number": "20067" - }, - { - "emuIRN": "287388", - "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Dr. Max Uhle, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/287388", - "curatorial_section": "Historic", - "object_number": "21082" - }, - { - "emuIRN": "140578", - "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/140578", - "curatorial_section": "Historic", - "object_number": "21458" - }, - { - "emuIRN": "120293", - "description": "Wood Board with instructions. Metal Arm.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120293", - "curatorial_section": "Historic", - "object_number": "21460" - }, - { - "emuIRN": "25280", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/25280", - "curatorial_section": "Historic", - "object_number": "21594A" - }, - { - "emuIRN": "406863", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/406863", - "curatorial_section": "Historic", - "object_number": "21594B" - }, - { - "emuIRN": "93703", - "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "The American Game and Puzzle Company" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93703", - "curatorial_section": "Historic", - "object_number": "29-191-146" - }, - { - "emuIRN": "64758", - "description": "Yamato Block Puzzle - 6 pieces of wood", - "provenience": [ - "Japan" - ], - "culture": [ - "Japanese" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64758", - "curatorial_section": "Historic", - "object_number": "29-191-159" - }, - { - "emuIRN": "64759", - "description": "See Dar Wonderful - 9 pieces of wood", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64759", - "curatorial_section": "Historic", - "object_number": "29-191-160" - }, - { - "emuIRN": "30391", - "description": "12 pieces", - "provenience": [ - "New York", - "New York City" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle", - "Reproduction (uncertain)" - ], - "url": "http://www.penn.museum/collections/object/30391", - "curatorial_section": "Historic", - "object_number": "29-191-161" - }, - { - "emuIRN": "22499", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/22499", - "other_numbers": [ - "4001" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157B" - }, - { - "emuIRN": "120252", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120252", - "other_numbers": [ - "4001?" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157C" - }, - { - "emuIRN": "156290", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/156290", - "other_numbers": [ - "4002" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157D" - }, - { - "emuIRN": "99398", - "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", - "provenience": [ - "Pennsylvania", - "Pittsburgh" - ], - "culture": [ - "American" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Charles Este, Jr., 1899" - ], - "object_name": [ - "Puzzle", - "Trick" - ], - "url": "http://www.penn.museum/collections/object/99398", - "curatorial_section": "Historic", - "object_number": "19783" - }, - { - "emuIRN": "130464", - "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/130464", - "native_name": [ - "Cartes a Jouer" - ], - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "7594" - }, - { - "emuIRN": "160242", - "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/160242", - "date_made_early": "1800", - "date_made": "1800-1899", - "date_made_late": "1899", - "curatorial_section": "Historic", - "object_number": "7595" - }, - { - "emuIRN": "157104", - "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1890" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "url": "http://www.penn.museum/collections/object/157104", - "date_made_early": "1800", - "date_made": "19th century", - "date_made_late": "1890", - "curatorial_section": "Historic", - "object_number": "7629" - }, - { - "emuIRN": "157105", - "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "C. L. Wust" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of J. D. Sergeant, 1890" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/157105", - "curatorial_section": "Historic", - "object_number": "7630" - }, - { - "emuIRN": "98559", - "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "B. Dondorf" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of W. Yorke Stevenson, 1891" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/98559", - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "other_numbers": [ - "27" - ], - "curatorial_section": "Historic", - "object_number": "7712" - }, - { - "emuIRN": "248509", - "description": "Card dominoes in box.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Card Game", - "Dominoe" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/248509", - "curatorial_section": "Historic", - "object_number": "8813" - }, - { - "emuIRN": "137944", - "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/137944", - "date_made_early": "1866", - "date_made": "c. 1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "9011" - }, - { - "emuIRN": "194220", - "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "creator": [ - "Watilliaux" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/194220", - "date_made_early": "1878", - "date_made": "1878", - "date_made_late": "1878", - "curatorial_section": "Historic", - "object_number": "9018" - }, - { - "emuIRN": "205296", - "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", - "technique": [ - "Printed" - ], - "provenience": [ - "Mexico (Central America)", - "Puebla (Mexican State)" - ], - "culture": [ - "Spanish" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of the US National Museum, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/205296", - "date_made_early": "1873", - "date_made": "1873-1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15360" - }, - { - "emuIRN": "21030", - "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Fortune Telling Cards" - ], - "url": "http://www.penn.museum/collections/object/21030", - "date_made_early": "1865", - "date_made": "pre 1890", - "date_made_late": "1890", - "other_numbers": [ - "43" - ], - "curatorial_section": "Historic", - "object_number": "15513" - }, - { - "emuIRN": "46932", - "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", - "provenience": [ - "Italy", - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/46932", - "date_made_early": "1880", - "date_made": "1880-1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15528" - }, - { - "emuIRN": "220035", - "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/220035", - "date_made_early": "29 Nov 1890", - "date_made": "11/29/1890", - "date_made_late": "29 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15529" - }, - { - "emuIRN": "220036", - "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/220036", - "date_made_early": "27 Oct 1890", - "date_made": "10/27/1890", - "date_made_late": "27 Oct 1890", - "other_numbers": [ - "42" - ], - "curatorial_section": "Historic", - "object_number": "15530" - }, - { - "emuIRN": "289473", - "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/289473", - "date_made_early": "17 Jan 1887", - "date_made": "1/17/1887", - "date_made_late": "17 Jan 1887", - "curatorial_section": "Historic", - "object_number": "15532" - }, - { - "emuIRN": "114394", - "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/114394", - "date_made_early": "1867", - "date_made": " pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15533" - }, - { - "emuIRN": "82994", - "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/82994", - "date_made_early": "17 Jun 1890", - "date_made": "6/17/1890", - "date_made_late": "17 Jun 1890", - "other_numbers": [ - "13" - ], - "curatorial_section": "Historic", - "object_number": "15534" - }, - { - "emuIRN": "233242", - "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/233242", - "date_made_early": "13 Mar 1891", - "date_made": "3/13/1891", - "date_made_late": "13 Mar 1891", - "other_numbers": [ - "5" - ], - "curatorial_section": "Historic", - "object_number": "15536" - }, - { - "emuIRN": "237987", - "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/237987", - "date_made_early": "13 Mar 1891", - "date_made": "pre 1892", - "date_made_late": "13 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15537" - }, - { - "emuIRN": "264110", - "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/264110", - "date_made_early": "1867", - "date_made": "pre 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15538" - }, - { - "emuIRN": "36188", - "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/36188", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15540" - }, - { - "emuIRN": "154504", - "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/154504", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15541" - }, - { - "emuIRN": "203963", - "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/203963", - "date_made_early": "27 Aug 1891", - "date_made": "8/27/1891", - "date_made_late": "27 Aug 1891", - "curatorial_section": "Historic", - "object_number": "15543" - }, - { - "emuIRN": "241994", - "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/241994", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15544" - }, - { - "emuIRN": "243680", - "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/243680", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15545" - }, - { - "emuIRN": "87145", - "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/87145", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15546" - }, - { - "emuIRN": "59271", - "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/59271", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15547" - }, - { - "emuIRN": "336096", - "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/336096", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15548" - }, - { - "emuIRN": "203973", - "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/203973", - "date_made_early": "09 Apr 1888", - "date_made": "4/9/1888", - "date_made_late": "09 Apr 1888", - "curatorial_section": "Historic", - "object_number": "15550" - }, - { - "emuIRN": "238541", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/238541", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15552" - }, - { - "emuIRN": "131933", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/131933", - "date_made_early": "16 Jun 1891", - "date_made": "6/16/1891", - "date_made_late": "16 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15553" - }, - { - "emuIRN": "158923", - "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/158923", - "date_made_early": "01 Jun 1891", - "date_made": "6/1/1891", - "date_made_late": "01 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15554" - }, - { - "emuIRN": "103187", - "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/103187", - "native_name": [ - "Tarocchino" - ], - "date_made_early": "03 Feb 1891", - "date_made": "2/3/1891", - "date_made_late": "03 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15555" - }, - { - "emuIRN": "178709", - "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", - "provenience": [ - "Italy", - "Povoletto-Udine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "F. L. Muccioli" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/178709", - "date_made_early": "09 May 1890", - "date_made": "5/9/1890", - "date_made_late": "09 May 1890", - "curatorial_section": "Historic", - "object_number": "15556" - }, - { - "emuIRN": "277112", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/277112", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15557" - }, - { - "emuIRN": "25552", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/25552", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15558" - }, - { - "emuIRN": "325482", - "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/325482", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1895", - "curatorial_section": "Historic", - "object_number": "15559" - }, - { - "emuIRN": "325483", - "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/325483", - "date_made_early": "12 Mar 2091", - "date_made": "3/12/91", - "date_made_late": "12 Mar 2091", - "curatorial_section": "Historic", - "object_number": "15560" - }, - { - "emuIRN": "48114", - "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/48114", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "22 Jun 1891", - "date_made": "6/22/1891", - "date_made_late": "22 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15561" - }, - { - "emuIRN": "167380", - "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/167380", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15562" - }, - { - "emuIRN": "321272", - "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Vincenzo Russo" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack", - "Neopolitan Pack" - ], - "url": "http://www.penn.museum/collections/object/321272", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "11 Feb 1891", - "date_made": "2/11/1891", - "date_made_late": "11 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15563" - }, - { - "emuIRN": "279915", - "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Luigi Pignalosa" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/279915", - "date_made_early": "14 Feb 1891", - "date_made": "2/14/1891", - "date_made_late": "14 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15564" - }, - { - "emuIRN": "157272", - "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/157272", - "date_made_early": "04 Oct 1888", - "date_made": "10/4/1888", - "date_made_late": "04 Oct 1888", - "curatorial_section": "Historic", - "object_number": "15566" - }, - { - "emuIRN": "88522", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/88522", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15567" - }, - { - "emuIRN": "177453", - "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/177453", - "date_made_early": "24 Mar 1891", - "date_made": "3/24/1891", - "date_made_late": "24 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15568" - }, - { - "emuIRN": "322855", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322855", - "date_made_early": "25 Nov 1890", - "date_made": "11/25/1890", - "date_made_late": "25 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15569" - }, - { - "emuIRN": "322856", - "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322856", - "date_made_early": "27 Jul 2091", - "date_made": "7/27/91", - "date_made_late": "27 Jul 2091", - "curatorial_section": "Historic", - "object_number": "15570" - }, - { - "emuIRN": "289232", - "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/289232", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15571" - }, - { - "emuIRN": "71704", - "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "L. Bartolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/71704", - "date_made_early": "02 Jul 1892", - "date_made": "7/2/1892", - "date_made_late": "02 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15572" - }, - { - "emuIRN": "341571", - "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Silvertrini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/341571", - "date_made_early": "01 Jul 1892", - "date_made": "7/1/1892", - "date_made_late": "01 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15573" - }, - { - "emuIRN": "231215", - "description": "Playing card deck - 44 cards", - "provenience": [ - "Italy", - "Bergamo" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Masenghini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Milanese Deck" - ], - "url": "http://www.penn.museum/collections/object/231215", - "curatorial_section": "Historic", - "object_number": "15575" - }, - { - "emuIRN": "290651", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", - "provenience": [ - "Italy", - "Trento" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giac. Bertoldi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/290651", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15577" - }, - { - "emuIRN": "116249", - "description": "Playing card deck - 40 cards, printed back with pink abstract designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/116249", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15578" - }, - { - "emuIRN": "76331", - "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/76331", - "date_made_early": "1867", - "date_made": "c.1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15579" - }, - { - "emuIRN": "76332", - "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/76332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15580" - }, - { - "emuIRN": "189908", - "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/189908", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15583" - }, - { - "emuIRN": "275719", - "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/275719", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15584" - }, - { - "emuIRN": "51584", - "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/51584", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15585" - }, - { - "emuIRN": "56004", - "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Crispolani" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/56004", - "date_made_early": "1850", - "date_made": "circa 1860", - "date_made_late": "1870", - "curatorial_section": "Historic", - "object_number": "15586" - }, - { - "emuIRN": "124979", - "description": "Playing card deck - Tarocchi/Tarot - 78 cards", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/124979", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15587" - }, - { - "emuIRN": "212458", - "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "url": "http://www.penn.museum/collections/object/212458", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15588" - }, - { - "emuIRN": "309331", - "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "G. C. Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309331", - "date_made_early": "30 Mar 1891", - "date_made": "3/30/1891", - "date_made_late": "30 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15589" - }, - { - "emuIRN": "309332", - "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15590" - }, - { - "emuIRN": "86979", - "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/86979", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15592" - }, - { - "emuIRN": "5817", - "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5817", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15594" - }, - { - "emuIRN": "170983", - "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Baby", - "Angel" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/170983", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15595" - }, - { - "emuIRN": "300071", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Tambourine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/300071", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15596" - }, - { - "emuIRN": "236603", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236603", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15597" - }, - { - "emuIRN": "141064", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141064", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15598" - }, - { - "emuIRN": "126294", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", - "provenience": [ - "Italy", - "Treviso" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Francesca Rino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/126294", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15599" - }, - { - "emuIRN": "309333", - "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", - "provenience": [ - "Italy", - "Parma (Italy)" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Faelli Carlo" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309333", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15600" - }, - { - "emuIRN": "261187", - "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Cassini Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Cucu" - ], - "url": "http://www.penn.museum/collections/object/261187", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15601" - }, - { - "emuIRN": "5818", - "description": "40 cards with wrapper. Printed back: green and blue plaid", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5818", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15604" - }, - { - "emuIRN": "236604", - "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236604", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15607" - }, - { - "emuIRN": "141065", - "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141065", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15608" - }, - { - "emuIRN": "319728", - "description": "Playing card deck - 40 cards", - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/319728", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15621" - }, - { - "emuIRN": "119150", - "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Florentine Pack" - ], - "url": "http://www.penn.museum/collections/object/119150", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15622" - }, - { - "emuIRN": "92457", - "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/92457", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15623" - }, - { - "emuIRN": "406753", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406753", - "curatorial_section": "Historic", - "object_number": "19124.15" - }, - { - "emuIRN": "406754", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406754", - "curatorial_section": "Historic", - "object_number": "19124.16" - }, - { - "emuIRN": "406755", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406755", - "curatorial_section": "Historic", - "object_number": "19124.17" - }, - { - "emuIRN": "406756", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406756", - "curatorial_section": "Historic", - "object_number": "19124.18" - }, - { - "emuIRN": "406757", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406757", - "curatorial_section": "Historic", - "object_number": "19124.19" - }, - { - "emuIRN": "406758", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406758", - "curatorial_section": "Historic", - "object_number": "19124.20" - }, - { - "emuIRN": "406759", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406759", - "curatorial_section": "Historic", - "object_number": "19124.21" - }, - { - "emuIRN": "406760", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406760", - "curatorial_section": "Historic", - "object_number": "19124.22" - }, - { - "emuIRN": "406761", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406761", - "curatorial_section": "Historic", - "object_number": "19124.23" - }, - { - "emuIRN": "406762", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406762", - "curatorial_section": "Historic", - "object_number": "19124.24" - }, - { - "emuIRN": "406763", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406763", - "curatorial_section": "Historic", - "object_number": "19124.25" - }, - { - "emuIRN": "406764", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406764", - "curatorial_section": "Historic", - "object_number": "19124.26" - }, - { - "emuIRN": "330556", - "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", - "provenience": [ - "Europe (uncertain)" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/330556", - "curatorial_section": "Historic", - "object_number": "29-191-128" - }, - { - "emuIRN": "321909", - "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/321909", - "curatorial_section": "Historic", - "object_number": "29-191-129" - }, - { - "emuIRN": "127367", - "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/127367", - "curatorial_section": "Historic", - "object_number": "29-191-227" - }, - { - "emuIRN": "203363", - "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", - "technique": [ - "Painted" - ], - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Paint", - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/203363", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15792" - }, - { - "emuIRN": "185526", - "description": "Red and gold sphere with small metall loop on 1 end", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of H. C. Thomson, 1894" - ], - "object_name": [ - "Whistling Top" - ], - "url": "http://www.penn.museum/collections/object/185526", - "curatorial_section": "Historic", - "object_number": "17817" - }, - { - "emuIRN": "59206", - "description": "Wood ball with metal spike. Cord for spinning", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top", - "Cord" - ], - "url": "http://www.penn.museum/collections/object/59206", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19214" - }, - { - "emuIRN": "186142", - "description": "Turned wood, bell-shaped with metal spike.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/186142", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19216" - }, - { - "emuIRN": "234646", - "description": "Toy rolling disc - wooden.", - "provenience": [ - "Italy" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Henry H. Giglioli, 1896" - ], - "object_name": [ - "Spinning Toy (uncertain)", - "Rolling Disc" - ], - "url": "http://www.penn.museum/collections/object/234646", - "curatorial_section": "Historic", - "object_number": "19217" - }, - { - "emuIRN": "134935", - "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal", - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1897" - ], - "object_name": [ - "Pinwheel" - ], - "url": "http://www.penn.museum/collections/object/134935", - "curatorial_section": "Historic", - "object_number": "20037" - }, - { - "emuIRN": "340545", - "description": "Turned wood ball with metal peg. Smaller version of 19214.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/340545", - "curatorial_section": "Historic", - "object_number": "19215A" - }, - { - "emuIRN": "273066", - "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Top Die", - "Teetotum" - ], - "url": "http://www.penn.museum/collections/object/273066", - "curatorial_section": "Historic", - "object_number": "71-18-6" - }, - { - "emuIRN": "146612", - "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", - "provenience": [ - "Japan" - ], - "material": [ - "Brass", - "Tin" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/146612", - "curatorial_section": "Historic", - "object_number": "71-18-11" - }, - { - "emuIRN": "264736", - "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top" - ], - "url": "http://www.penn.museum/collections/object/264736", - "curatorial_section": "Historic", - "object_number": "71-18-41" - }, - { - "emuIRN": "128464", - "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", - "provenience": [ - "West Germany" - ], - "culture": [ - "German" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/128464", - "curatorial_section": "Historic", - "object_number": "71-18-45" - }, - { - "emuIRN": "102950", - "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top", - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/102950", - "curatorial_section": "Historic", - "object_number": "71-18-50" - }, - { - "emuIRN": "215073", - "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Gyroscope" - ], - "url": "http://www.penn.museum/collections/object/215073", - "curatorial_section": "Historic", - "object_number": "71-18-53" - }, - { - "emuIRN": "281519", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/281519", - "curatorial_section": "Historic", - "object_number": "71-18-10A" - }, - { - "emuIRN": "132216", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/132216", - "curatorial_section": "Historic", - "object_number": "71-18-10B" - }, - { - "emuIRN": "222994", - "description": "Turned wooden spinnters. A-D have stems.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/222994", - "curatorial_section": "Historic", - "object_number": "71-18-17A" - }, - { - "emuIRN": "293378", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/293378", - "curatorial_section": "Historic", - "object_number": "71-18-17B" - }, - { - "emuIRN": "244262", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/244262", - "curatorial_section": "Historic", - "object_number": "71-18-17C" - }, - { - "emuIRN": "97422", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/97422", - "curatorial_section": "Historic", - "object_number": "71-18-17D" - }, - { - "emuIRN": "283240", - "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/283240", - "curatorial_section": "Historic", - "object_number": "71-18-17E" - }, - { - "emuIRN": "199531", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/199531", - "curatorial_section": "Historic", - "object_number": "71-18-20A" - }, - { - "emuIRN": "315942", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/315942", - "curatorial_section": "Historic", - "object_number": "71-18-20B" - }, - { - "emuIRN": "154811", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/154811", - "curatorial_section": "Historic", - "object_number": "71-18-20C" - }, - { - "emuIRN": "119329", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/119329", - "curatorial_section": "Historic", - "object_number": "71-18-20D" - }, - { - "emuIRN": "138169", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/138169", - "curatorial_section": "Historic", - "object_number": "71-18-20E" - }, - { - "emuIRN": "168699", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/168699", - "curatorial_section": "Historic", - "object_number": "71-18-20F" - }, - { - "emuIRN": "165852", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/165852", - "curatorial_section": "Historic", - "object_number": "71-18-20G" - }, - { - "emuIRN": "307682", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/307682", - "curatorial_section": "Historic", - "object_number": "71-18-20H" - }, - { - "emuIRN": "336448", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336448", - "curatorial_section": "Historic", - "object_number": "71-18-32A" - }, - { - "emuIRN": "181753", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/181753", - "curatorial_section": "Historic", - "object_number": "71-18-32B" - }, - { - "emuIRN": "277851", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/277851", - "curatorial_section": "Historic", - "object_number": "71-18-32C" - }, - { - "emuIRN": "44213", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/44213", - "curatorial_section": "Historic", - "object_number": "71-18-32D" - }, - { - "emuIRN": "343371", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/343371", - "curatorial_section": "Historic", - "object_number": "71-18-32E" - }, - { - "emuIRN": "405192", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "period": [ - "Modern" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/405192", - "curatorial_section": "Historic", - "object_number": "71-18-32F" - }, - { - "emuIRN": "174014", - "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinning Toy", - "Supported Top", - "Whistle" - ], - "url": "http://www.penn.museum/collections/object/174014", - "curatorial_section": "Historic", - "object_number": "71-18-72" - }, - { - "emuIRN": "54377", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/54377", - "curatorial_section": "Historic", - "object_number": "71-18-71A" - }, - { - "emuIRN": "336914", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336914", - "curatorial_section": "Historic", - "object_number": "71-18-71B" - }, - { - "emuIRN": "40527", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel", - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/40527", - "curatorial_section": "Historic", - "object_number": "71-18-71C" - }, - { - "emuIRN": "81633", - "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "iconography": [ - "Dog", - "Flag" - ], - "material": [ - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81633", - "other_numbers": [ - "533107" - ], - "curatorial_section": "Historic", - "object_number": "73-1-9" - }, - { - "emuIRN": "315995", - "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/315995", - "curatorial_section": "Historic", - "object_number": "73-1-11" - }, - { - "emuIRN": "81890", - "description": "Bi-colored light plastic top / yo-yo", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81890", - "curatorial_section": "Historic", - "object_number": "73-1-12" - }, - { - "emuIRN": "158974", - "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/158974", - "curatorial_section": "Historic", - "object_number": "73-1-21" - }, - { - "emuIRN": "270492", - "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/270492", - "curatorial_section": "Historic", - "object_number": "73-1-15B" - }, - { - "emuIRN": "122561", - "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "material": [ - "Plastic", - "Nylon" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/122561", - "curatorial_section": "Historic", - "object_number": "75-13-1" - }, - { - "emuIRN": "169135", - "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", - "provenience": [ - "Wisconsin", - "Milwaukee" - ], - "culture": [ - "American" - ], - "creator": [ - "Jak Pak Inc." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/169135", - "curatorial_section": "Historic", - "object_number": "75-13-18" - }, - { - "emuIRN": "265153", - "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", - "provenience": [ - "New York", - "Brooklyn" - ], - "culture": [ - "American" - ], - "creator": [ - "American Magnetop Corp." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/265153", - "curatorial_section": "Historic", - "object_number": "75-13-19" - }, - { - "emuIRN": "258185", - "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Giant Plastics Corp." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/258185", - "curatorial_section": "Historic", - "object_number": "75-13-21" - }, - { - "emuIRN": "112910", - "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", - "provenience": [ - "England" - ], - "culture": [ - "English" - ], - "creator": [ - "Christie & Jay, Ltd" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/112910", - "curatorial_section": "Historic", - "object_number": "75-13-30" - }, - { - "emuIRN": "206818", - "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", - "provenience": [ - "Tennessee", - "Nashville" - ], - "culture": [ - "American" - ], - "creator": [ - "Kusan, Inc" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Yo-Yo", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/206818", - "curatorial_section": "Historic", - "object_number": "75-13-32" - }, - { - "emuIRN": "320134", - "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", - "provenience": [ - "New York", - "Brooklyn" - ], - "creator": [ - "Shimmel" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/320134", - "curatorial_section": "Historic", - "object_number": "75-13-33" - }, - { - "emuIRN": "13411", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/13411", - "curatorial_section": "Historic", - "object_number": "75-13-10A" - }, - { - "emuIRN": "2151", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/2151", - "curatorial_section": "Historic", - "object_number": "75-13-10B" - }, - { - "emuIRN": "227620", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/227620", - "curatorial_section": "Historic", - "object_number": "75-13-10C" - }, - { - "emuIRN": "205966", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/205966", - "curatorial_section": "Historic", - "object_number": "75-13-29A" - }, - { - "emuIRN": "281691", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/281691", - "curatorial_section": "Historic", - "object_number": "75-13-29B" - }, - { - "emuIRN": "99171", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/99171", - "curatorial_section": "Historic", - "object_number": "75-13-29C" - }, - { - "emuIRN": "101034", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/101034", - "curatorial_section": "Historic", - "object_number": "75-13-29D" - }, - { - "emuIRN": "308170", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/308170", - "curatorial_section": "Historic", - "object_number": "75-13-29E" - }, - { - "emuIRN": "212263", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/212263", - "curatorial_section": "Historic", - "object_number": "75-13-29F" - }, - { - "emuIRN": "171295", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/171295", - "curatorial_section": "Historic", - "object_number": "75-13-29G" - }, - { - "emuIRN": "252428", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/252428", - "curatorial_section": "Historic", - "object_number": "75-13-29H" - }, - { - "emuIRN": "33474", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/33474", - "curatorial_section": "Historic", - "object_number": "75-13-29I" - }, - { - "emuIRN": "64988", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/64988", - "curatorial_section": "Historic", - "object_number": "75-13-29J" - }, - { - "emuIRN": "149403", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/149403", - "curatorial_section": "Historic", - "object_number": "75-13-29K" - }, - { - "emuIRN": "192238", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/192238", - "curatorial_section": "Historic", - "object_number": "75-13-29L" - }, - { - "emuIRN": "87050", - "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/87050", - "curatorial_section": "Historic", - "object_number": "75-13-5A" - }, - { - "emuIRN": "241334", - "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", - "provenience": [ - "Hawthorne" - ], - "culture": [ - "American" - ], - "creator": [ - "Mattel, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/241334", - "curatorial_section": "Historic", - "object_number": "75-13-9D" - }, - { - "emuIRN": "77859", - "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/77859", - "curatorial_section": "Historic", - "object_number": "71-18-24" - }, - { - "emuIRN": "285019", - "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top", - "Musical Top" - ], - "url": "http://www.penn.museum/collections/object/285019", - "curatorial_section": "Historic", - "object_number": "71-18-27" - }, - { - "emuIRN": "37984", - "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/37984", - "curatorial_section": "Historic", - "object_number": "71-18-38" - }, - { - "emuIRN": "239276", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/239276", - "curatorial_section": "Historic", - "object_number": "71-18-28A" - }, - { - "emuIRN": "32312", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/32312", - "curatorial_section": "Historic", - "object_number": "71-18-28B" - }, - { - "emuIRN": "65727", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/65727", - "curatorial_section": "Historic", - "object_number": "71-18-28C" - }, - { - "emuIRN": "274339", - "description": "Wire puzzle with boot and cap.", - "provenience": [ - "Europe", - "France (uncertain)" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Wire Puzzle" - ], - "url": "http://www.penn.museum/collections/object/274339", - "curatorial_section": "Historic", - "object_number": "8812" - }, - { - "emuIRN": "159716", - "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Selchow & Richter" - ], - "material": [ - "Cardboard" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/159716", - "date_made_early": "1880", - "date_made": "9/7/1880", - "date_made_late": "1880", - "curatorial_section": "Historic", - "object_number": "15496" - }, - { - "emuIRN": "18643", - "description": "12 lithographed cards with pictures of children's games. Fused to 16555", - "technique": [ - "Lithograph" - ], - "provenience": [ - "France", - "Paris (France)" - ], - "iconography": [ - "Games" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Cards" - ], - "url": "http://www.penn.museum/collections/object/18643", - "curatorial_section": "Historic", - "object_number": "16231" - }, - { - "emuIRN": "34693", - "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Metal", - "Glass", - "Wood" - ], - "accession_credit_line": [ - "Gift of Mrs. John Harrison, 1894" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/34693", - "date_made_early": "1869", - "date_made": "c. 1894", - "date_made_late": "1894", - "curatorial_section": "Historic", - "object_number": "16401" - }, - { - "emuIRN": "93791", - "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", - "provenience": [ - "England", - "London" - ], - "culture": [ - "British" - ], - "accession_credit_line": [ - "Gift of Henry Jones, 1893" - ], - "object_name": [ - "Card Game", - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93791", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "16555" - }, - { - "emuIRN": "117728", - "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "creator": [ - "Donaldson Brothers" - ], - "material": [ - "Paper" - ], - "object_name": [ - "Puzzle", - "Advertisement" - ], - "url": "http://www.penn.museum/collections/object/117728", - "curatorial_section": "Historic", - "object_number": "18578" - }, - { - "emuIRN": "303943", - "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", - "provenience": [ - "Pennsylvania", - "Bucks County" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Glass", - "Metal", - "String", - "Cork" - ], - "accession_credit_line": [ - "Gift of Col. Henry D. Paxson, 1897" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/303943", - "curatorial_section": "Historic", - "object_number": "20067" - }, - { - "emuIRN": "287388", - "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Dr. Max Uhle, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/287388", - "curatorial_section": "Historic", - "object_number": "21082" - }, - { - "emuIRN": "140578", - "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/140578", - "curatorial_section": "Historic", - "object_number": "21458" - }, - { - "emuIRN": "120293", - "description": "Wood Board with instructions. Metal Arm.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120293", - "curatorial_section": "Historic", - "object_number": "21460" - }, - { - "emuIRN": "25280", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/25280", - "curatorial_section": "Historic", - "object_number": "21594A" - }, - { - "emuIRN": "406863", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/406863", - "curatorial_section": "Historic", - "object_number": "21594B" - }, - { - "emuIRN": "93703", - "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "The American Game and Puzzle Company" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93703", - "curatorial_section": "Historic", - "object_number": "29-191-146" - }, - { - "emuIRN": "64758", - "description": "Yamato Block Puzzle - 6 pieces of wood", - "provenience": [ - "Japan" - ], - "culture": [ - "Japanese" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64758", - "curatorial_section": "Historic", - "object_number": "29-191-159" - }, - { - "emuIRN": "64759", - "description": "See Dar Wonderful - 9 pieces of wood", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64759", - "curatorial_section": "Historic", - "object_number": "29-191-160" - }, - { - "emuIRN": "30391", - "description": "12 pieces", - "provenience": [ - "New York", - "New York City" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle", - "Reproduction (uncertain)" - ], - "url": "http://www.penn.museum/collections/object/30391", - "curatorial_section": "Historic", - "object_number": "29-191-161" - }, - { - "emuIRN": "22499", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/22499", - "other_numbers": [ - "4001" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157B" - }, - { - "emuIRN": "120252", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120252", - "other_numbers": [ - "4001?" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157C" - }, - { - "emuIRN": "156290", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/156290", - "other_numbers": [ - "4002" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157D" - }, - { - "emuIRN": "99398", - "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", - "provenience": [ - "Pennsylvania", - "Pittsburgh" - ], - "culture": [ - "American" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Charles Este, Jr., 1899" - ], - "object_name": [ - "Puzzle", - "Trick" - ], - "url": "http://www.penn.museum/collections/object/99398", - "curatorial_section": "Historic", - "object_number": "19783" - }, - { - "emuIRN": "130464", - "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/130464", - "native_name": [ - "Cartes a Jouer" - ], - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "7594" - }, - { - "emuIRN": "160242", - "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/160242", - "date_made_early": "1800", - "date_made": "1800-1899", - "date_made_late": "1899", - "curatorial_section": "Historic", - "object_number": "7595" - }, - { - "emuIRN": "157104", - "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1890" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "url": "http://www.penn.museum/collections/object/157104", - "date_made_early": "1800", - "date_made": "19th century", - "date_made_late": "1890", - "curatorial_section": "Historic", - "object_number": "7629" - }, - { - "emuIRN": "157105", - "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "C. L. Wust" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of J. D. Sergeant, 1890" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/157105", - "curatorial_section": "Historic", - "object_number": "7630" - }, - { - "emuIRN": "98559", - "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "B. Dondorf" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of W. Yorke Stevenson, 1891" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/98559", - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "other_numbers": [ - "27" - ], - "curatorial_section": "Historic", - "object_number": "7712" - }, - { - "emuIRN": "248509", - "description": "Card dominoes in box.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Card Game", - "Dominoe" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/248509", - "curatorial_section": "Historic", - "object_number": "8813" - }, - { - "emuIRN": "137944", - "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/137944", - "date_made_early": "1866", - "date_made": "c. 1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "9011" - }, - { - "emuIRN": "194220", - "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "creator": [ - "Watilliaux" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/194220", - "date_made_early": "1878", - "date_made": "1878", - "date_made_late": "1878", - "curatorial_section": "Historic", - "object_number": "9018" - }, - { - "emuIRN": "205296", - "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", - "technique": [ - "Printed" - ], - "provenience": [ - "Mexico (Central America)", - "Puebla (Mexican State)" - ], - "culture": [ - "Spanish" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of the US National Museum, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/205296", - "date_made_early": "1873", - "date_made": "1873-1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15360" - }, - { - "emuIRN": "21030", - "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Fortune Telling Cards" - ], - "url": "http://www.penn.museum/collections/object/21030", - "date_made_early": "1865", - "date_made": "pre 1890", - "date_made_late": "1890", - "other_numbers": [ - "43" - ], - "curatorial_section": "Historic", - "object_number": "15513" - }, - { - "emuIRN": "46932", - "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", - "provenience": [ - "Italy", - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/46932", - "date_made_early": "1880", - "date_made": "1880-1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15528" - }, - { - "emuIRN": "220035", - "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/220035", - "date_made_early": "29 Nov 1890", - "date_made": "11/29/1890", - "date_made_late": "29 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15529" - }, - { - "emuIRN": "220036", - "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/220036", - "date_made_early": "27 Oct 1890", - "date_made": "10/27/1890", - "date_made_late": "27 Oct 1890", - "other_numbers": [ - "42" - ], - "curatorial_section": "Historic", - "object_number": "15530" - }, - { - "emuIRN": "289473", - "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/289473", - "date_made_early": "17 Jan 1887", - "date_made": "1/17/1887", - "date_made_late": "17 Jan 1887", - "curatorial_section": "Historic", - "object_number": "15532" - }, - { - "emuIRN": "114394", - "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/114394", - "date_made_early": "1867", - "date_made": " pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15533" - }, - { - "emuIRN": "82994", - "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/82994", - "date_made_early": "17 Jun 1890", - "date_made": "6/17/1890", - "date_made_late": "17 Jun 1890", - "other_numbers": [ - "13" - ], - "curatorial_section": "Historic", - "object_number": "15534" - }, - { - "emuIRN": "233242", - "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/233242", - "date_made_early": "13 Mar 1891", - "date_made": "3/13/1891", - "date_made_late": "13 Mar 1891", - "other_numbers": [ - "5" - ], - "curatorial_section": "Historic", - "object_number": "15536" - }, - { - "emuIRN": "237987", - "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/237987", - "date_made_early": "13 Mar 1891", - "date_made": "pre 1892", - "date_made_late": "13 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15537" - }, - { - "emuIRN": "264110", - "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/264110", - "date_made_early": "1867", - "date_made": "pre 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15538" - }, - { - "emuIRN": "36188", - "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/36188", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15540" - }, - { - "emuIRN": "154504", - "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/154504", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15541" - }, - { - "emuIRN": "203963", - "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/203963", - "date_made_early": "27 Aug 1891", - "date_made": "8/27/1891", - "date_made_late": "27 Aug 1891", - "curatorial_section": "Historic", - "object_number": "15543" - }, - { - "emuIRN": "241994", - "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/241994", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15544" - }, - { - "emuIRN": "243680", - "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/243680", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15545" - }, - { - "emuIRN": "87145", - "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/87145", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15546" - }, - { - "emuIRN": "59271", - "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/59271", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15547" - }, - { - "emuIRN": "336096", - "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/336096", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15548" - }, - { - "emuIRN": "203973", - "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/203973", - "date_made_early": "09 Apr 1888", - "date_made": "4/9/1888", - "date_made_late": "09 Apr 1888", - "curatorial_section": "Historic", - "object_number": "15550" - }, - { - "emuIRN": "238541", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/238541", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15552" - }, - { - "emuIRN": "131933", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/131933", - "date_made_early": "16 Jun 1891", - "date_made": "6/16/1891", - "date_made_late": "16 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15553" - }, - { - "emuIRN": "158923", - "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/158923", - "date_made_early": "01 Jun 1891", - "date_made": "6/1/1891", - "date_made_late": "01 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15554" - }, - { - "emuIRN": "103187", - "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/103187", - "native_name": [ - "Tarocchino" - ], - "date_made_early": "03 Feb 1891", - "date_made": "2/3/1891", - "date_made_late": "03 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15555" - }, - { - "emuIRN": "178709", - "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", - "provenience": [ - "Italy", - "Povoletto-Udine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "F. L. Muccioli" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/178709", - "date_made_early": "09 May 1890", - "date_made": "5/9/1890", - "date_made_late": "09 May 1890", - "curatorial_section": "Historic", - "object_number": "15556" - }, - { - "emuIRN": "277112", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/277112", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15557" - }, - { - "emuIRN": "25552", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/25552", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15558" - }, - { - "emuIRN": "325482", - "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/325482", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1895", - "curatorial_section": "Historic", - "object_number": "15559" - }, - { - "emuIRN": "325483", - "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/325483", - "date_made_early": "12 Mar 2091", - "date_made": "3/12/91", - "date_made_late": "12 Mar 2091", - "curatorial_section": "Historic", - "object_number": "15560" - }, - { - "emuIRN": "48114", - "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/48114", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "22 Jun 1891", - "date_made": "6/22/1891", - "date_made_late": "22 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15561" - }, - { - "emuIRN": "167380", - "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/167380", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15562" - }, - { - "emuIRN": "321272", - "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Vincenzo Russo" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack", - "Neopolitan Pack" - ], - "url": "http://www.penn.museum/collections/object/321272", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "11 Feb 1891", - "date_made": "2/11/1891", - "date_made_late": "11 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15563" - }, - { - "emuIRN": "279915", - "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Luigi Pignalosa" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/279915", - "date_made_early": "14 Feb 1891", - "date_made": "2/14/1891", - "date_made_late": "14 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15564" - }, - { - "emuIRN": "157272", - "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/157272", - "date_made_early": "04 Oct 1888", - "date_made": "10/4/1888", - "date_made_late": "04 Oct 1888", - "curatorial_section": "Historic", - "object_number": "15566" - }, - { - "emuIRN": "88522", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/88522", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15567" - }, - { - "emuIRN": "177453", - "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/177453", - "date_made_early": "24 Mar 1891", - "date_made": "3/24/1891", - "date_made_late": "24 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15568" - }, - { - "emuIRN": "322855", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322855", - "date_made_early": "25 Nov 1890", - "date_made": "11/25/1890", - "date_made_late": "25 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15569" - }, - { - "emuIRN": "322856", - "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322856", - "date_made_early": "27 Jul 2091", - "date_made": "7/27/91", - "date_made_late": "27 Jul 2091", - "curatorial_section": "Historic", - "object_number": "15570" - }, - { - "emuIRN": "289232", - "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/289232", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15571" - }, - { - "emuIRN": "71704", - "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "L. Bartolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/71704", - "date_made_early": "02 Jul 1892", - "date_made": "7/2/1892", - "date_made_late": "02 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15572" - }, - { - "emuIRN": "341571", - "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Silvertrini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/341571", - "date_made_early": "01 Jul 1892", - "date_made": "7/1/1892", - "date_made_late": "01 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15573" - }, - { - "emuIRN": "231215", - "description": "Playing card deck - 44 cards", - "provenience": [ - "Italy", - "Bergamo" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Masenghini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Milanese Deck" - ], - "url": "http://www.penn.museum/collections/object/231215", - "curatorial_section": "Historic", - "object_number": "15575" - }, - { - "emuIRN": "290651", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", - "provenience": [ - "Italy", - "Trento" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giac. Bertoldi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/290651", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15577" - }, - { - "emuIRN": "116249", - "description": "Playing card deck - 40 cards, printed back with pink abstract designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/116249", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15578" - }, - { - "emuIRN": "76331", - "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/76331", - "date_made_early": "1867", - "date_made": "c.1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15579" - }, - { - "emuIRN": "76332", - "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/76332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15580" - }, - { - "emuIRN": "189908", - "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/189908", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15583" - }, - { - "emuIRN": "275719", - "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/275719", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15584" - }, - { - "emuIRN": "51584", - "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/51584", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15585" - }, - { - "emuIRN": "56004", - "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Crispolani" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/56004", - "date_made_early": "1850", - "date_made": "circa 1860", - "date_made_late": "1870", - "curatorial_section": "Historic", - "object_number": "15586" - }, - { - "emuIRN": "124979", - "description": "Playing card deck - Tarocchi/Tarot - 78 cards", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/124979", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15587" - }, - { - "emuIRN": "212458", - "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "url": "http://www.penn.museum/collections/object/212458", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15588" - }, - { - "emuIRN": "309331", - "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "G. C. Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309331", - "date_made_early": "30 Mar 1891", - "date_made": "3/30/1891", - "date_made_late": "30 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15589" - }, - { - "emuIRN": "309332", - "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15590" - }, - { - "emuIRN": "86979", - "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/86979", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15592" - }, - { - "emuIRN": "5817", - "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5817", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15594" - }, - { - "emuIRN": "170983", - "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Baby", - "Angel" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/170983", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15595" - }, - { - "emuIRN": "300071", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Tambourine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/300071", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15596" - }, - { - "emuIRN": "236603", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236603", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15597" - }, - { - "emuIRN": "141064", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141064", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15598" - }, - { - "emuIRN": "126294", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", - "provenience": [ - "Italy", - "Treviso" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Francesca Rino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/126294", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15599" - }, - { - "emuIRN": "309333", - "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", - "provenience": [ - "Italy", - "Parma (Italy)" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Faelli Carlo" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309333", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15600" - }, - { - "emuIRN": "261187", - "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Cassini Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Cucu" - ], - "url": "http://www.penn.museum/collections/object/261187", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15601" - }, - { - "emuIRN": "5818", - "description": "40 cards with wrapper. Printed back: green and blue plaid", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5818", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15604" - }, - { - "emuIRN": "236604", - "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236604", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15607" - }, - { - "emuIRN": "141065", - "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141065", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15608" - }, - { - "emuIRN": "319728", - "description": "Playing card deck - 40 cards", - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/319728", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15621" - }, - { - "emuIRN": "119150", - "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Florentine Pack" - ], - "url": "http://www.penn.museum/collections/object/119150", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15622" - }, - { - "emuIRN": "92457", - "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/92457", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15623" - }, - { - "emuIRN": "406753", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406753", - "curatorial_section": "Historic", - "object_number": "19124.15" - }, - { - "emuIRN": "406754", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406754", - "curatorial_section": "Historic", - "object_number": "19124.16" - }, - { - "emuIRN": "406755", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406755", - "curatorial_section": "Historic", - "object_number": "19124.17" - }, - { - "emuIRN": "406756", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406756", - "curatorial_section": "Historic", - "object_number": "19124.18" - }, - { - "emuIRN": "406757", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406757", - "curatorial_section": "Historic", - "object_number": "19124.19" - }, - { - "emuIRN": "406758", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406758", - "curatorial_section": "Historic", - "object_number": "19124.20" - }, - { - "emuIRN": "406759", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406759", - "curatorial_section": "Historic", - "object_number": "19124.21" - }, - { - "emuIRN": "406760", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406760", - "curatorial_section": "Historic", - "object_number": "19124.22" - }, - { - "emuIRN": "406761", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406761", - "curatorial_section": "Historic", - "object_number": "19124.23" - }, - { - "emuIRN": "406762", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406762", - "curatorial_section": "Historic", - "object_number": "19124.24" - }, - { - "emuIRN": "406763", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406763", - "curatorial_section": "Historic", - "object_number": "19124.25" - }, - { - "emuIRN": "406764", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406764", - "curatorial_section": "Historic", - "object_number": "19124.26" - }, - { - "emuIRN": "330556", - "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", - "provenience": [ - "Europe (uncertain)" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/330556", - "curatorial_section": "Historic", - "object_number": "29-191-128" - }, - { - "emuIRN": "321909", - "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/321909", - "curatorial_section": "Historic", - "object_number": "29-191-129" - }, - { - "emuIRN": "127367", - "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/127367", - "curatorial_section": "Historic", - "object_number": "29-191-227" - }, - { - "emuIRN": "203363", - "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", - "technique": [ - "Painted" - ], - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Paint", - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/203363", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15792" - }, - { - "emuIRN": "185526", - "description": "Red and gold sphere with small metall loop on 1 end", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of H. C. Thomson, 1894" - ], - "object_name": [ - "Whistling Top" - ], - "url": "http://www.penn.museum/collections/object/185526", - "curatorial_section": "Historic", - "object_number": "17817" - }, - { - "emuIRN": "59206", - "description": "Wood ball with metal spike. Cord for spinning", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top", - "Cord" - ], - "url": "http://www.penn.museum/collections/object/59206", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19214" - }, - { - "emuIRN": "186142", - "description": "Turned wood, bell-shaped with metal spike.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/186142", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19216" - }, - { - "emuIRN": "234646", - "description": "Toy rolling disc - wooden.", - "provenience": [ - "Italy" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Henry H. Giglioli, 1896" - ], - "object_name": [ - "Spinning Toy (uncertain)", - "Rolling Disc" - ], - "url": "http://www.penn.museum/collections/object/234646", - "curatorial_section": "Historic", - "object_number": "19217" - }, - { - "emuIRN": "134935", - "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal", - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1897" - ], - "object_name": [ - "Pinwheel" - ], - "url": "http://www.penn.museum/collections/object/134935", - "curatorial_section": "Historic", - "object_number": "20037" - }, - { - "emuIRN": "340545", - "description": "Turned wood ball with metal peg. Smaller version of 19214.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/340545", - "curatorial_section": "Historic", - "object_number": "19215A" - }, - { - "emuIRN": "273066", - "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Top Die", - "Teetotum" - ], - "url": "http://www.penn.museum/collections/object/273066", - "curatorial_section": "Historic", - "object_number": "71-18-6" - }, - { - "emuIRN": "146612", - "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", - "provenience": [ - "Japan" - ], - "material": [ - "Brass", - "Tin" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/146612", - "curatorial_section": "Historic", - "object_number": "71-18-11" - }, - { - "emuIRN": "264736", - "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top" - ], - "url": "http://www.penn.museum/collections/object/264736", - "curatorial_section": "Historic", - "object_number": "71-18-41" - }, - { - "emuIRN": "128464", - "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", - "provenience": [ - "West Germany" - ], - "culture": [ - "German" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/128464", - "curatorial_section": "Historic", - "object_number": "71-18-45" - }, - { - "emuIRN": "102950", - "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top", - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/102950", - "curatorial_section": "Historic", - "object_number": "71-18-50" - }, - { - "emuIRN": "215073", - "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Gyroscope" - ], - "url": "http://www.penn.museum/collections/object/215073", - "curatorial_section": "Historic", - "object_number": "71-18-53" - }, - { - "emuIRN": "281519", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/281519", - "curatorial_section": "Historic", - "object_number": "71-18-10A" - }, - { - "emuIRN": "132216", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/132216", - "curatorial_section": "Historic", - "object_number": "71-18-10B" - }, - { - "emuIRN": "222994", - "description": "Turned wooden spinnters. A-D have stems.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/222994", - "curatorial_section": "Historic", - "object_number": "71-18-17A" - }, - { - "emuIRN": "293378", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/293378", - "curatorial_section": "Historic", - "object_number": "71-18-17B" - }, - { - "emuIRN": "244262", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/244262", - "curatorial_section": "Historic", - "object_number": "71-18-17C" - }, - { - "emuIRN": "97422", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/97422", - "curatorial_section": "Historic", - "object_number": "71-18-17D" - }, - { - "emuIRN": "283240", - "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/283240", - "curatorial_section": "Historic", - "object_number": "71-18-17E" - }, - { - "emuIRN": "199531", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/199531", - "curatorial_section": "Historic", - "object_number": "71-18-20A" - }, - { - "emuIRN": "315942", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/315942", - "curatorial_section": "Historic", - "object_number": "71-18-20B" - }, - { - "emuIRN": "154811", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/154811", - "curatorial_section": "Historic", - "object_number": "71-18-20C" - }, - { - "emuIRN": "119329", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/119329", - "curatorial_section": "Historic", - "object_number": "71-18-20D" - }, - { - "emuIRN": "138169", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/138169", - "curatorial_section": "Historic", - "object_number": "71-18-20E" - }, - { - "emuIRN": "168699", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/168699", - "curatorial_section": "Historic", - "object_number": "71-18-20F" - }, - { - "emuIRN": "165852", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/165852", - "curatorial_section": "Historic", - "object_number": "71-18-20G" - }, - { - "emuIRN": "307682", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/307682", - "curatorial_section": "Historic", - "object_number": "71-18-20H" - }, - { - "emuIRN": "336448", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336448", - "curatorial_section": "Historic", - "object_number": "71-18-32A" - }, - { - "emuIRN": "181753", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/181753", - "curatorial_section": "Historic", - "object_number": "71-18-32B" - }, - { - "emuIRN": "277851", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/277851", - "curatorial_section": "Historic", - "object_number": "71-18-32C" - }, - { - "emuIRN": "44213", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/44213", - "curatorial_section": "Historic", - "object_number": "71-18-32D" - }, - { - "emuIRN": "343371", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/343371", - "curatorial_section": "Historic", - "object_number": "71-18-32E" - }, - { - "emuIRN": "405192", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "period": [ - "Modern" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/405192", - "curatorial_section": "Historic", - "object_number": "71-18-32F" - }, - { - "emuIRN": "174014", - "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinning Toy", - "Supported Top", - "Whistle" - ], - "url": "http://www.penn.museum/collections/object/174014", - "curatorial_section": "Historic", - "object_number": "71-18-72" - }, - { - "emuIRN": "54377", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/54377", - "curatorial_section": "Historic", - "object_number": "71-18-71A" - }, - { - "emuIRN": "336914", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336914", - "curatorial_section": "Historic", - "object_number": "71-18-71B" - }, - { - "emuIRN": "40527", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel", - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/40527", - "curatorial_section": "Historic", - "object_number": "71-18-71C" - }, - { - "emuIRN": "81633", - "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "iconography": [ - "Dog", - "Flag" - ], - "material": [ - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81633", - "other_numbers": [ - "533107" - ], - "curatorial_section": "Historic", - "object_number": "73-1-9" - }, - { - "emuIRN": "315995", - "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/315995", - "curatorial_section": "Historic", - "object_number": "73-1-11" - }, - { - "emuIRN": "81890", - "description": "Bi-colored light plastic top / yo-yo", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81890", - "curatorial_section": "Historic", - "object_number": "73-1-12" - }, - { - "emuIRN": "158974", - "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/158974", - "curatorial_section": "Historic", - "object_number": "73-1-21" - }, - { - "emuIRN": "270492", - "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/270492", - "curatorial_section": "Historic", - "object_number": "73-1-15B" - }, - { - "emuIRN": "122561", - "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "material": [ - "Plastic", - "Nylon" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/122561", - "curatorial_section": "Historic", - "object_number": "75-13-1" - }, - { - "emuIRN": "169135", - "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", - "provenience": [ - "Wisconsin", - "Milwaukee" - ], - "culture": [ - "American" - ], - "creator": [ - "Jak Pak Inc." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/169135", - "curatorial_section": "Historic", - "object_number": "75-13-18" - }, - { - "emuIRN": "265153", - "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", - "provenience": [ - "New York", - "Brooklyn" - ], - "culture": [ - "American" - ], - "creator": [ - "American Magnetop Corp." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/265153", - "curatorial_section": "Historic", - "object_number": "75-13-19" - }, - { - "emuIRN": "258185", - "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Giant Plastics Corp." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/258185", - "curatorial_section": "Historic", - "object_number": "75-13-21" - }, - { - "emuIRN": "112910", - "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", - "provenience": [ - "England" - ], - "culture": [ - "English" - ], - "creator": [ - "Christie & Jay, Ltd" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/112910", - "curatorial_section": "Historic", - "object_number": "75-13-30" - }, - { - "emuIRN": "206818", - "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", - "provenience": [ - "Tennessee", - "Nashville" - ], - "culture": [ - "American" - ], - "creator": [ - "Kusan, Inc" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Yo-Yo", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/206818", - "curatorial_section": "Historic", - "object_number": "75-13-32" - }, - { - "emuIRN": "320134", - "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", - "provenience": [ - "New York", - "Brooklyn" - ], - "creator": [ - "Shimmel" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/320134", - "curatorial_section": "Historic", - "object_number": "75-13-33" - }, - { - "emuIRN": "13411", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/13411", - "curatorial_section": "Historic", - "object_number": "75-13-10A" - }, - { - "emuIRN": "2151", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/2151", - "curatorial_section": "Historic", - "object_number": "75-13-10B" - }, - { - "emuIRN": "227620", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/227620", - "curatorial_section": "Historic", - "object_number": "75-13-10C" - }, - { - "emuIRN": "205966", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/205966", - "curatorial_section": "Historic", - "object_number": "75-13-29A" - }, - { - "emuIRN": "281691", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/281691", - "curatorial_section": "Historic", - "object_number": "75-13-29B" - }, - { - "emuIRN": "99171", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/99171", - "curatorial_section": "Historic", - "object_number": "75-13-29C" - }, - { - "emuIRN": "101034", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/101034", - "curatorial_section": "Historic", - "object_number": "75-13-29D" - }, - { - "emuIRN": "308170", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/308170", - "curatorial_section": "Historic", - "object_number": "75-13-29E" - }, - { - "emuIRN": "212263", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/212263", - "curatorial_section": "Historic", - "object_number": "75-13-29F" - }, - { - "emuIRN": "171295", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/171295", - "curatorial_section": "Historic", - "object_number": "75-13-29G" - }, - { - "emuIRN": "252428", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/252428", - "curatorial_section": "Historic", - "object_number": "75-13-29H" - }, - { - "emuIRN": "33474", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/33474", - "curatorial_section": "Historic", - "object_number": "75-13-29I" - }, - { - "emuIRN": "64988", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/64988", - "curatorial_section": "Historic", - "object_number": "75-13-29J" - }, - { - "emuIRN": "149403", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/149403", - "curatorial_section": "Historic", - "object_number": "75-13-29K" - }, - { - "emuIRN": "192238", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/192238", - "curatorial_section": "Historic", - "object_number": "75-13-29L" - }, - { - "emuIRN": "87050", - "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/87050", - "curatorial_section": "Historic", - "object_number": "75-13-5A" - }, - { - "emuIRN": "241334", - "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", - "provenience": [ - "Hawthorne" - ], - "culture": [ - "American" - ], - "creator": [ - "Mattel, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/241334", - "curatorial_section": "Historic", - "object_number": "75-13-9D" - }, - { - "emuIRN": "77859", - "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/77859", - "curatorial_section": "Historic", - "object_number": "71-18-24" - }, - { - "emuIRN": "285019", - "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top", - "Musical Top" - ], - "url": "http://www.penn.museum/collections/object/285019", - "curatorial_section": "Historic", - "object_number": "71-18-27" - }, - { - "emuIRN": "37984", - "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/37984", - "curatorial_section": "Historic", - "object_number": "71-18-38" - }, - { - "emuIRN": "239276", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/239276", - "curatorial_section": "Historic", - "object_number": "71-18-28A" - }, - { - "emuIRN": "32312", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/32312", - "curatorial_section": "Historic", - "object_number": "71-18-28B" - }, - { - "emuIRN": "65727", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/65727", - "curatorial_section": "Historic", - "object_number": "71-18-28C" - }, - { - "emuIRN": "274339", - "description": "Wire puzzle with boot and cap.", - "provenience": [ - "Europe", - "France (uncertain)" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Wire Puzzle" - ], - "url": "http://www.penn.museum/collections/object/274339", - "curatorial_section": "Historic", - "object_number": "8812" - }, - { - "emuIRN": "159716", - "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Selchow & Richter" - ], - "material": [ - "Cardboard" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/159716", - "date_made_early": "1880", - "date_made": "9/7/1880", - "date_made_late": "1880", - "curatorial_section": "Historic", - "object_number": "15496" - }, - { - "emuIRN": "18643", - "description": "12 lithographed cards with pictures of children's games. Fused to 16555", - "technique": [ - "Lithograph" - ], - "provenience": [ - "France", - "Paris (France)" - ], - "iconography": [ - "Games" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Cards" - ], - "url": "http://www.penn.museum/collections/object/18643", - "curatorial_section": "Historic", - "object_number": "16231" - }, - { - "emuIRN": "34693", - "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Metal", - "Glass", - "Wood" - ], - "accession_credit_line": [ - "Gift of Mrs. John Harrison, 1894" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/34693", - "date_made_early": "1869", - "date_made": "c. 1894", - "date_made_late": "1894", - "curatorial_section": "Historic", - "object_number": "16401" - }, - { - "emuIRN": "93791", - "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", - "provenience": [ - "England", - "London" - ], - "culture": [ - "British" - ], - "accession_credit_line": [ - "Gift of Henry Jones, 1893" - ], - "object_name": [ - "Card Game", - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93791", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "16555" - }, - { - "emuIRN": "117728", - "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "creator": [ - "Donaldson Brothers" - ], - "material": [ - "Paper" - ], - "object_name": [ - "Puzzle", - "Advertisement" - ], - "url": "http://www.penn.museum/collections/object/117728", - "curatorial_section": "Historic", - "object_number": "18578" - }, - { - "emuIRN": "303943", - "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", - "provenience": [ - "Pennsylvania", - "Bucks County" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Glass", - "Metal", - "String", - "Cork" - ], - "accession_credit_line": [ - "Gift of Col. Henry D. Paxson, 1897" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/303943", - "curatorial_section": "Historic", - "object_number": "20067" - }, - { - "emuIRN": "287388", - "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Dr. Max Uhle, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/287388", - "curatorial_section": "Historic", - "object_number": "21082" - }, - { - "emuIRN": "140578", - "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/140578", - "curatorial_section": "Historic", - "object_number": "21458" - }, - { - "emuIRN": "120293", - "description": "Wood Board with instructions. Metal Arm.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120293", - "curatorial_section": "Historic", - "object_number": "21460" - }, - { - "emuIRN": "25280", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/25280", - "curatorial_section": "Historic", - "object_number": "21594A" - }, - { - "emuIRN": "406863", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/406863", - "curatorial_section": "Historic", - "object_number": "21594B" - }, - { - "emuIRN": "93703", - "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "The American Game and Puzzle Company" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93703", - "curatorial_section": "Historic", - "object_number": "29-191-146" - }, - { - "emuIRN": "64758", - "description": "Yamato Block Puzzle - 6 pieces of wood", - "provenience": [ - "Japan" - ], - "culture": [ - "Japanese" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64758", - "curatorial_section": "Historic", - "object_number": "29-191-159" - }, - { - "emuIRN": "64759", - "description": "See Dar Wonderful - 9 pieces of wood", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64759", - "curatorial_section": "Historic", - "object_number": "29-191-160" - }, - { - "emuIRN": "30391", - "description": "12 pieces", - "provenience": [ - "New York", - "New York City" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle", - "Reproduction (uncertain)" - ], - "url": "http://www.penn.museum/collections/object/30391", - "curatorial_section": "Historic", - "object_number": "29-191-161" - }, - { - "emuIRN": "22499", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/22499", - "other_numbers": [ - "4001" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157B" - }, - { - "emuIRN": "120252", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120252", - "other_numbers": [ - "4001?" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157C" - }, - { - "emuIRN": "156290", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/156290", - "other_numbers": [ - "4002" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157D" - }, - { - "emuIRN": "99398", - "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", - "provenience": [ - "Pennsylvania", - "Pittsburgh" - ], - "culture": [ - "American" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Charles Este, Jr., 1899" - ], - "object_name": [ - "Puzzle", - "Trick" - ], - "url": "http://www.penn.museum/collections/object/99398", - "curatorial_section": "Historic", - "object_number": "19783" - }, - { - "emuIRN": "130464", - "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/130464", - "native_name": [ - "Cartes a Jouer" - ], - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "7594" - }, - { - "emuIRN": "160242", - "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/160242", - "date_made_early": "1800", - "date_made": "1800-1899", - "date_made_late": "1899", - "curatorial_section": "Historic", - "object_number": "7595" - }, - { - "emuIRN": "157104", - "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1890" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "url": "http://www.penn.museum/collections/object/157104", - "date_made_early": "1800", - "date_made": "19th century", - "date_made_late": "1890", - "curatorial_section": "Historic", - "object_number": "7629" - }, - { - "emuIRN": "157105", - "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "C. L. Wust" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of J. D. Sergeant, 1890" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/157105", - "curatorial_section": "Historic", - "object_number": "7630" - }, - { - "emuIRN": "98559", - "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "B. Dondorf" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of W. Yorke Stevenson, 1891" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/98559", - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "other_numbers": [ - "27" - ], - "curatorial_section": "Historic", - "object_number": "7712" - }, - { - "emuIRN": "248509", - "description": "Card dominoes in box.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Card Game", - "Dominoe" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/248509", - "curatorial_section": "Historic", - "object_number": "8813" - }, - { - "emuIRN": "137944", - "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/137944", - "date_made_early": "1866", - "date_made": "c. 1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "9011" - }, - { - "emuIRN": "194220", - "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "creator": [ - "Watilliaux" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/194220", - "date_made_early": "1878", - "date_made": "1878", - "date_made_late": "1878", - "curatorial_section": "Historic", - "object_number": "9018" - }, - { - "emuIRN": "205296", - "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", - "technique": [ - "Printed" - ], - "provenience": [ - "Mexico (Central America)", - "Puebla (Mexican State)" - ], - "culture": [ - "Spanish" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of the US National Museum, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/205296", - "date_made_early": "1873", - "date_made": "1873-1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15360" - }, - { - "emuIRN": "21030", - "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Fortune Telling Cards" - ], - "url": "http://www.penn.museum/collections/object/21030", - "date_made_early": "1865", - "date_made": "pre 1890", - "date_made_late": "1890", - "other_numbers": [ - "43" - ], - "curatorial_section": "Historic", - "object_number": "15513" - }, - { - "emuIRN": "46932", - "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", - "provenience": [ - "Italy", - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/46932", - "date_made_early": "1880", - "date_made": "1880-1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15528" - }, - { - "emuIRN": "220035", - "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/220035", - "date_made_early": "29 Nov 1890", - "date_made": "11/29/1890", - "date_made_late": "29 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15529" - }, - { - "emuIRN": "220036", - "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/220036", - "date_made_early": "27 Oct 1890", - "date_made": "10/27/1890", - "date_made_late": "27 Oct 1890", - "other_numbers": [ - "42" - ], - "curatorial_section": "Historic", - "object_number": "15530" - }, - { - "emuIRN": "289473", - "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/289473", - "date_made_early": "17 Jan 1887", - "date_made": "1/17/1887", - "date_made_late": "17 Jan 1887", - "curatorial_section": "Historic", - "object_number": "15532" - }, - { - "emuIRN": "114394", - "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/114394", - "date_made_early": "1867", - "date_made": " pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15533" - }, - { - "emuIRN": "82994", - "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/82994", - "date_made_early": "17 Jun 1890", - "date_made": "6/17/1890", - "date_made_late": "17 Jun 1890", - "other_numbers": [ - "13" - ], - "curatorial_section": "Historic", - "object_number": "15534" - }, - { - "emuIRN": "233242", - "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/233242", - "date_made_early": "13 Mar 1891", - "date_made": "3/13/1891", - "date_made_late": "13 Mar 1891", - "other_numbers": [ - "5" - ], - "curatorial_section": "Historic", - "object_number": "15536" - }, - { - "emuIRN": "237987", - "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/237987", - "date_made_early": "13 Mar 1891", - "date_made": "pre 1892", - "date_made_late": "13 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15537" - }, - { - "emuIRN": "264110", - "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/264110", - "date_made_early": "1867", - "date_made": "pre 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15538" - }, - { - "emuIRN": "36188", - "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/36188", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15540" - }, - { - "emuIRN": "154504", - "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/154504", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15541" - }, - { - "emuIRN": "203963", - "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/203963", - "date_made_early": "27 Aug 1891", - "date_made": "8/27/1891", - "date_made_late": "27 Aug 1891", - "curatorial_section": "Historic", - "object_number": "15543" - }, - { - "emuIRN": "241994", - "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/241994", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15544" - }, - { - "emuIRN": "243680", - "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/243680", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15545" - }, - { - "emuIRN": "87145", - "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/87145", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15546" - }, - { - "emuIRN": "59271", - "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/59271", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15547" - }, - { - "emuIRN": "336096", - "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/336096", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15548" - }, - { - "emuIRN": "203973", - "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/203973", - "date_made_early": "09 Apr 1888", - "date_made": "4/9/1888", - "date_made_late": "09 Apr 1888", - "curatorial_section": "Historic", - "object_number": "15550" - }, - { - "emuIRN": "238541", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/238541", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15552" - }, - { - "emuIRN": "131933", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/131933", - "date_made_early": "16 Jun 1891", - "date_made": "6/16/1891", - "date_made_late": "16 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15553" - }, - { - "emuIRN": "158923", - "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/158923", - "date_made_early": "01 Jun 1891", - "date_made": "6/1/1891", - "date_made_late": "01 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15554" - }, - { - "emuIRN": "103187", - "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/103187", - "native_name": [ - "Tarocchino" - ], - "date_made_early": "03 Feb 1891", - "date_made": "2/3/1891", - "date_made_late": "03 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15555" - }, - { - "emuIRN": "178709", - "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", - "provenience": [ - "Italy", - "Povoletto-Udine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "F. L. Muccioli" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/178709", - "date_made_early": "09 May 1890", - "date_made": "5/9/1890", - "date_made_late": "09 May 1890", - "curatorial_section": "Historic", - "object_number": "15556" - }, - { - "emuIRN": "277112", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/277112", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15557" - }, - { - "emuIRN": "25552", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/25552", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15558" - }, - { - "emuIRN": "325482", - "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/325482", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1895", - "curatorial_section": "Historic", - "object_number": "15559" - }, - { - "emuIRN": "325483", - "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/325483", - "date_made_early": "12 Mar 2091", - "date_made": "3/12/91", - "date_made_late": "12 Mar 2091", - "curatorial_section": "Historic", - "object_number": "15560" - }, - { - "emuIRN": "48114", - "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/48114", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "22 Jun 1891", - "date_made": "6/22/1891", - "date_made_late": "22 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15561" - }, - { - "emuIRN": "167380", - "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/167380", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15562" - }, - { - "emuIRN": "321272", - "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Vincenzo Russo" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack", - "Neopolitan Pack" - ], - "url": "http://www.penn.museum/collections/object/321272", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "11 Feb 1891", - "date_made": "2/11/1891", - "date_made_late": "11 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15563" - }, - { - "emuIRN": "279915", - "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Luigi Pignalosa" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/279915", - "date_made_early": "14 Feb 1891", - "date_made": "2/14/1891", - "date_made_late": "14 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15564" - }, - { - "emuIRN": "157272", - "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/157272", - "date_made_early": "04 Oct 1888", - "date_made": "10/4/1888", - "date_made_late": "04 Oct 1888", - "curatorial_section": "Historic", - "object_number": "15566" - }, - { - "emuIRN": "88522", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/88522", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15567" - }, - { - "emuIRN": "177453", - "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/177453", - "date_made_early": "24 Mar 1891", - "date_made": "3/24/1891", - "date_made_late": "24 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15568" - }, - { - "emuIRN": "322855", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322855", - "date_made_early": "25 Nov 1890", - "date_made": "11/25/1890", - "date_made_late": "25 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15569" - }, - { - "emuIRN": "322856", - "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322856", - "date_made_early": "27 Jul 2091", - "date_made": "7/27/91", - "date_made_late": "27 Jul 2091", - "curatorial_section": "Historic", - "object_number": "15570" - }, - { - "emuIRN": "289232", - "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/289232", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15571" - }, - { - "emuIRN": "71704", - "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "L. Bartolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/71704", - "date_made_early": "02 Jul 1892", - "date_made": "7/2/1892", - "date_made_late": "02 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15572" - }, - { - "emuIRN": "341571", - "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Silvertrini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/341571", - "date_made_early": "01 Jul 1892", - "date_made": "7/1/1892", - "date_made_late": "01 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15573" - }, - { - "emuIRN": "231215", - "description": "Playing card deck - 44 cards", - "provenience": [ - "Italy", - "Bergamo" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Masenghini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Milanese Deck" - ], - "url": "http://www.penn.museum/collections/object/231215", - "curatorial_section": "Historic", - "object_number": "15575" - }, - { - "emuIRN": "290651", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", - "provenience": [ - "Italy", - "Trento" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giac. Bertoldi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/290651", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15577" - }, - { - "emuIRN": "116249", - "description": "Playing card deck - 40 cards, printed back with pink abstract designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/116249", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15578" - }, - { - "emuIRN": "76331", - "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/76331", - "date_made_early": "1867", - "date_made": "c.1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15579" - }, - { - "emuIRN": "76332", - "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/76332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15580" - }, - { - "emuIRN": "189908", - "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/189908", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15583" - }, - { - "emuIRN": "275719", - "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/275719", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15584" - }, - { - "emuIRN": "51584", - "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/51584", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15585" - }, - { - "emuIRN": "56004", - "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Crispolani" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/56004", - "date_made_early": "1850", - "date_made": "circa 1860", - "date_made_late": "1870", - "curatorial_section": "Historic", - "object_number": "15586" - }, - { - "emuIRN": "124979", - "description": "Playing card deck - Tarocchi/Tarot - 78 cards", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/124979", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15587" - }, - { - "emuIRN": "212458", - "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "url": "http://www.penn.museum/collections/object/212458", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15588" - }, - { - "emuIRN": "309331", - "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "G. C. Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309331", - "date_made_early": "30 Mar 1891", - "date_made": "3/30/1891", - "date_made_late": "30 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15589" - }, - { - "emuIRN": "309332", - "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15590" - }, - { - "emuIRN": "86979", - "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/86979", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15592" - }, - { - "emuIRN": "5817", - "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5817", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15594" - }, - { - "emuIRN": "170983", - "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Baby", - "Angel" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/170983", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15595" - }, - { - "emuIRN": "300071", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Tambourine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/300071", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15596" - }, - { - "emuIRN": "236603", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236603", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15597" - }, - { - "emuIRN": "141064", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141064", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15598" - }, - { - "emuIRN": "126294", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", - "provenience": [ - "Italy", - "Treviso" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Francesca Rino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/126294", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15599" - }, - { - "emuIRN": "309333", - "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", - "provenience": [ - "Italy", - "Parma (Italy)" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Faelli Carlo" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309333", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15600" - }, - { - "emuIRN": "261187", - "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Cassini Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Cucu" - ], - "url": "http://www.penn.museum/collections/object/261187", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15601" - }, - { - "emuIRN": "5818", - "description": "40 cards with wrapper. Printed back: green and blue plaid", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5818", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15604" - }, - { - "emuIRN": "236604", - "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236604", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15607" - }, - { - "emuIRN": "141065", - "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141065", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15608" - }, - { - "emuIRN": "319728", - "description": "Playing card deck - 40 cards", - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/319728", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15621" - }, - { - "emuIRN": "119150", - "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Florentine Pack" - ], - "url": "http://www.penn.museum/collections/object/119150", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15622" - }, - { - "emuIRN": "92457", - "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/92457", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15623" - }, - { - "emuIRN": "406753", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406753", - "curatorial_section": "Historic", - "object_number": "19124.15" - }, - { - "emuIRN": "406754", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406754", - "curatorial_section": "Historic", - "object_number": "19124.16" - }, - { - "emuIRN": "406755", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406755", - "curatorial_section": "Historic", - "object_number": "19124.17" - }, - { - "emuIRN": "406756", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406756", - "curatorial_section": "Historic", - "object_number": "19124.18" - }, - { - "emuIRN": "406757", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406757", - "curatorial_section": "Historic", - "object_number": "19124.19" - }, - { - "emuIRN": "406758", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406758", - "curatorial_section": "Historic", - "object_number": "19124.20" - }, - { - "emuIRN": "406759", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406759", - "curatorial_section": "Historic", - "object_number": "19124.21" - }, - { - "emuIRN": "406760", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406760", - "curatorial_section": "Historic", - "object_number": "19124.22" - }, - { - "emuIRN": "406761", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406761", - "curatorial_section": "Historic", - "object_number": "19124.23" - }, - { - "emuIRN": "406762", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406762", - "curatorial_section": "Historic", - "object_number": "19124.24" - }, - { - "emuIRN": "406763", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406763", - "curatorial_section": "Historic", - "object_number": "19124.25" - }, - { - "emuIRN": "406764", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406764", - "curatorial_section": "Historic", - "object_number": "19124.26" - }, - { - "emuIRN": "330556", - "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", - "provenience": [ - "Europe (uncertain)" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/330556", - "curatorial_section": "Historic", - "object_number": "29-191-128" - }, - { - "emuIRN": "321909", - "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/321909", - "curatorial_section": "Historic", - "object_number": "29-191-129" - }, - { - "emuIRN": "127367", - "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/127367", - "curatorial_section": "Historic", - "object_number": "29-191-227" - }, - { - "emuIRN": "203363", - "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", - "technique": [ - "Painted" - ], - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Paint", - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/203363", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15792" - }, - { - "emuIRN": "185526", - "description": "Red and gold sphere with small metall loop on 1 end", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of H. C. Thomson, 1894" - ], - "object_name": [ - "Whistling Top" - ], - "url": "http://www.penn.museum/collections/object/185526", - "curatorial_section": "Historic", - "object_number": "17817" - }, - { - "emuIRN": "59206", - "description": "Wood ball with metal spike. Cord for spinning", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top", - "Cord" - ], - "url": "http://www.penn.museum/collections/object/59206", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19214" - }, - { - "emuIRN": "186142", - "description": "Turned wood, bell-shaped with metal spike.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/186142", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19216" - }, - { - "emuIRN": "234646", - "description": "Toy rolling disc - wooden.", - "provenience": [ - "Italy" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Henry H. Giglioli, 1896" - ], - "object_name": [ - "Spinning Toy (uncertain)", - "Rolling Disc" - ], - "url": "http://www.penn.museum/collections/object/234646", - "curatorial_section": "Historic", - "object_number": "19217" - }, - { - "emuIRN": "134935", - "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal", - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1897" - ], - "object_name": [ - "Pinwheel" - ], - "url": "http://www.penn.museum/collections/object/134935", - "curatorial_section": "Historic", - "object_number": "20037" - }, - { - "emuIRN": "340545", - "description": "Turned wood ball with metal peg. Smaller version of 19214.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/340545", - "curatorial_section": "Historic", - "object_number": "19215A" - }, - { - "emuIRN": "273066", - "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Top Die", - "Teetotum" - ], - "url": "http://www.penn.museum/collections/object/273066", - "curatorial_section": "Historic", - "object_number": "71-18-6" - }, - { - "emuIRN": "146612", - "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", - "provenience": [ - "Japan" - ], - "material": [ - "Brass", - "Tin" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/146612", - "curatorial_section": "Historic", - "object_number": "71-18-11" - }, - { - "emuIRN": "264736", - "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top" - ], - "url": "http://www.penn.museum/collections/object/264736", - "curatorial_section": "Historic", - "object_number": "71-18-41" - }, - { - "emuIRN": "128464", - "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", - "provenience": [ - "West Germany" - ], - "culture": [ - "German" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/128464", - "curatorial_section": "Historic", - "object_number": "71-18-45" - }, - { - "emuIRN": "102950", - "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top", - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/102950", - "curatorial_section": "Historic", - "object_number": "71-18-50" - }, - { - "emuIRN": "215073", - "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Gyroscope" - ], - "url": "http://www.penn.museum/collections/object/215073", - "curatorial_section": "Historic", - "object_number": "71-18-53" - }, - { - "emuIRN": "281519", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/281519", - "curatorial_section": "Historic", - "object_number": "71-18-10A" - }, - { - "emuIRN": "132216", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/132216", - "curatorial_section": "Historic", - "object_number": "71-18-10B" - }, - { - "emuIRN": "222994", - "description": "Turned wooden spinnters. A-D have stems.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/222994", - "curatorial_section": "Historic", - "object_number": "71-18-17A" - }, - { - "emuIRN": "293378", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/293378", - "curatorial_section": "Historic", - "object_number": "71-18-17B" - }, - { - "emuIRN": "244262", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/244262", - "curatorial_section": "Historic", - "object_number": "71-18-17C" - }, - { - "emuIRN": "97422", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/97422", - "curatorial_section": "Historic", - "object_number": "71-18-17D" - }, - { - "emuIRN": "283240", - "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/283240", - "curatorial_section": "Historic", - "object_number": "71-18-17E" - }, - { - "emuIRN": "199531", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/199531", - "curatorial_section": "Historic", - "object_number": "71-18-20A" - }, - { - "emuIRN": "315942", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/315942", - "curatorial_section": "Historic", - "object_number": "71-18-20B" - }, - { - "emuIRN": "154811", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/154811", - "curatorial_section": "Historic", - "object_number": "71-18-20C" - }, - { - "emuIRN": "119329", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/119329", - "curatorial_section": "Historic", - "object_number": "71-18-20D" - }, - { - "emuIRN": "138169", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/138169", - "curatorial_section": "Historic", - "object_number": "71-18-20E" - }, - { - "emuIRN": "168699", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/168699", - "curatorial_section": "Historic", - "object_number": "71-18-20F" - }, - { - "emuIRN": "165852", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/165852", - "curatorial_section": "Historic", - "object_number": "71-18-20G" - }, - { - "emuIRN": "307682", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/307682", - "curatorial_section": "Historic", - "object_number": "71-18-20H" - }, - { - "emuIRN": "336448", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336448", - "curatorial_section": "Historic", - "object_number": "71-18-32A" - }, - { - "emuIRN": "181753", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/181753", - "curatorial_section": "Historic", - "object_number": "71-18-32B" - }, - { - "emuIRN": "277851", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/277851", - "curatorial_section": "Historic", - "object_number": "71-18-32C" - }, - { - "emuIRN": "44213", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/44213", - "curatorial_section": "Historic", - "object_number": "71-18-32D" - }, - { - "emuIRN": "343371", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/343371", - "curatorial_section": "Historic", - "object_number": "71-18-32E" - }, - { - "emuIRN": "405192", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "period": [ - "Modern" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/405192", - "curatorial_section": "Historic", - "object_number": "71-18-32F" - }, - { - "emuIRN": "174014", - "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinning Toy", - "Supported Top", - "Whistle" - ], - "url": "http://www.penn.museum/collections/object/174014", - "curatorial_section": "Historic", - "object_number": "71-18-72" - }, - { - "emuIRN": "54377", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/54377", - "curatorial_section": "Historic", - "object_number": "71-18-71A" - }, - { - "emuIRN": "336914", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336914", - "curatorial_section": "Historic", - "object_number": "71-18-71B" - }, - { - "emuIRN": "40527", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel", - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/40527", - "curatorial_section": "Historic", - "object_number": "71-18-71C" - }, - { - "emuIRN": "81633", - "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "iconography": [ - "Dog", - "Flag" - ], - "material": [ - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81633", - "other_numbers": [ - "533107" - ], - "curatorial_section": "Historic", - "object_number": "73-1-9" - }, - { - "emuIRN": "315995", - "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/315995", - "curatorial_section": "Historic", - "object_number": "73-1-11" - }, - { - "emuIRN": "81890", - "description": "Bi-colored light plastic top / yo-yo", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81890", - "curatorial_section": "Historic", - "object_number": "73-1-12" - }, - { - "emuIRN": "158974", - "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/158974", - "curatorial_section": "Historic", - "object_number": "73-1-21" - }, - { - "emuIRN": "270492", - "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/270492", - "curatorial_section": "Historic", - "object_number": "73-1-15B" - }, - { - "emuIRN": "122561", - "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "material": [ - "Plastic", - "Nylon" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/122561", - "curatorial_section": "Historic", - "object_number": "75-13-1" - }, - { - "emuIRN": "169135", - "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", - "provenience": [ - "Wisconsin", - "Milwaukee" - ], - "culture": [ - "American" - ], - "creator": [ - "Jak Pak Inc." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/169135", - "curatorial_section": "Historic", - "object_number": "75-13-18" - }, - { - "emuIRN": "265153", - "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", - "provenience": [ - "New York", - "Brooklyn" - ], - "culture": [ - "American" - ], - "creator": [ - "American Magnetop Corp." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/265153", - "curatorial_section": "Historic", - "object_number": "75-13-19" - }, - { - "emuIRN": "258185", - "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Giant Plastics Corp." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/258185", - "curatorial_section": "Historic", - "object_number": "75-13-21" - }, - { - "emuIRN": "112910", - "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", - "provenience": [ - "England" - ], - "culture": [ - "English" - ], - "creator": [ - "Christie & Jay, Ltd" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/112910", - "curatorial_section": "Historic", - "object_number": "75-13-30" - }, - { - "emuIRN": "206818", - "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", - "provenience": [ - "Tennessee", - "Nashville" - ], - "culture": [ - "American" - ], - "creator": [ - "Kusan, Inc" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Yo-Yo", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/206818", - "curatorial_section": "Historic", - "object_number": "75-13-32" - }, - { - "emuIRN": "320134", - "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", - "provenience": [ - "New York", - "Brooklyn" - ], - "creator": [ - "Shimmel" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/320134", - "curatorial_section": "Historic", - "object_number": "75-13-33" - }, - { - "emuIRN": "13411", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/13411", - "curatorial_section": "Historic", - "object_number": "75-13-10A" - }, - { - "emuIRN": "2151", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/2151", - "curatorial_section": "Historic", - "object_number": "75-13-10B" - }, - { - "emuIRN": "227620", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/227620", - "curatorial_section": "Historic", - "object_number": "75-13-10C" - }, - { - "emuIRN": "205966", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/205966", - "curatorial_section": "Historic", - "object_number": "75-13-29A" - }, - { - "emuIRN": "281691", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/281691", - "curatorial_section": "Historic", - "object_number": "75-13-29B" - }, - { - "emuIRN": "99171", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/99171", - "curatorial_section": "Historic", - "object_number": "75-13-29C" - }, - { - "emuIRN": "101034", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/101034", - "curatorial_section": "Historic", - "object_number": "75-13-29D" - }, - { - "emuIRN": "308170", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/308170", - "curatorial_section": "Historic", - "object_number": "75-13-29E" - }, - { - "emuIRN": "212263", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/212263", - "curatorial_section": "Historic", - "object_number": "75-13-29F" - }, - { - "emuIRN": "171295", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/171295", - "curatorial_section": "Historic", - "object_number": "75-13-29G" - }, - { - "emuIRN": "252428", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/252428", - "curatorial_section": "Historic", - "object_number": "75-13-29H" - }, - { - "emuIRN": "33474", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/33474", - "curatorial_section": "Historic", - "object_number": "75-13-29I" - }, - { - "emuIRN": "64988", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/64988", - "curatorial_section": "Historic", - "object_number": "75-13-29J" - }, - { - "emuIRN": "149403", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/149403", - "curatorial_section": "Historic", - "object_number": "75-13-29K" - }, - { - "emuIRN": "192238", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/192238", - "curatorial_section": "Historic", - "object_number": "75-13-29L" - }, - { - "emuIRN": "87050", - "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/87050", - "curatorial_section": "Historic", - "object_number": "75-13-5A" - }, - { - "emuIRN": "241334", - "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", - "provenience": [ - "Hawthorne" - ], - "culture": [ - "American" - ], - "creator": [ - "Mattel, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/241334", - "curatorial_section": "Historic", - "object_number": "75-13-9D" - }, - { - "emuIRN": "77859", - "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/77859", - "curatorial_section": "Historic", - "object_number": "71-18-24" - }, - { - "emuIRN": "285019", - "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top", - "Musical Top" - ], - "url": "http://www.penn.museum/collections/object/285019", - "curatorial_section": "Historic", - "object_number": "71-18-27" - }, - { - "emuIRN": "37984", - "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/37984", - "curatorial_section": "Historic", - "object_number": "71-18-38" - }, - { - "emuIRN": "239276", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/239276", - "curatorial_section": "Historic", - "object_number": "71-18-28A" - }, - { - "emuIRN": "32312", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/32312", - "curatorial_section": "Historic", - "object_number": "71-18-28B" - }, - { - "emuIRN": "65727", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/65727", - "curatorial_section": "Historic", - "object_number": "71-18-28C" - }, - { - "emuIRN": "274339", - "description": "Wire puzzle with boot and cap.", - "provenience": [ - "Europe", - "France (uncertain)" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Wire Puzzle" - ], - "url": "http://www.penn.museum/collections/object/274339", - "curatorial_section": "Historic", - "object_number": "8812" - }, - { - "emuIRN": "159716", - "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Selchow & Richter" - ], - "material": [ - "Cardboard" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/159716", - "date_made_early": "1880", - "date_made": "9/7/1880", - "date_made_late": "1880", - "curatorial_section": "Historic", - "object_number": "15496" - }, - { - "emuIRN": "18643", - "description": "12 lithographed cards with pictures of children's games. Fused to 16555", - "technique": [ - "Lithograph" - ], - "provenience": [ - "France", - "Paris (France)" - ], - "iconography": [ - "Games" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Cards" - ], - "url": "http://www.penn.museum/collections/object/18643", - "curatorial_section": "Historic", - "object_number": "16231" - }, - { - "emuIRN": "34693", - "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Metal", - "Glass", - "Wood" - ], - "accession_credit_line": [ - "Gift of Mrs. John Harrison, 1894" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/34693", - "date_made_early": "1869", - "date_made": "c. 1894", - "date_made_late": "1894", - "curatorial_section": "Historic", - "object_number": "16401" - }, - { - "emuIRN": "93791", - "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", - "provenience": [ - "England", - "London" - ], - "culture": [ - "British" - ], - "accession_credit_line": [ - "Gift of Henry Jones, 1893" - ], - "object_name": [ - "Card Game", - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93791", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "16555" - }, - { - "emuIRN": "117728", - "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "creator": [ - "Donaldson Brothers" - ], - "material": [ - "Paper" - ], - "object_name": [ - "Puzzle", - "Advertisement" - ], - "url": "http://www.penn.museum/collections/object/117728", - "curatorial_section": "Historic", - "object_number": "18578" - }, - { - "emuIRN": "303943", - "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", - "provenience": [ - "Pennsylvania", - "Bucks County" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Glass", - "Metal", - "String", - "Cork" - ], - "accession_credit_line": [ - "Gift of Col. Henry D. Paxson, 1897" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/303943", - "curatorial_section": "Historic", - "object_number": "20067" - }, - { - "emuIRN": "287388", - "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Dr. Max Uhle, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/287388", - "curatorial_section": "Historic", - "object_number": "21082" - }, - { - "emuIRN": "140578", - "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/140578", - "curatorial_section": "Historic", - "object_number": "21458" - }, - { - "emuIRN": "120293", - "description": "Wood Board with instructions. Metal Arm.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120293", - "curatorial_section": "Historic", - "object_number": "21460" - }, - { - "emuIRN": "25280", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/25280", - "curatorial_section": "Historic", - "object_number": "21594A" - }, - { - "emuIRN": "406863", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/406863", - "curatorial_section": "Historic", - "object_number": "21594B" - }, - { - "emuIRN": "93703", - "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "The American Game and Puzzle Company" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93703", - "curatorial_section": "Historic", - "object_number": "29-191-146" - }, - { - "emuIRN": "64758", - "description": "Yamato Block Puzzle - 6 pieces of wood", - "provenience": [ - "Japan" - ], - "culture": [ - "Japanese" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64758", - "curatorial_section": "Historic", - "object_number": "29-191-159" - }, - { - "emuIRN": "64759", - "description": "See Dar Wonderful - 9 pieces of wood", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64759", - "curatorial_section": "Historic", - "object_number": "29-191-160" - }, - { - "emuIRN": "30391", - "description": "12 pieces", - "provenience": [ - "New York", - "New York City" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle", - "Reproduction (uncertain)" - ], - "url": "http://www.penn.museum/collections/object/30391", - "curatorial_section": "Historic", - "object_number": "29-191-161" - }, - { - "emuIRN": "22499", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/22499", - "other_numbers": [ - "4001" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157B" - }, - { - "emuIRN": "120252", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120252", - "other_numbers": [ - "4001?" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157C" - }, - { - "emuIRN": "156290", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/156290", - "other_numbers": [ - "4002" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157D" - }, - { - "emuIRN": "99398", - "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", - "provenience": [ - "Pennsylvania", - "Pittsburgh" - ], - "culture": [ - "American" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Charles Este, Jr., 1899" - ], - "object_name": [ - "Puzzle", - "Trick" - ], - "url": "http://www.penn.museum/collections/object/99398", - "curatorial_section": "Historic", - "object_number": "19783" - }, - { - "emuIRN": "130464", - "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/130464", - "native_name": [ - "Cartes a Jouer" - ], - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "7594" - }, - { - "emuIRN": "160242", - "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/160242", - "date_made_early": "1800", - "date_made": "1800-1899", - "date_made_late": "1899", - "curatorial_section": "Historic", - "object_number": "7595" - }, - { - "emuIRN": "157104", - "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1890" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "url": "http://www.penn.museum/collections/object/157104", - "date_made_early": "1800", - "date_made": "19th century", - "date_made_late": "1890", - "curatorial_section": "Historic", - "object_number": "7629" - }, - { - "emuIRN": "157105", - "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "C. L. Wust" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of J. D. Sergeant, 1890" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/157105", - "curatorial_section": "Historic", - "object_number": "7630" - }, - { - "emuIRN": "98559", - "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "B. Dondorf" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of W. Yorke Stevenson, 1891" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/98559", - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "other_numbers": [ - "27" - ], - "curatorial_section": "Historic", - "object_number": "7712" - }, - { - "emuIRN": "248509", - "description": "Card dominoes in box.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Card Game", - "Dominoe" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/248509", - "curatorial_section": "Historic", - "object_number": "8813" - }, - { - "emuIRN": "137944", - "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/137944", - "date_made_early": "1866", - "date_made": "c. 1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "9011" - }, - { - "emuIRN": "194220", - "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "creator": [ - "Watilliaux" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/194220", - "date_made_early": "1878", - "date_made": "1878", - "date_made_late": "1878", - "curatorial_section": "Historic", - "object_number": "9018" - }, - { - "emuIRN": "205296", - "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", - "technique": [ - "Printed" - ], - "provenience": [ - "Mexico (Central America)", - "Puebla (Mexican State)" - ], - "culture": [ - "Spanish" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of the US National Museum, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/205296", - "date_made_early": "1873", - "date_made": "1873-1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15360" - }, - { - "emuIRN": "21030", - "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Fortune Telling Cards" - ], - "url": "http://www.penn.museum/collections/object/21030", - "date_made_early": "1865", - "date_made": "pre 1890", - "date_made_late": "1890", - "other_numbers": [ - "43" - ], - "curatorial_section": "Historic", - "object_number": "15513" - }, - { - "emuIRN": "46932", - "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", - "provenience": [ - "Italy", - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/46932", - "date_made_early": "1880", - "date_made": "1880-1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15528" - }, - { - "emuIRN": "220035", - "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/220035", - "date_made_early": "29 Nov 1890", - "date_made": "11/29/1890", - "date_made_late": "29 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15529" - }, - { - "emuIRN": "220036", - "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/220036", - "date_made_early": "27 Oct 1890", - "date_made": "10/27/1890", - "date_made_late": "27 Oct 1890", - "other_numbers": [ - "42" - ], - "curatorial_section": "Historic", - "object_number": "15530" - }, - { - "emuIRN": "289473", - "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/289473", - "date_made_early": "17 Jan 1887", - "date_made": "1/17/1887", - "date_made_late": "17 Jan 1887", - "curatorial_section": "Historic", - "object_number": "15532" - }, - { - "emuIRN": "114394", - "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/114394", - "date_made_early": "1867", - "date_made": " pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15533" - }, - { - "emuIRN": "82994", - "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/82994", - "date_made_early": "17 Jun 1890", - "date_made": "6/17/1890", - "date_made_late": "17 Jun 1890", - "other_numbers": [ - "13" - ], - "curatorial_section": "Historic", - "object_number": "15534" - }, - { - "emuIRN": "233242", - "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/233242", - "date_made_early": "13 Mar 1891", - "date_made": "3/13/1891", - "date_made_late": "13 Mar 1891", - "other_numbers": [ - "5" - ], - "curatorial_section": "Historic", - "object_number": "15536" - }, - { - "emuIRN": "237987", - "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/237987", - "date_made_early": "13 Mar 1891", - "date_made": "pre 1892", - "date_made_late": "13 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15537" - }, - { - "emuIRN": "264110", - "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/264110", - "date_made_early": "1867", - "date_made": "pre 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15538" - }, - { - "emuIRN": "36188", - "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/36188", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15540" - }, - { - "emuIRN": "154504", - "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/154504", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15541" - }, - { - "emuIRN": "203963", - "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/203963", - "date_made_early": "27 Aug 1891", - "date_made": "8/27/1891", - "date_made_late": "27 Aug 1891", - "curatorial_section": "Historic", - "object_number": "15543" - }, - { - "emuIRN": "241994", - "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/241994", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15544" - }, - { - "emuIRN": "243680", - "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/243680", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15545" - }, - { - "emuIRN": "87145", - "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/87145", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15546" - }, - { - "emuIRN": "59271", - "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/59271", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15547" - }, - { - "emuIRN": "336096", - "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/336096", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15548" - }, - { - "emuIRN": "203973", - "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/203973", - "date_made_early": "09 Apr 1888", - "date_made": "4/9/1888", - "date_made_late": "09 Apr 1888", - "curatorial_section": "Historic", - "object_number": "15550" - }, - { - "emuIRN": "238541", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/238541", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15552" - }, - { - "emuIRN": "131933", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/131933", - "date_made_early": "16 Jun 1891", - "date_made": "6/16/1891", - "date_made_late": "16 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15553" - }, - { - "emuIRN": "158923", - "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/158923", - "date_made_early": "01 Jun 1891", - "date_made": "6/1/1891", - "date_made_late": "01 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15554" - }, - { - "emuIRN": "103187", - "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/103187", - "native_name": [ - "Tarocchino" - ], - "date_made_early": "03 Feb 1891", - "date_made": "2/3/1891", - "date_made_late": "03 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15555" - }, - { - "emuIRN": "178709", - "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", - "provenience": [ - "Italy", - "Povoletto-Udine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "F. L. Muccioli" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/178709", - "date_made_early": "09 May 1890", - "date_made": "5/9/1890", - "date_made_late": "09 May 1890", - "curatorial_section": "Historic", - "object_number": "15556" - }, - { - "emuIRN": "277112", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/277112", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15557" - }, - { - "emuIRN": "25552", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/25552", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15558" - }, - { - "emuIRN": "325482", - "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/325482", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1895", - "curatorial_section": "Historic", - "object_number": "15559" - }, - { - "emuIRN": "325483", - "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/325483", - "date_made_early": "12 Mar 2091", - "date_made": "3/12/91", - "date_made_late": "12 Mar 2091", - "curatorial_section": "Historic", - "object_number": "15560" - }, - { - "emuIRN": "48114", - "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/48114", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "22 Jun 1891", - "date_made": "6/22/1891", - "date_made_late": "22 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15561" - }, - { - "emuIRN": "167380", - "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/167380", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15562" - }, - { - "emuIRN": "321272", - "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Vincenzo Russo" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack", - "Neopolitan Pack" - ], - "url": "http://www.penn.museum/collections/object/321272", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "11 Feb 1891", - "date_made": "2/11/1891", - "date_made_late": "11 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15563" - }, - { - "emuIRN": "279915", - "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Luigi Pignalosa" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/279915", - "date_made_early": "14 Feb 1891", - "date_made": "2/14/1891", - "date_made_late": "14 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15564" - }, - { - "emuIRN": "157272", - "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/157272", - "date_made_early": "04 Oct 1888", - "date_made": "10/4/1888", - "date_made_late": "04 Oct 1888", - "curatorial_section": "Historic", - "object_number": "15566" - }, - { - "emuIRN": "88522", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/88522", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15567" - }, - { - "emuIRN": "177453", - "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/177453", - "date_made_early": "24 Mar 1891", - "date_made": "3/24/1891", - "date_made_late": "24 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15568" - }, - { - "emuIRN": "322855", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322855", - "date_made_early": "25 Nov 1890", - "date_made": "11/25/1890", - "date_made_late": "25 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15569" - }, - { - "emuIRN": "322856", - "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322856", - "date_made_early": "27 Jul 2091", - "date_made": "7/27/91", - "date_made_late": "27 Jul 2091", - "curatorial_section": "Historic", - "object_number": "15570" - }, - { - "emuIRN": "289232", - "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/289232", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15571" - }, - { - "emuIRN": "71704", - "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "L. Bartolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/71704", - "date_made_early": "02 Jul 1892", - "date_made": "7/2/1892", - "date_made_late": "02 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15572" - }, - { - "emuIRN": "341571", - "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Silvertrini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/341571", - "date_made_early": "01 Jul 1892", - "date_made": "7/1/1892", - "date_made_late": "01 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15573" - }, - { - "emuIRN": "231215", - "description": "Playing card deck - 44 cards", - "provenience": [ - "Italy", - "Bergamo" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Masenghini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Milanese Deck" - ], - "url": "http://www.penn.museum/collections/object/231215", - "curatorial_section": "Historic", - "object_number": "15575" - }, - { - "emuIRN": "290651", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", - "provenience": [ - "Italy", - "Trento" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giac. Bertoldi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/290651", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15577" - }, - { - "emuIRN": "116249", - "description": "Playing card deck - 40 cards, printed back with pink abstract designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/116249", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15578" - }, - { - "emuIRN": "76331", - "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/76331", - "date_made_early": "1867", - "date_made": "c.1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15579" - }, - { - "emuIRN": "76332", - "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/76332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15580" - }, - { - "emuIRN": "189908", - "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/189908", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15583" - }, - { - "emuIRN": "275719", - "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/275719", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15584" - }, - { - "emuIRN": "51584", - "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/51584", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15585" - }, - { - "emuIRN": "56004", - "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Crispolani" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/56004", - "date_made_early": "1850", - "date_made": "circa 1860", - "date_made_late": "1870", - "curatorial_section": "Historic", - "object_number": "15586" - }, - { - "emuIRN": "124979", - "description": "Playing card deck - Tarocchi/Tarot - 78 cards", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/124979", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15587" - }, - { - "emuIRN": "212458", - "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "url": "http://www.penn.museum/collections/object/212458", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15588" - }, - { - "emuIRN": "309331", - "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "G. C. Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309331", - "date_made_early": "30 Mar 1891", - "date_made": "3/30/1891", - "date_made_late": "30 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15589" - }, - { - "emuIRN": "309332", - "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15590" - }, - { - "emuIRN": "86979", - "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/86979", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15592" - }, - { - "emuIRN": "5817", - "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5817", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15594" - }, - { - "emuIRN": "170983", - "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Baby", - "Angel" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/170983", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15595" - }, - { - "emuIRN": "300071", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Tambourine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/300071", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15596" - }, - { - "emuIRN": "236603", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236603", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15597" - }, - { - "emuIRN": "141064", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141064", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15598" - }, - { - "emuIRN": "126294", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", - "provenience": [ - "Italy", - "Treviso" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Francesca Rino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/126294", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15599" - }, - { - "emuIRN": "309333", - "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", - "provenience": [ - "Italy", - "Parma (Italy)" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Faelli Carlo" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309333", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15600" - }, - { - "emuIRN": "261187", - "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Cassini Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Cucu" - ], - "url": "http://www.penn.museum/collections/object/261187", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15601" - }, - { - "emuIRN": "5818", - "description": "40 cards with wrapper. Printed back: green and blue plaid", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5818", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15604" - }, - { - "emuIRN": "236604", - "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236604", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15607" - }, - { - "emuIRN": "141065", - "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141065", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15608" - }, - { - "emuIRN": "319728", - "description": "Playing card deck - 40 cards", - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/319728", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15621" - }, - { - "emuIRN": "119150", - "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Florentine Pack" - ], - "url": "http://www.penn.museum/collections/object/119150", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15622" - }, - { - "emuIRN": "92457", - "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/92457", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15623" - }, - { - "emuIRN": "406753", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406753", - "curatorial_section": "Historic", - "object_number": "19124.15" - }, - { - "emuIRN": "406754", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406754", - "curatorial_section": "Historic", - "object_number": "19124.16" - }, - { - "emuIRN": "406755", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406755", - "curatorial_section": "Historic", - "object_number": "19124.17" - }, - { - "emuIRN": "406756", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406756", - "curatorial_section": "Historic", - "object_number": "19124.18" - }, - { - "emuIRN": "406757", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406757", - "curatorial_section": "Historic", - "object_number": "19124.19" - }, - { - "emuIRN": "406758", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406758", - "curatorial_section": "Historic", - "object_number": "19124.20" - }, - { - "emuIRN": "406759", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406759", - "curatorial_section": "Historic", - "object_number": "19124.21" - }, - { - "emuIRN": "406760", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406760", - "curatorial_section": "Historic", - "object_number": "19124.22" - }, - { - "emuIRN": "406761", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406761", - "curatorial_section": "Historic", - "object_number": "19124.23" - }, - { - "emuIRN": "406762", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406762", - "curatorial_section": "Historic", - "object_number": "19124.24" - }, - { - "emuIRN": "406763", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406763", - "curatorial_section": "Historic", - "object_number": "19124.25" - }, - { - "emuIRN": "406764", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406764", - "curatorial_section": "Historic", - "object_number": "19124.26" - }, - { - "emuIRN": "330556", - "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", - "provenience": [ - "Europe (uncertain)" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/330556", - "curatorial_section": "Historic", - "object_number": "29-191-128" - }, - { - "emuIRN": "321909", - "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/321909", - "curatorial_section": "Historic", - "object_number": "29-191-129" - }, - { - "emuIRN": "127367", - "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/127367", - "curatorial_section": "Historic", - "object_number": "29-191-227" - }, - { - "emuIRN": "203363", - "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", - "technique": [ - "Painted" - ], - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Paint", - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/203363", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15792" - }, - { - "emuIRN": "185526", - "description": "Red and gold sphere with small metall loop on 1 end", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of H. C. Thomson, 1894" - ], - "object_name": [ - "Whistling Top" - ], - "url": "http://www.penn.museum/collections/object/185526", - "curatorial_section": "Historic", - "object_number": "17817" - }, - { - "emuIRN": "59206", - "description": "Wood ball with metal spike. Cord for spinning", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top", - "Cord" - ], - "url": "http://www.penn.museum/collections/object/59206", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19214" - }, - { - "emuIRN": "186142", - "description": "Turned wood, bell-shaped with metal spike.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/186142", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19216" - }, - { - "emuIRN": "234646", - "description": "Toy rolling disc - wooden.", - "provenience": [ - "Italy" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Henry H. Giglioli, 1896" - ], - "object_name": [ - "Spinning Toy (uncertain)", - "Rolling Disc" - ], - "url": "http://www.penn.museum/collections/object/234646", - "curatorial_section": "Historic", - "object_number": "19217" - }, - { - "emuIRN": "134935", - "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal", - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1897" - ], - "object_name": [ - "Pinwheel" - ], - "url": "http://www.penn.museum/collections/object/134935", - "curatorial_section": "Historic", - "object_number": "20037" - }, - { - "emuIRN": "340545", - "description": "Turned wood ball with metal peg. Smaller version of 19214.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/340545", - "curatorial_section": "Historic", - "object_number": "19215A" - }, - { - "emuIRN": "273066", - "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Top Die", - "Teetotum" - ], - "url": "http://www.penn.museum/collections/object/273066", - "curatorial_section": "Historic", - "object_number": "71-18-6" - }, - { - "emuIRN": "146612", - "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", - "provenience": [ - "Japan" - ], - "material": [ - "Brass", - "Tin" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/146612", - "curatorial_section": "Historic", - "object_number": "71-18-11" - }, - { - "emuIRN": "264736", - "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top" - ], - "url": "http://www.penn.museum/collections/object/264736", - "curatorial_section": "Historic", - "object_number": "71-18-41" - }, - { - "emuIRN": "128464", - "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", - "provenience": [ - "West Germany" - ], - "culture": [ - "German" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/128464", - "curatorial_section": "Historic", - "object_number": "71-18-45" - }, - { - "emuIRN": "102950", - "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top", - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/102950", - "curatorial_section": "Historic", - "object_number": "71-18-50" - }, - { - "emuIRN": "215073", - "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Gyroscope" - ], - "url": "http://www.penn.museum/collections/object/215073", - "curatorial_section": "Historic", - "object_number": "71-18-53" - }, - { - "emuIRN": "281519", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/281519", - "curatorial_section": "Historic", - "object_number": "71-18-10A" - }, - { - "emuIRN": "132216", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/132216", - "curatorial_section": "Historic", - "object_number": "71-18-10B" - }, - { - "emuIRN": "222994", - "description": "Turned wooden spinnters. A-D have stems.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/222994", - "curatorial_section": "Historic", - "object_number": "71-18-17A" - }, - { - "emuIRN": "293378", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/293378", - "curatorial_section": "Historic", - "object_number": "71-18-17B" - }, - { - "emuIRN": "244262", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/244262", - "curatorial_section": "Historic", - "object_number": "71-18-17C" - }, - { - "emuIRN": "97422", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/97422", - "curatorial_section": "Historic", - "object_number": "71-18-17D" - }, - { - "emuIRN": "283240", - "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/283240", - "curatorial_section": "Historic", - "object_number": "71-18-17E" - }, - { - "emuIRN": "199531", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/199531", - "curatorial_section": "Historic", - "object_number": "71-18-20A" - }, - { - "emuIRN": "315942", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/315942", - "curatorial_section": "Historic", - "object_number": "71-18-20B" - }, - { - "emuIRN": "154811", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/154811", - "curatorial_section": "Historic", - "object_number": "71-18-20C" - }, - { - "emuIRN": "119329", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/119329", - "curatorial_section": "Historic", - "object_number": "71-18-20D" - }, - { - "emuIRN": "138169", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/138169", - "curatorial_section": "Historic", - "object_number": "71-18-20E" - }, - { - "emuIRN": "168699", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/168699", - "curatorial_section": "Historic", - "object_number": "71-18-20F" - }, - { - "emuIRN": "165852", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/165852", - "curatorial_section": "Historic", - "object_number": "71-18-20G" - }, - { - "emuIRN": "307682", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/307682", - "curatorial_section": "Historic", - "object_number": "71-18-20H" - }, - { - "emuIRN": "336448", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336448", - "curatorial_section": "Historic", - "object_number": "71-18-32A" - }, - { - "emuIRN": "181753", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/181753", - "curatorial_section": "Historic", - "object_number": "71-18-32B" - }, - { - "emuIRN": "277851", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/277851", - "curatorial_section": "Historic", - "object_number": "71-18-32C" - }, - { - "emuIRN": "44213", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/44213", - "curatorial_section": "Historic", - "object_number": "71-18-32D" - }, - { - "emuIRN": "343371", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/343371", - "curatorial_section": "Historic", - "object_number": "71-18-32E" - }, - { - "emuIRN": "405192", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "period": [ - "Modern" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/405192", - "curatorial_section": "Historic", - "object_number": "71-18-32F" - }, - { - "emuIRN": "174014", - "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinning Toy", - "Supported Top", - "Whistle" - ], - "url": "http://www.penn.museum/collections/object/174014", - "curatorial_section": "Historic", - "object_number": "71-18-72" - }, - { - "emuIRN": "54377", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/54377", - "curatorial_section": "Historic", - "object_number": "71-18-71A" - }, - { - "emuIRN": "336914", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336914", - "curatorial_section": "Historic", - "object_number": "71-18-71B" - }, - { - "emuIRN": "40527", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel", - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/40527", - "curatorial_section": "Historic", - "object_number": "71-18-71C" - }, - { - "emuIRN": "81633", - "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "iconography": [ - "Dog", - "Flag" - ], - "material": [ - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81633", - "other_numbers": [ - "533107" - ], - "curatorial_section": "Historic", - "object_number": "73-1-9" - }, - { - "emuIRN": "315995", - "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/315995", - "curatorial_section": "Historic", - "object_number": "73-1-11" - }, - { - "emuIRN": "81890", - "description": "Bi-colored light plastic top / yo-yo", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81890", - "curatorial_section": "Historic", - "object_number": "73-1-12" - }, - { - "emuIRN": "158974", - "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/158974", - "curatorial_section": "Historic", - "object_number": "73-1-21" - }, - { - "emuIRN": "270492", - "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/270492", - "curatorial_section": "Historic", - "object_number": "73-1-15B" - }, - { - "emuIRN": "122561", - "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "material": [ - "Plastic", - "Nylon" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/122561", - "curatorial_section": "Historic", - "object_number": "75-13-1" - }, - { - "emuIRN": "169135", - "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", - "provenience": [ - "Wisconsin", - "Milwaukee" - ], - "culture": [ - "American" - ], - "creator": [ - "Jak Pak Inc." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/169135", - "curatorial_section": "Historic", - "object_number": "75-13-18" - }, - { - "emuIRN": "265153", - "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", - "provenience": [ - "New York", - "Brooklyn" - ], - "culture": [ - "American" - ], - "creator": [ - "American Magnetop Corp." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/265153", - "curatorial_section": "Historic", - "object_number": "75-13-19" - }, - { - "emuIRN": "258185", - "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Giant Plastics Corp." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/258185", - "curatorial_section": "Historic", - "object_number": "75-13-21" - }, - { - "emuIRN": "112910", - "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", - "provenience": [ - "England" - ], - "culture": [ - "English" - ], - "creator": [ - "Christie & Jay, Ltd" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/112910", - "curatorial_section": "Historic", - "object_number": "75-13-30" - }, - { - "emuIRN": "206818", - "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", - "provenience": [ - "Tennessee", - "Nashville" - ], - "culture": [ - "American" - ], - "creator": [ - "Kusan, Inc" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Yo-Yo", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/206818", - "curatorial_section": "Historic", - "object_number": "75-13-32" - }, - { - "emuIRN": "320134", - "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", - "provenience": [ - "New York", - "Brooklyn" - ], - "creator": [ - "Shimmel" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/320134", - "curatorial_section": "Historic", - "object_number": "75-13-33" - }, - { - "emuIRN": "13411", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/13411", - "curatorial_section": "Historic", - "object_number": "75-13-10A" - }, - { - "emuIRN": "2151", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/2151", - "curatorial_section": "Historic", - "object_number": "75-13-10B" - }, - { - "emuIRN": "227620", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/227620", - "curatorial_section": "Historic", - "object_number": "75-13-10C" - }, - { - "emuIRN": "205966", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/205966", - "curatorial_section": "Historic", - "object_number": "75-13-29A" - }, - { - "emuIRN": "281691", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/281691", - "curatorial_section": "Historic", - "object_number": "75-13-29B" - }, - { - "emuIRN": "99171", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/99171", - "curatorial_section": "Historic", - "object_number": "75-13-29C" - }, - { - "emuIRN": "101034", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/101034", - "curatorial_section": "Historic", - "object_number": "75-13-29D" - }, - { - "emuIRN": "308170", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/308170", - "curatorial_section": "Historic", - "object_number": "75-13-29E" - }, - { - "emuIRN": "212263", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/212263", - "curatorial_section": "Historic", - "object_number": "75-13-29F" - }, - { - "emuIRN": "171295", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/171295", - "curatorial_section": "Historic", - "object_number": "75-13-29G" - }, - { - "emuIRN": "252428", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/252428", - "curatorial_section": "Historic", - "object_number": "75-13-29H" - }, - { - "emuIRN": "33474", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/33474", - "curatorial_section": "Historic", - "object_number": "75-13-29I" - }, - { - "emuIRN": "64988", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/64988", - "curatorial_section": "Historic", - "object_number": "75-13-29J" - }, - { - "emuIRN": "149403", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/149403", - "curatorial_section": "Historic", - "object_number": "75-13-29K" - }, - { - "emuIRN": "192238", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/192238", - "curatorial_section": "Historic", - "object_number": "75-13-29L" - }, - { - "emuIRN": "87050", - "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/87050", - "curatorial_section": "Historic", - "object_number": "75-13-5A" - }, - { - "emuIRN": "241334", - "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", - "provenience": [ - "Hawthorne" - ], - "culture": [ - "American" - ], - "creator": [ - "Mattel, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/241334", - "curatorial_section": "Historic", - "object_number": "75-13-9D" - }, - { - "emuIRN": "77859", - "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/77859", - "curatorial_section": "Historic", - "object_number": "71-18-24" - }, - { - "emuIRN": "285019", - "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top", - "Musical Top" - ], - "url": "http://www.penn.museum/collections/object/285019", - "curatorial_section": "Historic", - "object_number": "71-18-27" - }, - { - "emuIRN": "37984", - "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/37984", - "curatorial_section": "Historic", - "object_number": "71-18-38" - }, - { - "emuIRN": "239276", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/239276", - "curatorial_section": "Historic", - "object_number": "71-18-28A" - }, - { - "emuIRN": "32312", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/32312", - "curatorial_section": "Historic", - "object_number": "71-18-28B" - }, - { - "emuIRN": "65727", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/65727", - "curatorial_section": "Historic", - "object_number": "71-18-28C" - }, - { - "emuIRN": "274339", - "description": "Wire puzzle with boot and cap.", - "provenience": [ - "Europe", - "France (uncertain)" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Wire Puzzle" - ], - "url": "http://www.penn.museum/collections/object/274339", - "curatorial_section": "Historic", - "object_number": "8812" - }, - { - "emuIRN": "159716", - "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Selchow & Richter" - ], - "material": [ - "Cardboard" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/159716", - "date_made_early": "1880", - "date_made": "9/7/1880", - "date_made_late": "1880", - "curatorial_section": "Historic", - "object_number": "15496" - }, - { - "emuIRN": "18643", - "description": "12 lithographed cards with pictures of children's games. Fused to 16555", - "technique": [ - "Lithograph" - ], - "provenience": [ - "France", - "Paris (France)" - ], - "iconography": [ - "Games" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Cards" - ], - "url": "http://www.penn.museum/collections/object/18643", - "curatorial_section": "Historic", - "object_number": "16231" - }, - { - "emuIRN": "34693", - "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Metal", - "Glass", - "Wood" - ], - "accession_credit_line": [ - "Gift of Mrs. John Harrison, 1894" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/34693", - "date_made_early": "1869", - "date_made": "c. 1894", - "date_made_late": "1894", - "curatorial_section": "Historic", - "object_number": "16401" - }, - { - "emuIRN": "93791", - "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", - "provenience": [ - "England", - "London" - ], - "culture": [ - "British" - ], - "accession_credit_line": [ - "Gift of Henry Jones, 1893" - ], - "object_name": [ - "Card Game", - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93791", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "16555" - }, - { - "emuIRN": "117728", - "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "creator": [ - "Donaldson Brothers" - ], - "material": [ - "Paper" - ], - "object_name": [ - "Puzzle", - "Advertisement" - ], - "url": "http://www.penn.museum/collections/object/117728", - "curatorial_section": "Historic", - "object_number": "18578" - }, - { - "emuIRN": "303943", - "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", - "provenience": [ - "Pennsylvania", - "Bucks County" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Glass", - "Metal", - "String", - "Cork" - ], - "accession_credit_line": [ - "Gift of Col. Henry D. Paxson, 1897" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/303943", - "curatorial_section": "Historic", - "object_number": "20067" - }, - { - "emuIRN": "287388", - "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Dr. Max Uhle, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/287388", - "curatorial_section": "Historic", - "object_number": "21082" - }, - { - "emuIRN": "140578", - "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/140578", - "curatorial_section": "Historic", - "object_number": "21458" - }, - { - "emuIRN": "120293", - "description": "Wood Board with instructions. Metal Arm.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120293", - "curatorial_section": "Historic", - "object_number": "21460" - }, - { - "emuIRN": "25280", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/25280", - "curatorial_section": "Historic", - "object_number": "21594A" - }, - { - "emuIRN": "406863", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/406863", - "curatorial_section": "Historic", - "object_number": "21594B" - }, - { - "emuIRN": "93703", - "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "The American Game and Puzzle Company" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93703", - "curatorial_section": "Historic", - "object_number": "29-191-146" - }, - { - "emuIRN": "64758", - "description": "Yamato Block Puzzle - 6 pieces of wood", - "provenience": [ - "Japan" - ], - "culture": [ - "Japanese" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64758", - "curatorial_section": "Historic", - "object_number": "29-191-159" - }, - { - "emuIRN": "64759", - "description": "See Dar Wonderful - 9 pieces of wood", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64759", - "curatorial_section": "Historic", - "object_number": "29-191-160" - }, - { - "emuIRN": "30391", - "description": "12 pieces", - "provenience": [ - "New York", - "New York City" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle", - "Reproduction (uncertain)" - ], - "url": "http://www.penn.museum/collections/object/30391", - "curatorial_section": "Historic", - "object_number": "29-191-161" - }, - { - "emuIRN": "22499", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/22499", - "other_numbers": [ - "4001" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157B" - }, - { - "emuIRN": "120252", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120252", - "other_numbers": [ - "4001?" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157C" - }, - { - "emuIRN": "156290", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/156290", - "other_numbers": [ - "4002" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157D" - }, - { - "emuIRN": "99398", - "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", - "provenience": [ - "Pennsylvania", - "Pittsburgh" - ], - "culture": [ - "American" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Charles Este, Jr., 1899" - ], - "object_name": [ - "Puzzle", - "Trick" - ], - "url": "http://www.penn.museum/collections/object/99398", - "curatorial_section": "Historic", - "object_number": "19783" - }, - { - "emuIRN": "130464", - "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/130464", - "native_name": [ - "Cartes a Jouer" - ], - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "7594" - }, - { - "emuIRN": "160242", - "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/160242", - "date_made_early": "1800", - "date_made": "1800-1899", - "date_made_late": "1899", - "curatorial_section": "Historic", - "object_number": "7595" - }, - { - "emuIRN": "157104", - "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1890" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "url": "http://www.penn.museum/collections/object/157104", - "date_made_early": "1800", - "date_made": "19th century", - "date_made_late": "1890", - "curatorial_section": "Historic", - "object_number": "7629" - }, - { - "emuIRN": "157105", - "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "C. L. Wust" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of J. D. Sergeant, 1890" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/157105", - "curatorial_section": "Historic", - "object_number": "7630" - }, - { - "emuIRN": "98559", - "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "B. Dondorf" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of W. Yorke Stevenson, 1891" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/98559", - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "other_numbers": [ - "27" - ], - "curatorial_section": "Historic", - "object_number": "7712" - }, - { - "emuIRN": "248509", - "description": "Card dominoes in box.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Card Game", - "Dominoe" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/248509", - "curatorial_section": "Historic", - "object_number": "8813" - }, - { - "emuIRN": "137944", - "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/137944", - "date_made_early": "1866", - "date_made": "c. 1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "9011" - }, - { - "emuIRN": "194220", - "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "creator": [ - "Watilliaux" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/194220", - "date_made_early": "1878", - "date_made": "1878", - "date_made_late": "1878", - "curatorial_section": "Historic", - "object_number": "9018" - }, - { - "emuIRN": "205296", - "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", - "technique": [ - "Printed" - ], - "provenience": [ - "Mexico (Central America)", - "Puebla (Mexican State)" - ], - "culture": [ - "Spanish" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of the US National Museum, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/205296", - "date_made_early": "1873", - "date_made": "1873-1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15360" - }, - { - "emuIRN": "21030", - "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Fortune Telling Cards" - ], - "url": "http://www.penn.museum/collections/object/21030", - "date_made_early": "1865", - "date_made": "pre 1890", - "date_made_late": "1890", - "other_numbers": [ - "43" - ], - "curatorial_section": "Historic", - "object_number": "15513" - }, - { - "emuIRN": "46932", - "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", - "provenience": [ - "Italy", - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/46932", - "date_made_early": "1880", - "date_made": "1880-1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15528" - }, - { - "emuIRN": "220035", - "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/220035", - "date_made_early": "29 Nov 1890", - "date_made": "11/29/1890", - "date_made_late": "29 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15529" - }, - { - "emuIRN": "220036", - "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/220036", - "date_made_early": "27 Oct 1890", - "date_made": "10/27/1890", - "date_made_late": "27 Oct 1890", - "other_numbers": [ - "42" - ], - "curatorial_section": "Historic", - "object_number": "15530" - }, - { - "emuIRN": "289473", - "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/289473", - "date_made_early": "17 Jan 1887", - "date_made": "1/17/1887", - "date_made_late": "17 Jan 1887", - "curatorial_section": "Historic", - "object_number": "15532" - }, - { - "emuIRN": "114394", - "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/114394", - "date_made_early": "1867", - "date_made": " pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15533" - }, - { - "emuIRN": "82994", - "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/82994", - "date_made_early": "17 Jun 1890", - "date_made": "6/17/1890", - "date_made_late": "17 Jun 1890", - "other_numbers": [ - "13" - ], - "curatorial_section": "Historic", - "object_number": "15534" - }, - { - "emuIRN": "233242", - "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/233242", - "date_made_early": "13 Mar 1891", - "date_made": "3/13/1891", - "date_made_late": "13 Mar 1891", - "other_numbers": [ - "5" - ], - "curatorial_section": "Historic", - "object_number": "15536" - }, - { - "emuIRN": "237987", - "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/237987", - "date_made_early": "13 Mar 1891", - "date_made": "pre 1892", - "date_made_late": "13 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15537" - }, - { - "emuIRN": "264110", - "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/264110", - "date_made_early": "1867", - "date_made": "pre 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15538" - }, - { - "emuIRN": "36188", - "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/36188", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15540" - }, - { - "emuIRN": "154504", - "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/154504", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15541" - }, - { - "emuIRN": "203963", - "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/203963", - "date_made_early": "27 Aug 1891", - "date_made": "8/27/1891", - "date_made_late": "27 Aug 1891", - "curatorial_section": "Historic", - "object_number": "15543" - }, - { - "emuIRN": "241994", - "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/241994", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15544" - }, - { - "emuIRN": "243680", - "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/243680", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15545" - }, - { - "emuIRN": "87145", - "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/87145", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15546" - }, - { - "emuIRN": "59271", - "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/59271", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15547" - }, - { - "emuIRN": "336096", - "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/336096", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15548" - }, - { - "emuIRN": "203973", - "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/203973", - "date_made_early": "09 Apr 1888", - "date_made": "4/9/1888", - "date_made_late": "09 Apr 1888", - "curatorial_section": "Historic", - "object_number": "15550" - }, - { - "emuIRN": "238541", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/238541", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15552" - }, - { - "emuIRN": "131933", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/131933", - "date_made_early": "16 Jun 1891", - "date_made": "6/16/1891", - "date_made_late": "16 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15553" - }, - { - "emuIRN": "158923", - "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/158923", - "date_made_early": "01 Jun 1891", - "date_made": "6/1/1891", - "date_made_late": "01 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15554" - }, - { - "emuIRN": "103187", - "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/103187", - "native_name": [ - "Tarocchino" - ], - "date_made_early": "03 Feb 1891", - "date_made": "2/3/1891", - "date_made_late": "03 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15555" - }, - { - "emuIRN": "178709", - "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", - "provenience": [ - "Italy", - "Povoletto-Udine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "F. L. Muccioli" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/178709", - "date_made_early": "09 May 1890", - "date_made": "5/9/1890", - "date_made_late": "09 May 1890", - "curatorial_section": "Historic", - "object_number": "15556" - }, - { - "emuIRN": "277112", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/277112", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15557" - }, - { - "emuIRN": "25552", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/25552", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15558" - }, - { - "emuIRN": "325482", - "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/325482", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1895", - "curatorial_section": "Historic", - "object_number": "15559" - }, - { - "emuIRN": "325483", - "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/325483", - "date_made_early": "12 Mar 2091", - "date_made": "3/12/91", - "date_made_late": "12 Mar 2091", - "curatorial_section": "Historic", - "object_number": "15560" - }, - { - "emuIRN": "48114", - "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/48114", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "22 Jun 1891", - "date_made": "6/22/1891", - "date_made_late": "22 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15561" - }, - { - "emuIRN": "167380", - "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/167380", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15562" - }, - { - "emuIRN": "321272", - "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Vincenzo Russo" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack", - "Neopolitan Pack" - ], - "url": "http://www.penn.museum/collections/object/321272", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "11 Feb 1891", - "date_made": "2/11/1891", - "date_made_late": "11 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15563" - }, - { - "emuIRN": "279915", - "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Luigi Pignalosa" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/279915", - "date_made_early": "14 Feb 1891", - "date_made": "2/14/1891", - "date_made_late": "14 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15564" - }, - { - "emuIRN": "157272", - "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/157272", - "date_made_early": "04 Oct 1888", - "date_made": "10/4/1888", - "date_made_late": "04 Oct 1888", - "curatorial_section": "Historic", - "object_number": "15566" - }, - { - "emuIRN": "88522", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/88522", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15567" - }, - { - "emuIRN": "177453", - "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/177453", - "date_made_early": "24 Mar 1891", - "date_made": "3/24/1891", - "date_made_late": "24 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15568" - }, - { - "emuIRN": "322855", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322855", - "date_made_early": "25 Nov 1890", - "date_made": "11/25/1890", - "date_made_late": "25 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15569" - }, - { - "emuIRN": "322856", - "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322856", - "date_made_early": "27 Jul 2091", - "date_made": "7/27/91", - "date_made_late": "27 Jul 2091", - "curatorial_section": "Historic", - "object_number": "15570" - }, - { - "emuIRN": "289232", - "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/289232", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15571" - }, - { - "emuIRN": "71704", - "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "L. Bartolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/71704", - "date_made_early": "02 Jul 1892", - "date_made": "7/2/1892", - "date_made_late": "02 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15572" - }, - { - "emuIRN": "341571", - "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Silvertrini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/341571", - "date_made_early": "01 Jul 1892", - "date_made": "7/1/1892", - "date_made_late": "01 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15573" - }, - { - "emuIRN": "231215", - "description": "Playing card deck - 44 cards", - "provenience": [ - "Italy", - "Bergamo" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Masenghini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Milanese Deck" - ], - "url": "http://www.penn.museum/collections/object/231215", - "curatorial_section": "Historic", - "object_number": "15575" - }, - { - "emuIRN": "290651", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", - "provenience": [ - "Italy", - "Trento" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giac. Bertoldi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/290651", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15577" - }, - { - "emuIRN": "116249", - "description": "Playing card deck - 40 cards, printed back with pink abstract designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/116249", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15578" - }, - { - "emuIRN": "76331", - "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/76331", - "date_made_early": "1867", - "date_made": "c.1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15579" - }, - { - "emuIRN": "76332", - "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/76332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15580" - }, - { - "emuIRN": "189908", - "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/189908", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15583" - }, - { - "emuIRN": "275719", - "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/275719", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15584" - }, - { - "emuIRN": "51584", - "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/51584", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15585" - }, - { - "emuIRN": "56004", - "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Crispolani" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/56004", - "date_made_early": "1850", - "date_made": "circa 1860", - "date_made_late": "1870", - "curatorial_section": "Historic", - "object_number": "15586" - }, - { - "emuIRN": "124979", - "description": "Playing card deck - Tarocchi/Tarot - 78 cards", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/124979", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15587" - }, - { - "emuIRN": "212458", - "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "url": "http://www.penn.museum/collections/object/212458", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15588" - }, - { - "emuIRN": "309331", - "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "G. C. Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309331", - "date_made_early": "30 Mar 1891", - "date_made": "3/30/1891", - "date_made_late": "30 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15589" - }, - { - "emuIRN": "309332", - "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15590" - }, - { - "emuIRN": "86979", - "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/86979", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15592" - }, - { - "emuIRN": "5817", - "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5817", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15594" - }, - { - "emuIRN": "170983", - "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Baby", - "Angel" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/170983", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15595" - }, - { - "emuIRN": "300071", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Tambourine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/300071", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15596" - }, - { - "emuIRN": "236603", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236603", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15597" - }, - { - "emuIRN": "141064", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141064", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15598" - }, - { - "emuIRN": "126294", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", - "provenience": [ - "Italy", - "Treviso" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Francesca Rino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/126294", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15599" - }, - { - "emuIRN": "309333", - "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", - "provenience": [ - "Italy", - "Parma (Italy)" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Faelli Carlo" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309333", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15600" - }, - { - "emuIRN": "261187", - "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Cassini Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Cucu" - ], - "url": "http://www.penn.museum/collections/object/261187", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15601" - }, - { - "emuIRN": "5818", - "description": "40 cards with wrapper. Printed back: green and blue plaid", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5818", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15604" - }, - { - "emuIRN": "236604", - "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236604", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15607" - }, - { - "emuIRN": "141065", - "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141065", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15608" - }, - { - "emuIRN": "319728", - "description": "Playing card deck - 40 cards", - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/319728", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15621" - }, - { - "emuIRN": "119150", - "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Florentine Pack" - ], - "url": "http://www.penn.museum/collections/object/119150", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15622" - }, - { - "emuIRN": "92457", - "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/92457", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15623" - }, - { - "emuIRN": "406753", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406753", - "curatorial_section": "Historic", - "object_number": "19124.15" - }, - { - "emuIRN": "406754", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406754", - "curatorial_section": "Historic", - "object_number": "19124.16" - }, - { - "emuIRN": "406755", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406755", - "curatorial_section": "Historic", - "object_number": "19124.17" - }, - { - "emuIRN": "406756", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406756", - "curatorial_section": "Historic", - "object_number": "19124.18" - }, - { - "emuIRN": "406757", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406757", - "curatorial_section": "Historic", - "object_number": "19124.19" - }, - { - "emuIRN": "406758", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406758", - "curatorial_section": "Historic", - "object_number": "19124.20" - }, - { - "emuIRN": "406759", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406759", - "curatorial_section": "Historic", - "object_number": "19124.21" - }, - { - "emuIRN": "406760", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406760", - "curatorial_section": "Historic", - "object_number": "19124.22" - }, - { - "emuIRN": "406761", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406761", - "curatorial_section": "Historic", - "object_number": "19124.23" - }, - { - "emuIRN": "406762", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406762", - "curatorial_section": "Historic", - "object_number": "19124.24" - }, - { - "emuIRN": "406763", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406763", - "curatorial_section": "Historic", - "object_number": "19124.25" - }, - { - "emuIRN": "406764", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406764", - "curatorial_section": "Historic", - "object_number": "19124.26" - }, - { - "emuIRN": "330556", - "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", - "provenience": [ - "Europe (uncertain)" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/330556", - "curatorial_section": "Historic", - "object_number": "29-191-128" - }, - { - "emuIRN": "321909", - "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/321909", - "curatorial_section": "Historic", - "object_number": "29-191-129" - }, - { - "emuIRN": "127367", - "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/127367", - "curatorial_section": "Historic", - "object_number": "29-191-227" - }, - { - "emuIRN": "203363", - "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", - "technique": [ - "Painted" - ], - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Paint", - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/203363", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15792" - }, - { - "emuIRN": "185526", - "description": "Red and gold sphere with small metall loop on 1 end", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of H. C. Thomson, 1894" - ], - "object_name": [ - "Whistling Top" - ], - "url": "http://www.penn.museum/collections/object/185526", - "curatorial_section": "Historic", - "object_number": "17817" - }, - { - "emuIRN": "59206", - "description": "Wood ball with metal spike. Cord for spinning", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top", - "Cord" - ], - "url": "http://www.penn.museum/collections/object/59206", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19214" - }, - { - "emuIRN": "186142", - "description": "Turned wood, bell-shaped with metal spike.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/186142", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19216" - }, - { - "emuIRN": "234646", - "description": "Toy rolling disc - wooden.", - "provenience": [ - "Italy" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Henry H. Giglioli, 1896" - ], - "object_name": [ - "Spinning Toy (uncertain)", - "Rolling Disc" - ], - "url": "http://www.penn.museum/collections/object/234646", - "curatorial_section": "Historic", - "object_number": "19217" - }, - { - "emuIRN": "134935", - "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal", - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1897" - ], - "object_name": [ - "Pinwheel" - ], - "url": "http://www.penn.museum/collections/object/134935", - "curatorial_section": "Historic", - "object_number": "20037" - }, - { - "emuIRN": "340545", - "description": "Turned wood ball with metal peg. Smaller version of 19214.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/340545", - "curatorial_section": "Historic", - "object_number": "19215A" - }, - { - "emuIRN": "273066", - "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Top Die", - "Teetotum" - ], - "url": "http://www.penn.museum/collections/object/273066", - "curatorial_section": "Historic", - "object_number": "71-18-6" - }, - { - "emuIRN": "146612", - "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", - "provenience": [ - "Japan" - ], - "material": [ - "Brass", - "Tin" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/146612", - "curatorial_section": "Historic", - "object_number": "71-18-11" - }, - { - "emuIRN": "264736", - "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top" - ], - "url": "http://www.penn.museum/collections/object/264736", - "curatorial_section": "Historic", - "object_number": "71-18-41" - }, - { - "emuIRN": "128464", - "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", - "provenience": [ - "West Germany" - ], - "culture": [ - "German" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/128464", - "curatorial_section": "Historic", - "object_number": "71-18-45" - }, - { - "emuIRN": "102950", - "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top", - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/102950", - "curatorial_section": "Historic", - "object_number": "71-18-50" - }, - { - "emuIRN": "215073", - "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Gyroscope" - ], - "url": "http://www.penn.museum/collections/object/215073", - "curatorial_section": "Historic", - "object_number": "71-18-53" - }, - { - "emuIRN": "281519", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/281519", - "curatorial_section": "Historic", - "object_number": "71-18-10A" - }, - { - "emuIRN": "132216", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/132216", - "curatorial_section": "Historic", - "object_number": "71-18-10B" - }, - { - "emuIRN": "222994", - "description": "Turned wooden spinnters. A-D have stems.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/222994", - "curatorial_section": "Historic", - "object_number": "71-18-17A" - }, - { - "emuIRN": "293378", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/293378", - "curatorial_section": "Historic", - "object_number": "71-18-17B" - }, - { - "emuIRN": "244262", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/244262", - "curatorial_section": "Historic", - "object_number": "71-18-17C" - }, - { - "emuIRN": "97422", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/97422", - "curatorial_section": "Historic", - "object_number": "71-18-17D" - }, - { - "emuIRN": "283240", - "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/283240", - "curatorial_section": "Historic", - "object_number": "71-18-17E" - }, - { - "emuIRN": "199531", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/199531", - "curatorial_section": "Historic", - "object_number": "71-18-20A" - }, - { - "emuIRN": "315942", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/315942", - "curatorial_section": "Historic", - "object_number": "71-18-20B" - }, - { - "emuIRN": "154811", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/154811", - "curatorial_section": "Historic", - "object_number": "71-18-20C" - }, - { - "emuIRN": "119329", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/119329", - "curatorial_section": "Historic", - "object_number": "71-18-20D" - }, - { - "emuIRN": "138169", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/138169", - "curatorial_section": "Historic", - "object_number": "71-18-20E" - }, - { - "emuIRN": "168699", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/168699", - "curatorial_section": "Historic", - "object_number": "71-18-20F" - }, - { - "emuIRN": "165852", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/165852", - "curatorial_section": "Historic", - "object_number": "71-18-20G" - }, - { - "emuIRN": "307682", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/307682", - "curatorial_section": "Historic", - "object_number": "71-18-20H" - }, - { - "emuIRN": "336448", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336448", - "curatorial_section": "Historic", - "object_number": "71-18-32A" - }, - { - "emuIRN": "181753", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/181753", - "curatorial_section": "Historic", - "object_number": "71-18-32B" - }, - { - "emuIRN": "277851", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/277851", - "curatorial_section": "Historic", - "object_number": "71-18-32C" - }, - { - "emuIRN": "44213", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/44213", - "curatorial_section": "Historic", - "object_number": "71-18-32D" - }, - { - "emuIRN": "343371", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/343371", - "curatorial_section": "Historic", - "object_number": "71-18-32E" - }, - { - "emuIRN": "405192", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "period": [ - "Modern" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/405192", - "curatorial_section": "Historic", - "object_number": "71-18-32F" - }, - { - "emuIRN": "174014", - "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinning Toy", - "Supported Top", - "Whistle" - ], - "url": "http://www.penn.museum/collections/object/174014", - "curatorial_section": "Historic", - "object_number": "71-18-72" - }, - { - "emuIRN": "54377", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/54377", - "curatorial_section": "Historic", - "object_number": "71-18-71A" - }, - { - "emuIRN": "336914", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336914", - "curatorial_section": "Historic", - "object_number": "71-18-71B" - }, - { - "emuIRN": "40527", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel", - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/40527", - "curatorial_section": "Historic", - "object_number": "71-18-71C" - }, - { - "emuIRN": "81633", - "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "iconography": [ - "Dog", - "Flag" - ], - "material": [ - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81633", - "other_numbers": [ - "533107" - ], - "curatorial_section": "Historic", - "object_number": "73-1-9" - }, - { - "emuIRN": "315995", - "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/315995", - "curatorial_section": "Historic", - "object_number": "73-1-11" - }, - { - "emuIRN": "81890", - "description": "Bi-colored light plastic top / yo-yo", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81890", - "curatorial_section": "Historic", - "object_number": "73-1-12" - }, - { - "emuIRN": "158974", - "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/158974", - "curatorial_section": "Historic", - "object_number": "73-1-21" - }, - { - "emuIRN": "270492", - "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/270492", - "curatorial_section": "Historic", - "object_number": "73-1-15B" - }, - { - "emuIRN": "122561", - "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "material": [ - "Plastic", - "Nylon" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/122561", - "curatorial_section": "Historic", - "object_number": "75-13-1" - }, - { - "emuIRN": "169135", - "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", - "provenience": [ - "Wisconsin", - "Milwaukee" - ], - "culture": [ - "American" - ], - "creator": [ - "Jak Pak Inc." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/169135", - "curatorial_section": "Historic", - "object_number": "75-13-18" - }, - { - "emuIRN": "265153", - "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", - "provenience": [ - "New York", - "Brooklyn" - ], - "culture": [ - "American" - ], - "creator": [ - "American Magnetop Corp." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/265153", - "curatorial_section": "Historic", - "object_number": "75-13-19" - }, - { - "emuIRN": "258185", - "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Giant Plastics Corp." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/258185", - "curatorial_section": "Historic", - "object_number": "75-13-21" - }, - { - "emuIRN": "112910", - "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", - "provenience": [ - "England" - ], - "culture": [ - "English" - ], - "creator": [ - "Christie & Jay, Ltd" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/112910", - "curatorial_section": "Historic", - "object_number": "75-13-30" - }, - { - "emuIRN": "206818", - "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", - "provenience": [ - "Tennessee", - "Nashville" - ], - "culture": [ - "American" - ], - "creator": [ - "Kusan, Inc" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Yo-Yo", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/206818", - "curatorial_section": "Historic", - "object_number": "75-13-32" - }, - { - "emuIRN": "320134", - "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", - "provenience": [ - "New York", - "Brooklyn" - ], - "creator": [ - "Shimmel" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/320134", - "curatorial_section": "Historic", - "object_number": "75-13-33" - }, - { - "emuIRN": "13411", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/13411", - "curatorial_section": "Historic", - "object_number": "75-13-10A" - }, - { - "emuIRN": "2151", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/2151", - "curatorial_section": "Historic", - "object_number": "75-13-10B" - }, - { - "emuIRN": "227620", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/227620", - "curatorial_section": "Historic", - "object_number": "75-13-10C" - }, - { - "emuIRN": "205966", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/205966", - "curatorial_section": "Historic", - "object_number": "75-13-29A" - }, - { - "emuIRN": "281691", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/281691", - "curatorial_section": "Historic", - "object_number": "75-13-29B" - }, - { - "emuIRN": "99171", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/99171", - "curatorial_section": "Historic", - "object_number": "75-13-29C" - }, - { - "emuIRN": "101034", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/101034", - "curatorial_section": "Historic", - "object_number": "75-13-29D" - }, - { - "emuIRN": "308170", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/308170", - "curatorial_section": "Historic", - "object_number": "75-13-29E" - }, - { - "emuIRN": "212263", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/212263", - "curatorial_section": "Historic", - "object_number": "75-13-29F" - }, - { - "emuIRN": "171295", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/171295", - "curatorial_section": "Historic", - "object_number": "75-13-29G" - }, - { - "emuIRN": "252428", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/252428", - "curatorial_section": "Historic", - "object_number": "75-13-29H" - }, - { - "emuIRN": "33474", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/33474", - "curatorial_section": "Historic", - "object_number": "75-13-29I" - }, - { - "emuIRN": "64988", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/64988", - "curatorial_section": "Historic", - "object_number": "75-13-29J" - }, - { - "emuIRN": "149403", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/149403", - "curatorial_section": "Historic", - "object_number": "75-13-29K" - }, - { - "emuIRN": "192238", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/192238", - "curatorial_section": "Historic", - "object_number": "75-13-29L" - }, - { - "emuIRN": "87050", - "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/87050", - "curatorial_section": "Historic", - "object_number": "75-13-5A" - }, - { - "emuIRN": "241334", - "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", - "provenience": [ - "Hawthorne" - ], - "culture": [ - "American" - ], - "creator": [ - "Mattel, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/241334", - "curatorial_section": "Historic", - "object_number": "75-13-9D" - }, - { - "emuIRN": "77859", - "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/77859", - "curatorial_section": "Historic", - "object_number": "71-18-24" - }, - { - "emuIRN": "285019", - "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top", - "Musical Top" - ], - "url": "http://www.penn.museum/collections/object/285019", - "curatorial_section": "Historic", - "object_number": "71-18-27" - }, - { - "emuIRN": "37984", - "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/37984", - "curatorial_section": "Historic", - "object_number": "71-18-38" - }, - { - "emuIRN": "239276", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/239276", - "curatorial_section": "Historic", - "object_number": "71-18-28A" - }, - { - "emuIRN": "32312", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/32312", - "curatorial_section": "Historic", - "object_number": "71-18-28B" - }, - { - "emuIRN": "65727", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/65727", - "curatorial_section": "Historic", - "object_number": "71-18-28C" - }, - { - "emuIRN": "274339", - "description": "Wire puzzle with boot and cap.", - "provenience": [ - "Europe", - "France (uncertain)" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Wire Puzzle" - ], - "url": "http://www.penn.museum/collections/object/274339", - "curatorial_section": "Historic", - "object_number": "8812" - }, - { - "emuIRN": "159716", - "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Selchow & Richter" - ], - "material": [ - "Cardboard" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/159716", - "date_made_early": "1880", - "date_made": "9/7/1880", - "date_made_late": "1880", - "curatorial_section": "Historic", - "object_number": "15496" - }, - { - "emuIRN": "18643", - "description": "12 lithographed cards with pictures of children's games. Fused to 16555", - "technique": [ - "Lithograph" - ], - "provenience": [ - "France", - "Paris (France)" - ], - "iconography": [ - "Games" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Cards" - ], - "url": "http://www.penn.museum/collections/object/18643", - "curatorial_section": "Historic", - "object_number": "16231" - }, - { - "emuIRN": "34693", - "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Metal", - "Glass", - "Wood" - ], - "accession_credit_line": [ - "Gift of Mrs. John Harrison, 1894" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/34693", - "date_made_early": "1869", - "date_made": "c. 1894", - "date_made_late": "1894", - "curatorial_section": "Historic", - "object_number": "16401" - }, - { - "emuIRN": "93791", - "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", - "provenience": [ - "England", - "London" - ], - "culture": [ - "British" - ], - "accession_credit_line": [ - "Gift of Henry Jones, 1893" - ], - "object_name": [ - "Card Game", - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93791", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "16555" - }, - { - "emuIRN": "117728", - "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "creator": [ - "Donaldson Brothers" - ], - "material": [ - "Paper" - ], - "object_name": [ - "Puzzle", - "Advertisement" - ], - "url": "http://www.penn.museum/collections/object/117728", - "curatorial_section": "Historic", - "object_number": "18578" - }, - { - "emuIRN": "303943", - "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", - "provenience": [ - "Pennsylvania", - "Bucks County" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Glass", - "Metal", - "String", - "Cork" - ], - "accession_credit_line": [ - "Gift of Col. Henry D. Paxson, 1897" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/303943", - "curatorial_section": "Historic", - "object_number": "20067" - }, - { - "emuIRN": "287388", - "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Dr. Max Uhle, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/287388", - "curatorial_section": "Historic", - "object_number": "21082" - }, - { - "emuIRN": "140578", - "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/140578", - "curatorial_section": "Historic", - "object_number": "21458" - }, - { - "emuIRN": "120293", - "description": "Wood Board with instructions. Metal Arm.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120293", - "curatorial_section": "Historic", - "object_number": "21460" - }, - { - "emuIRN": "25280", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/25280", - "curatorial_section": "Historic", - "object_number": "21594A" - }, - { - "emuIRN": "406863", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/406863", - "curatorial_section": "Historic", - "object_number": "21594B" - }, - { - "emuIRN": "93703", - "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "The American Game and Puzzle Company" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93703", - "curatorial_section": "Historic", - "object_number": "29-191-146" - }, - { - "emuIRN": "64758", - "description": "Yamato Block Puzzle - 6 pieces of wood", - "provenience": [ - "Japan" - ], - "culture": [ - "Japanese" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64758", - "curatorial_section": "Historic", - "object_number": "29-191-159" - }, - { - "emuIRN": "64759", - "description": "See Dar Wonderful - 9 pieces of wood", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64759", - "curatorial_section": "Historic", - "object_number": "29-191-160" - }, - { - "emuIRN": "30391", - "description": "12 pieces", - "provenience": [ - "New York", - "New York City" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle", - "Reproduction (uncertain)" - ], - "url": "http://www.penn.museum/collections/object/30391", - "curatorial_section": "Historic", - "object_number": "29-191-161" - }, - { - "emuIRN": "22499", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/22499", - "other_numbers": [ - "4001" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157B" - }, - { - "emuIRN": "120252", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120252", - "other_numbers": [ - "4001?" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157C" - }, - { - "emuIRN": "156290", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/156290", - "other_numbers": [ - "4002" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157D" - }, - { - "emuIRN": "99398", - "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", - "provenience": [ - "Pennsylvania", - "Pittsburgh" - ], - "culture": [ - "American" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Charles Este, Jr., 1899" - ], - "object_name": [ - "Puzzle", - "Trick" - ], - "url": "http://www.penn.museum/collections/object/99398", - "curatorial_section": "Historic", - "object_number": "19783" - }, - { - "emuIRN": "130464", - "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/130464", - "native_name": [ - "Cartes a Jouer" - ], - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "7594" - }, - { - "emuIRN": "160242", - "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/160242", - "date_made_early": "1800", - "date_made": "1800-1899", - "date_made_late": "1899", - "curatorial_section": "Historic", - "object_number": "7595" - }, - { - "emuIRN": "157104", - "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1890" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "url": "http://www.penn.museum/collections/object/157104", - "date_made_early": "1800", - "date_made": "19th century", - "date_made_late": "1890", - "curatorial_section": "Historic", - "object_number": "7629" - }, - { - "emuIRN": "157105", - "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "C. L. Wust" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of J. D. Sergeant, 1890" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/157105", - "curatorial_section": "Historic", - "object_number": "7630" - }, - { - "emuIRN": "98559", - "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "B. Dondorf" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of W. Yorke Stevenson, 1891" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/98559", - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "other_numbers": [ - "27" - ], - "curatorial_section": "Historic", - "object_number": "7712" - }, - { - "emuIRN": "248509", - "description": "Card dominoes in box.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Card Game", - "Dominoe" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/248509", - "curatorial_section": "Historic", - "object_number": "8813" - }, - { - "emuIRN": "137944", - "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/137944", - "date_made_early": "1866", - "date_made": "c. 1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "9011" - }, - { - "emuIRN": "194220", - "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "creator": [ - "Watilliaux" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/194220", - "date_made_early": "1878", - "date_made": "1878", - "date_made_late": "1878", - "curatorial_section": "Historic", - "object_number": "9018" - }, - { - "emuIRN": "205296", - "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", - "technique": [ - "Printed" - ], - "provenience": [ - "Mexico (Central America)", - "Puebla (Mexican State)" - ], - "culture": [ - "Spanish" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of the US National Museum, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/205296", - "date_made_early": "1873", - "date_made": "1873-1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15360" - }, - { - "emuIRN": "21030", - "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Fortune Telling Cards" - ], - "url": "http://www.penn.museum/collections/object/21030", - "date_made_early": "1865", - "date_made": "pre 1890", - "date_made_late": "1890", - "other_numbers": [ - "43" - ], - "curatorial_section": "Historic", - "object_number": "15513" - }, - { - "emuIRN": "46932", - "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", - "provenience": [ - "Italy", - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/46932", - "date_made_early": "1880", - "date_made": "1880-1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15528" - }, - { - "emuIRN": "220035", - "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/220035", - "date_made_early": "29 Nov 1890", - "date_made": "11/29/1890", - "date_made_late": "29 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15529" - }, - { - "emuIRN": "220036", - "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/220036", - "date_made_early": "27 Oct 1890", - "date_made": "10/27/1890", - "date_made_late": "27 Oct 1890", - "other_numbers": [ - "42" - ], - "curatorial_section": "Historic", - "object_number": "15530" - }, - { - "emuIRN": "289473", - "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/289473", - "date_made_early": "17 Jan 1887", - "date_made": "1/17/1887", - "date_made_late": "17 Jan 1887", - "curatorial_section": "Historic", - "object_number": "15532" - }, - { - "emuIRN": "114394", - "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/114394", - "date_made_early": "1867", - "date_made": " pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15533" - }, - { - "emuIRN": "82994", - "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/82994", - "date_made_early": "17 Jun 1890", - "date_made": "6/17/1890", - "date_made_late": "17 Jun 1890", - "other_numbers": [ - "13" - ], - "curatorial_section": "Historic", - "object_number": "15534" - }, - { - "emuIRN": "233242", - "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/233242", - "date_made_early": "13 Mar 1891", - "date_made": "3/13/1891", - "date_made_late": "13 Mar 1891", - "other_numbers": [ - "5" - ], - "curatorial_section": "Historic", - "object_number": "15536" - }, - { - "emuIRN": "237987", - "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/237987", - "date_made_early": "13 Mar 1891", - "date_made": "pre 1892", - "date_made_late": "13 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15537" - }, - { - "emuIRN": "264110", - "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/264110", - "date_made_early": "1867", - "date_made": "pre 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15538" - }, - { - "emuIRN": "36188", - "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/36188", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15540" - }, - { - "emuIRN": "154504", - "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/154504", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15541" - }, - { - "emuIRN": "203963", - "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/203963", - "date_made_early": "27 Aug 1891", - "date_made": "8/27/1891", - "date_made_late": "27 Aug 1891", - "curatorial_section": "Historic", - "object_number": "15543" - }, - { - "emuIRN": "241994", - "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/241994", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15544" - }, - { - "emuIRN": "243680", - "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/243680", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15545" - }, - { - "emuIRN": "87145", - "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/87145", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15546" - }, - { - "emuIRN": "59271", - "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/59271", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15547" - }, - { - "emuIRN": "336096", - "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/336096", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15548" - }, - { - "emuIRN": "203973", - "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/203973", - "date_made_early": "09 Apr 1888", - "date_made": "4/9/1888", - "date_made_late": "09 Apr 1888", - "curatorial_section": "Historic", - "object_number": "15550" - }, - { - "emuIRN": "238541", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/238541", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15552" - }, - { - "emuIRN": "131933", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/131933", - "date_made_early": "16 Jun 1891", - "date_made": "6/16/1891", - "date_made_late": "16 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15553" - }, - { - "emuIRN": "158923", - "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/158923", - "date_made_early": "01 Jun 1891", - "date_made": "6/1/1891", - "date_made_late": "01 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15554" - }, - { - "emuIRN": "103187", - "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/103187", - "native_name": [ - "Tarocchino" - ], - "date_made_early": "03 Feb 1891", - "date_made": "2/3/1891", - "date_made_late": "03 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15555" - }, - { - "emuIRN": "178709", - "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", - "provenience": [ - "Italy", - "Povoletto-Udine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "F. L. Muccioli" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/178709", - "date_made_early": "09 May 1890", - "date_made": "5/9/1890", - "date_made_late": "09 May 1890", - "curatorial_section": "Historic", - "object_number": "15556" - }, - { - "emuIRN": "277112", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/277112", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15557" - }, - { - "emuIRN": "25552", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/25552", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15558" - }, - { - "emuIRN": "325482", - "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/325482", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1895", - "curatorial_section": "Historic", - "object_number": "15559" - }, - { - "emuIRN": "325483", - "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/325483", - "date_made_early": "12 Mar 2091", - "date_made": "3/12/91", - "date_made_late": "12 Mar 2091", - "curatorial_section": "Historic", - "object_number": "15560" - }, - { - "emuIRN": "48114", - "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/48114", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "22 Jun 1891", - "date_made": "6/22/1891", - "date_made_late": "22 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15561" - }, - { - "emuIRN": "167380", - "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/167380", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15562" - }, - { - "emuIRN": "321272", - "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Vincenzo Russo" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack", - "Neopolitan Pack" - ], - "url": "http://www.penn.museum/collections/object/321272", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "11 Feb 1891", - "date_made": "2/11/1891", - "date_made_late": "11 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15563" - }, - { - "emuIRN": "279915", - "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Luigi Pignalosa" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/279915", - "date_made_early": "14 Feb 1891", - "date_made": "2/14/1891", - "date_made_late": "14 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15564" - }, - { - "emuIRN": "157272", - "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/157272", - "date_made_early": "04 Oct 1888", - "date_made": "10/4/1888", - "date_made_late": "04 Oct 1888", - "curatorial_section": "Historic", - "object_number": "15566" - }, - { - "emuIRN": "88522", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/88522", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15567" - }, - { - "emuIRN": "177453", - "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/177453", - "date_made_early": "24 Mar 1891", - "date_made": "3/24/1891", - "date_made_late": "24 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15568" - }, - { - "emuIRN": "322855", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322855", - "date_made_early": "25 Nov 1890", - "date_made": "11/25/1890", - "date_made_late": "25 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15569" - }, - { - "emuIRN": "322856", - "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322856", - "date_made_early": "27 Jul 2091", - "date_made": "7/27/91", - "date_made_late": "27 Jul 2091", - "curatorial_section": "Historic", - "object_number": "15570" - }, - { - "emuIRN": "289232", - "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/289232", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15571" - }, - { - "emuIRN": "71704", - "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "L. Bartolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/71704", - "date_made_early": "02 Jul 1892", - "date_made": "7/2/1892", - "date_made_late": "02 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15572" - }, - { - "emuIRN": "341571", - "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Silvertrini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/341571", - "date_made_early": "01 Jul 1892", - "date_made": "7/1/1892", - "date_made_late": "01 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15573" - }, - { - "emuIRN": "231215", - "description": "Playing card deck - 44 cards", - "provenience": [ - "Italy", - "Bergamo" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Masenghini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Milanese Deck" - ], - "url": "http://www.penn.museum/collections/object/231215", - "curatorial_section": "Historic", - "object_number": "15575" - }, - { - "emuIRN": "290651", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", - "provenience": [ - "Italy", - "Trento" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giac. Bertoldi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/290651", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15577" - }, - { - "emuIRN": "116249", - "description": "Playing card deck - 40 cards, printed back with pink abstract designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/116249", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15578" - }, - { - "emuIRN": "76331", - "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/76331", - "date_made_early": "1867", - "date_made": "c.1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15579" - }, - { - "emuIRN": "76332", - "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/76332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15580" - }, - { - "emuIRN": "189908", - "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/189908", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15583" - }, - { - "emuIRN": "275719", - "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/275719", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15584" - }, - { - "emuIRN": "51584", - "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/51584", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15585" - }, - { - "emuIRN": "56004", - "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Crispolani" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/56004", - "date_made_early": "1850", - "date_made": "circa 1860", - "date_made_late": "1870", - "curatorial_section": "Historic", - "object_number": "15586" - }, - { - "emuIRN": "124979", - "description": "Playing card deck - Tarocchi/Tarot - 78 cards", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/124979", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15587" - }, - { - "emuIRN": "212458", - "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "url": "http://www.penn.museum/collections/object/212458", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15588" - }, - { - "emuIRN": "309331", - "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "G. C. Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309331", - "date_made_early": "30 Mar 1891", - "date_made": "3/30/1891", - "date_made_late": "30 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15589" - }, - { - "emuIRN": "309332", - "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15590" - }, - { - "emuIRN": "86979", - "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/86979", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15592" - }, - { - "emuIRN": "5817", - "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5817", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15594" - }, - { - "emuIRN": "170983", - "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Baby", - "Angel" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/170983", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15595" - }, - { - "emuIRN": "300071", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Tambourine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/300071", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15596" - }, - { - "emuIRN": "236603", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236603", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15597" - }, - { - "emuIRN": "141064", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141064", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15598" - }, - { - "emuIRN": "126294", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", - "provenience": [ - "Italy", - "Treviso" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Francesca Rino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/126294", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15599" - }, - { - "emuIRN": "309333", - "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", - "provenience": [ - "Italy", - "Parma (Italy)" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Faelli Carlo" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309333", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15600" - }, - { - "emuIRN": "261187", - "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Cassini Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Cucu" - ], - "url": "http://www.penn.museum/collections/object/261187", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15601" - }, - { - "emuIRN": "5818", - "description": "40 cards with wrapper. Printed back: green and blue plaid", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5818", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15604" - }, - { - "emuIRN": "236604", - "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236604", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15607" - }, - { - "emuIRN": "141065", - "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141065", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15608" - }, - { - "emuIRN": "319728", - "description": "Playing card deck - 40 cards", - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/319728", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15621" - }, - { - "emuIRN": "119150", - "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Florentine Pack" - ], - "url": "http://www.penn.museum/collections/object/119150", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15622" - }, - { - "emuIRN": "92457", - "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/92457", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15623" - }, - { - "emuIRN": "406753", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406753", - "curatorial_section": "Historic", - "object_number": "19124.15" - }, - { - "emuIRN": "406754", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406754", - "curatorial_section": "Historic", - "object_number": "19124.16" - }, - { - "emuIRN": "406755", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406755", - "curatorial_section": "Historic", - "object_number": "19124.17" - }, - { - "emuIRN": "406756", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406756", - "curatorial_section": "Historic", - "object_number": "19124.18" - }, - { - "emuIRN": "406757", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406757", - "curatorial_section": "Historic", - "object_number": "19124.19" - }, - { - "emuIRN": "406758", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406758", - "curatorial_section": "Historic", - "object_number": "19124.20" - }, - { - "emuIRN": "406759", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406759", - "curatorial_section": "Historic", - "object_number": "19124.21" - }, - { - "emuIRN": "406760", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406760", - "curatorial_section": "Historic", - "object_number": "19124.22" - }, - { - "emuIRN": "406761", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406761", - "curatorial_section": "Historic", - "object_number": "19124.23" - }, - { - "emuIRN": "406762", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406762", - "curatorial_section": "Historic", - "object_number": "19124.24" - }, - { - "emuIRN": "406763", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406763", - "curatorial_section": "Historic", - "object_number": "19124.25" - }, - { - "emuIRN": "406764", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406764", - "curatorial_section": "Historic", - "object_number": "19124.26" - }, - { - "emuIRN": "330556", - "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", - "provenience": [ - "Europe (uncertain)" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/330556", - "curatorial_section": "Historic", - "object_number": "29-191-128" - }, - { - "emuIRN": "321909", - "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/321909", - "curatorial_section": "Historic", - "object_number": "29-191-129" - }, - { - "emuIRN": "127367", - "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/127367", - "curatorial_section": "Historic", - "object_number": "29-191-227" - }, - { - "emuIRN": "203363", - "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", - "technique": [ - "Painted" - ], - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Paint", - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/203363", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15792" - }, - { - "emuIRN": "185526", - "description": "Red and gold sphere with small metall loop on 1 end", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of H. C. Thomson, 1894" - ], - "object_name": [ - "Whistling Top" - ], - "url": "http://www.penn.museum/collections/object/185526", - "curatorial_section": "Historic", - "object_number": "17817" - }, - { - "emuIRN": "59206", - "description": "Wood ball with metal spike. Cord for spinning", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top", - "Cord" - ], - "url": "http://www.penn.museum/collections/object/59206", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19214" - }, - { - "emuIRN": "186142", - "description": "Turned wood, bell-shaped with metal spike.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/186142", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19216" - }, - { - "emuIRN": "234646", - "description": "Toy rolling disc - wooden.", - "provenience": [ - "Italy" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Henry H. Giglioli, 1896" - ], - "object_name": [ - "Spinning Toy (uncertain)", - "Rolling Disc" - ], - "url": "http://www.penn.museum/collections/object/234646", - "curatorial_section": "Historic", - "object_number": "19217" - }, - { - "emuIRN": "134935", - "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal", - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1897" - ], - "object_name": [ - "Pinwheel" - ], - "url": "http://www.penn.museum/collections/object/134935", - "curatorial_section": "Historic", - "object_number": "20037" - }, - { - "emuIRN": "340545", - "description": "Turned wood ball with metal peg. Smaller version of 19214.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/340545", - "curatorial_section": "Historic", - "object_number": "19215A" - }, - { - "emuIRN": "273066", - "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Top Die", - "Teetotum" - ], - "url": "http://www.penn.museum/collections/object/273066", - "curatorial_section": "Historic", - "object_number": "71-18-6" - }, - { - "emuIRN": "146612", - "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", - "provenience": [ - "Japan" - ], - "material": [ - "Brass", - "Tin" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/146612", - "curatorial_section": "Historic", - "object_number": "71-18-11" - }, - { - "emuIRN": "264736", - "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top" - ], - "url": "http://www.penn.museum/collections/object/264736", - "curatorial_section": "Historic", - "object_number": "71-18-41" - }, - { - "emuIRN": "128464", - "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", - "provenience": [ - "West Germany" - ], - "culture": [ - "German" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/128464", - "curatorial_section": "Historic", - "object_number": "71-18-45" - }, - { - "emuIRN": "102950", - "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top", - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/102950", - "curatorial_section": "Historic", - "object_number": "71-18-50" - }, - { - "emuIRN": "215073", - "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Gyroscope" - ], - "url": "http://www.penn.museum/collections/object/215073", - "curatorial_section": "Historic", - "object_number": "71-18-53" - }, - { - "emuIRN": "281519", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/281519", - "curatorial_section": "Historic", - "object_number": "71-18-10A" - }, - { - "emuIRN": "132216", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/132216", - "curatorial_section": "Historic", - "object_number": "71-18-10B" - }, - { - "emuIRN": "222994", - "description": "Turned wooden spinnters. A-D have stems.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/222994", - "curatorial_section": "Historic", - "object_number": "71-18-17A" - }, - { - "emuIRN": "293378", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/293378", - "curatorial_section": "Historic", - "object_number": "71-18-17B" - }, - { - "emuIRN": "244262", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/244262", - "curatorial_section": "Historic", - "object_number": "71-18-17C" - }, - { - "emuIRN": "97422", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/97422", - "curatorial_section": "Historic", - "object_number": "71-18-17D" - }, - { - "emuIRN": "283240", - "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/283240", - "curatorial_section": "Historic", - "object_number": "71-18-17E" - }, - { - "emuIRN": "199531", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/199531", - "curatorial_section": "Historic", - "object_number": "71-18-20A" - }, - { - "emuIRN": "315942", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/315942", - "curatorial_section": "Historic", - "object_number": "71-18-20B" - }, - { - "emuIRN": "154811", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/154811", - "curatorial_section": "Historic", - "object_number": "71-18-20C" - }, - { - "emuIRN": "119329", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/119329", - "curatorial_section": "Historic", - "object_number": "71-18-20D" - }, - { - "emuIRN": "138169", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/138169", - "curatorial_section": "Historic", - "object_number": "71-18-20E" - }, - { - "emuIRN": "168699", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/168699", - "curatorial_section": "Historic", - "object_number": "71-18-20F" - }, - { - "emuIRN": "165852", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/165852", - "curatorial_section": "Historic", - "object_number": "71-18-20G" - }, - { - "emuIRN": "307682", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/307682", - "curatorial_section": "Historic", - "object_number": "71-18-20H" - }, - { - "emuIRN": "336448", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336448", - "curatorial_section": "Historic", - "object_number": "71-18-32A" - }, - { - "emuIRN": "181753", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/181753", - "curatorial_section": "Historic", - "object_number": "71-18-32B" - }, - { - "emuIRN": "277851", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/277851", - "curatorial_section": "Historic", - "object_number": "71-18-32C" - }, - { - "emuIRN": "44213", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/44213", - "curatorial_section": "Historic", - "object_number": "71-18-32D" - }, - { - "emuIRN": "343371", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/343371", - "curatorial_section": "Historic", - "object_number": "71-18-32E" - }, - { - "emuIRN": "405192", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "period": [ - "Modern" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/405192", - "curatorial_section": "Historic", - "object_number": "71-18-32F" - }, - { - "emuIRN": "174014", - "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinning Toy", - "Supported Top", - "Whistle" - ], - "url": "http://www.penn.museum/collections/object/174014", - "curatorial_section": "Historic", - "object_number": "71-18-72" - }, - { - "emuIRN": "54377", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/54377", - "curatorial_section": "Historic", - "object_number": "71-18-71A" - }, - { - "emuIRN": "336914", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336914", - "curatorial_section": "Historic", - "object_number": "71-18-71B" - }, - { - "emuIRN": "40527", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel", - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/40527", - "curatorial_section": "Historic", - "object_number": "71-18-71C" - }, - { - "emuIRN": "81633", - "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "iconography": [ - "Dog", - "Flag" - ], - "material": [ - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81633", - "other_numbers": [ - "533107" - ], - "curatorial_section": "Historic", - "object_number": "73-1-9" - }, - { - "emuIRN": "315995", - "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/315995", - "curatorial_section": "Historic", - "object_number": "73-1-11" - }, - { - "emuIRN": "81890", - "description": "Bi-colored light plastic top / yo-yo", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81890", - "curatorial_section": "Historic", - "object_number": "73-1-12" - }, - { - "emuIRN": "158974", - "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/158974", - "curatorial_section": "Historic", - "object_number": "73-1-21" - }, - { - "emuIRN": "270492", - "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/270492", - "curatorial_section": "Historic", - "object_number": "73-1-15B" - }, - { - "emuIRN": "122561", - "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "material": [ - "Plastic", - "Nylon" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/122561", - "curatorial_section": "Historic", - "object_number": "75-13-1" - }, - { - "emuIRN": "169135", - "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", - "provenience": [ - "Wisconsin", - "Milwaukee" - ], - "culture": [ - "American" - ], - "creator": [ - "Jak Pak Inc." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/169135", - "curatorial_section": "Historic", - "object_number": "75-13-18" - }, - { - "emuIRN": "265153", - "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", - "provenience": [ - "New York", - "Brooklyn" - ], - "culture": [ - "American" - ], - "creator": [ - "American Magnetop Corp." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/265153", - "curatorial_section": "Historic", - "object_number": "75-13-19" - }, - { - "emuIRN": "258185", - "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Giant Plastics Corp." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/258185", - "curatorial_section": "Historic", - "object_number": "75-13-21" - }, - { - "emuIRN": "112910", - "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", - "provenience": [ - "England" - ], - "culture": [ - "English" - ], - "creator": [ - "Christie & Jay, Ltd" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/112910", - "curatorial_section": "Historic", - "object_number": "75-13-30" - }, - { - "emuIRN": "206818", - "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", - "provenience": [ - "Tennessee", - "Nashville" - ], - "culture": [ - "American" - ], - "creator": [ - "Kusan, Inc" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Yo-Yo", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/206818", - "curatorial_section": "Historic", - "object_number": "75-13-32" - }, - { - "emuIRN": "320134", - "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", - "provenience": [ - "New York", - "Brooklyn" - ], - "creator": [ - "Shimmel" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/320134", - "curatorial_section": "Historic", - "object_number": "75-13-33" - }, - { - "emuIRN": "13411", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/13411", - "curatorial_section": "Historic", - "object_number": "75-13-10A" - }, - { - "emuIRN": "2151", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/2151", - "curatorial_section": "Historic", - "object_number": "75-13-10B" - }, - { - "emuIRN": "227620", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/227620", - "curatorial_section": "Historic", - "object_number": "75-13-10C" - }, - { - "emuIRN": "205966", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/205966", - "curatorial_section": "Historic", - "object_number": "75-13-29A" - }, - { - "emuIRN": "281691", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/281691", - "curatorial_section": "Historic", - "object_number": "75-13-29B" - }, - { - "emuIRN": "99171", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/99171", - "curatorial_section": "Historic", - "object_number": "75-13-29C" - }, - { - "emuIRN": "101034", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/101034", - "curatorial_section": "Historic", - "object_number": "75-13-29D" - }, - { - "emuIRN": "308170", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/308170", - "curatorial_section": "Historic", - "object_number": "75-13-29E" - }, - { - "emuIRN": "212263", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/212263", - "curatorial_section": "Historic", - "object_number": "75-13-29F" - }, - { - "emuIRN": "171295", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/171295", - "curatorial_section": "Historic", - "object_number": "75-13-29G" - }, - { - "emuIRN": "252428", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/252428", - "curatorial_section": "Historic", - "object_number": "75-13-29H" - }, - { - "emuIRN": "33474", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/33474", - "curatorial_section": "Historic", - "object_number": "75-13-29I" - }, - { - "emuIRN": "64988", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/64988", - "curatorial_section": "Historic", - "object_number": "75-13-29J" - }, - { - "emuIRN": "149403", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/149403", - "curatorial_section": "Historic", - "object_number": "75-13-29K" - }, - { - "emuIRN": "192238", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/192238", - "curatorial_section": "Historic", - "object_number": "75-13-29L" - }, - { - "emuIRN": "87050", - "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/87050", - "curatorial_section": "Historic", - "object_number": "75-13-5A" - }, - { - "emuIRN": "241334", - "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", - "provenience": [ - "Hawthorne" - ], - "culture": [ - "American" - ], - "creator": [ - "Mattel, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/241334", - "curatorial_section": "Historic", - "object_number": "75-13-9D" - }, - { - "emuIRN": "77859", - "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/77859", - "curatorial_section": "Historic", - "object_number": "71-18-24" - }, - { - "emuIRN": "285019", - "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top", - "Musical Top" - ], - "url": "http://www.penn.museum/collections/object/285019", - "curatorial_section": "Historic", - "object_number": "71-18-27" - }, - { - "emuIRN": "37984", - "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/37984", - "curatorial_section": "Historic", - "object_number": "71-18-38" - }, - { - "emuIRN": "239276", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/239276", - "curatorial_section": "Historic", - "object_number": "71-18-28A" - }, - { - "emuIRN": "32312", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/32312", - "curatorial_section": "Historic", - "object_number": "71-18-28B" - }, - { - "emuIRN": "65727", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/65727", - "curatorial_section": "Historic", - "object_number": "71-18-28C" - }, - { - "emuIRN": "274339", - "description": "Wire puzzle with boot and cap.", - "provenience": [ - "Europe", - "France (uncertain)" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Wire Puzzle" - ], - "url": "http://www.penn.museum/collections/object/274339", - "curatorial_section": "Historic", - "object_number": "8812" - }, - { - "emuIRN": "159716", - "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Selchow & Richter" - ], - "material": [ - "Cardboard" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/159716", - "date_made_early": "1880", - "date_made": "9/7/1880", - "date_made_late": "1880", - "curatorial_section": "Historic", - "object_number": "15496" - }, - { - "emuIRN": "18643", - "description": "12 lithographed cards with pictures of children's games. Fused to 16555", - "technique": [ - "Lithograph" - ], - "provenience": [ - "France", - "Paris (France)" - ], - "iconography": [ - "Games" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Cards" - ], - "url": "http://www.penn.museum/collections/object/18643", - "curatorial_section": "Historic", - "object_number": "16231" - }, - { - "emuIRN": "34693", - "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Metal", - "Glass", - "Wood" - ], - "accession_credit_line": [ - "Gift of Mrs. John Harrison, 1894" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/34693", - "date_made_early": "1869", - "date_made": "c. 1894", - "date_made_late": "1894", - "curatorial_section": "Historic", - "object_number": "16401" - }, - { - "emuIRN": "93791", - "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", - "provenience": [ - "England", - "London" - ], - "culture": [ - "British" - ], - "accession_credit_line": [ - "Gift of Henry Jones, 1893" - ], - "object_name": [ - "Card Game", - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93791", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "16555" - }, - { - "emuIRN": "117728", - "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "creator": [ - "Donaldson Brothers" - ], - "material": [ - "Paper" - ], - "object_name": [ - "Puzzle", - "Advertisement" - ], - "url": "http://www.penn.museum/collections/object/117728", - "curatorial_section": "Historic", - "object_number": "18578" - }, - { - "emuIRN": "303943", - "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", - "provenience": [ - "Pennsylvania", - "Bucks County" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Glass", - "Metal", - "String", - "Cork" - ], - "accession_credit_line": [ - "Gift of Col. Henry D. Paxson, 1897" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/303943", - "curatorial_section": "Historic", - "object_number": "20067" - }, - { - "emuIRN": "287388", - "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Dr. Max Uhle, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/287388", - "curatorial_section": "Historic", - "object_number": "21082" - }, - { - "emuIRN": "140578", - "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/140578", - "curatorial_section": "Historic", - "object_number": "21458" - }, - { - "emuIRN": "120293", - "description": "Wood Board with instructions. Metal Arm.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120293", - "curatorial_section": "Historic", - "object_number": "21460" - }, - { - "emuIRN": "25280", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/25280", - "curatorial_section": "Historic", - "object_number": "21594A" - }, - { - "emuIRN": "406863", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/406863", - "curatorial_section": "Historic", - "object_number": "21594B" - }, - { - "emuIRN": "93703", - "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "The American Game and Puzzle Company" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93703", - "curatorial_section": "Historic", - "object_number": "29-191-146" - }, - { - "emuIRN": "64758", - "description": "Yamato Block Puzzle - 6 pieces of wood", - "provenience": [ - "Japan" - ], - "culture": [ - "Japanese" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64758", - "curatorial_section": "Historic", - "object_number": "29-191-159" - }, - { - "emuIRN": "64759", - "description": "See Dar Wonderful - 9 pieces of wood", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64759", - "curatorial_section": "Historic", - "object_number": "29-191-160" - }, - { - "emuIRN": "30391", - "description": "12 pieces", - "provenience": [ - "New York", - "New York City" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle", - "Reproduction (uncertain)" - ], - "url": "http://www.penn.museum/collections/object/30391", - "curatorial_section": "Historic", - "object_number": "29-191-161" - }, - { - "emuIRN": "22499", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/22499", - "other_numbers": [ - "4001" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157B" - }, - { - "emuIRN": "120252", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120252", - "other_numbers": [ - "4001?" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157C" - }, - { - "emuIRN": "156290", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/156290", - "other_numbers": [ - "4002" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157D" - }, - { - "emuIRN": "99398", - "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", - "provenience": [ - "Pennsylvania", - "Pittsburgh" - ], - "culture": [ - "American" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Charles Este, Jr., 1899" - ], - "object_name": [ - "Puzzle", - "Trick" - ], - "url": "http://www.penn.museum/collections/object/99398", - "curatorial_section": "Historic", - "object_number": "19783" - }, - { - "emuIRN": "130464", - "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/130464", - "native_name": [ - "Cartes a Jouer" - ], - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "7594" - }, - { - "emuIRN": "160242", - "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/160242", - "date_made_early": "1800", - "date_made": "1800-1899", - "date_made_late": "1899", - "curatorial_section": "Historic", - "object_number": "7595" - }, - { - "emuIRN": "157104", - "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1890" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "url": "http://www.penn.museum/collections/object/157104", - "date_made_early": "1800", - "date_made": "19th century", - "date_made_late": "1890", - "curatorial_section": "Historic", - "object_number": "7629" - }, - { - "emuIRN": "157105", - "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "C. L. Wust" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of J. D. Sergeant, 1890" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/157105", - "curatorial_section": "Historic", - "object_number": "7630" - }, - { - "emuIRN": "98559", - "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "B. Dondorf" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of W. Yorke Stevenson, 1891" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/98559", - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "other_numbers": [ - "27" - ], - "curatorial_section": "Historic", - "object_number": "7712" - }, - { - "emuIRN": "248509", - "description": "Card dominoes in box.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Card Game", - "Dominoe" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/248509", - "curatorial_section": "Historic", - "object_number": "8813" - }, - { - "emuIRN": "137944", - "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/137944", - "date_made_early": "1866", - "date_made": "c. 1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "9011" - }, - { - "emuIRN": "194220", - "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "creator": [ - "Watilliaux" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/194220", - "date_made_early": "1878", - "date_made": "1878", - "date_made_late": "1878", - "curatorial_section": "Historic", - "object_number": "9018" - }, - { - "emuIRN": "205296", - "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", - "technique": [ - "Printed" - ], - "provenience": [ - "Mexico (Central America)", - "Puebla (Mexican State)" - ], - "culture": [ - "Spanish" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of the US National Museum, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/205296", - "date_made_early": "1873", - "date_made": "1873-1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15360" - }, - { - "emuIRN": "21030", - "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Fortune Telling Cards" - ], - "url": "http://www.penn.museum/collections/object/21030", - "date_made_early": "1865", - "date_made": "pre 1890", - "date_made_late": "1890", - "other_numbers": [ - "43" - ], - "curatorial_section": "Historic", - "object_number": "15513" - }, - { - "emuIRN": "46932", - "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", - "provenience": [ - "Italy", - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/46932", - "date_made_early": "1880", - "date_made": "1880-1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15528" - }, - { - "emuIRN": "220035", - "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/220035", - "date_made_early": "29 Nov 1890", - "date_made": "11/29/1890", - "date_made_late": "29 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15529" - }, - { - "emuIRN": "220036", - "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/220036", - "date_made_early": "27 Oct 1890", - "date_made": "10/27/1890", - "date_made_late": "27 Oct 1890", - "other_numbers": [ - "42" - ], - "curatorial_section": "Historic", - "object_number": "15530" - }, - { - "emuIRN": "289473", - "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/289473", - "date_made_early": "17 Jan 1887", - "date_made": "1/17/1887", - "date_made_late": "17 Jan 1887", - "curatorial_section": "Historic", - "object_number": "15532" - }, - { - "emuIRN": "114394", - "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/114394", - "date_made_early": "1867", - "date_made": " pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15533" - }, - { - "emuIRN": "82994", - "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/82994", - "date_made_early": "17 Jun 1890", - "date_made": "6/17/1890", - "date_made_late": "17 Jun 1890", - "other_numbers": [ - "13" - ], - "curatorial_section": "Historic", - "object_number": "15534" - }, - { - "emuIRN": "233242", - "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/233242", - "date_made_early": "13 Mar 1891", - "date_made": "3/13/1891", - "date_made_late": "13 Mar 1891", - "other_numbers": [ - "5" - ], - "curatorial_section": "Historic", - "object_number": "15536" - }, - { - "emuIRN": "237987", - "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/237987", - "date_made_early": "13 Mar 1891", - "date_made": "pre 1892", - "date_made_late": "13 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15537" - }, - { - "emuIRN": "264110", - "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/264110", - "date_made_early": "1867", - "date_made": "pre 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15538" - }, - { - "emuIRN": "36188", - "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/36188", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15540" - }, - { - "emuIRN": "154504", - "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/154504", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15541" - }, - { - "emuIRN": "203963", - "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/203963", - "date_made_early": "27 Aug 1891", - "date_made": "8/27/1891", - "date_made_late": "27 Aug 1891", - "curatorial_section": "Historic", - "object_number": "15543" - }, - { - "emuIRN": "241994", - "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/241994", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15544" - }, - { - "emuIRN": "243680", - "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/243680", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15545" - }, - { - "emuIRN": "87145", - "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/87145", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15546" - }, - { - "emuIRN": "59271", - "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/59271", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15547" - }, - { - "emuIRN": "336096", - "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/336096", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15548" - }, - { - "emuIRN": "203973", - "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/203973", - "date_made_early": "09 Apr 1888", - "date_made": "4/9/1888", - "date_made_late": "09 Apr 1888", - "curatorial_section": "Historic", - "object_number": "15550" - }, - { - "emuIRN": "238541", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/238541", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15552" - }, - { - "emuIRN": "131933", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/131933", - "date_made_early": "16 Jun 1891", - "date_made": "6/16/1891", - "date_made_late": "16 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15553" - }, - { - "emuIRN": "158923", - "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/158923", - "date_made_early": "01 Jun 1891", - "date_made": "6/1/1891", - "date_made_late": "01 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15554" - }, - { - "emuIRN": "103187", - "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/103187", - "native_name": [ - "Tarocchino" - ], - "date_made_early": "03 Feb 1891", - "date_made": "2/3/1891", - "date_made_late": "03 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15555" - }, - { - "emuIRN": "178709", - "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", - "provenience": [ - "Italy", - "Povoletto-Udine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "F. L. Muccioli" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/178709", - "date_made_early": "09 May 1890", - "date_made": "5/9/1890", - "date_made_late": "09 May 1890", - "curatorial_section": "Historic", - "object_number": "15556" - }, - { - "emuIRN": "277112", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/277112", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15557" - }, - { - "emuIRN": "25552", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/25552", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15558" - }, - { - "emuIRN": "325482", - "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/325482", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1895", - "curatorial_section": "Historic", - "object_number": "15559" - }, - { - "emuIRN": "325483", - "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/325483", - "date_made_early": "12 Mar 2091", - "date_made": "3/12/91", - "date_made_late": "12 Mar 2091", - "curatorial_section": "Historic", - "object_number": "15560" - }, - { - "emuIRN": "48114", - "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/48114", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "22 Jun 1891", - "date_made": "6/22/1891", - "date_made_late": "22 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15561" - }, - { - "emuIRN": "167380", - "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/167380", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15562" - }, - { - "emuIRN": "321272", - "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Vincenzo Russo" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack", - "Neopolitan Pack" - ], - "url": "http://www.penn.museum/collections/object/321272", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "11 Feb 1891", - "date_made": "2/11/1891", - "date_made_late": "11 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15563" - }, - { - "emuIRN": "279915", - "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Luigi Pignalosa" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/279915", - "date_made_early": "14 Feb 1891", - "date_made": "2/14/1891", - "date_made_late": "14 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15564" - }, - { - "emuIRN": "157272", - "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/157272", - "date_made_early": "04 Oct 1888", - "date_made": "10/4/1888", - "date_made_late": "04 Oct 1888", - "curatorial_section": "Historic", - "object_number": "15566" - }, - { - "emuIRN": "88522", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/88522", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15567" - }, - { - "emuIRN": "177453", - "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/177453", - "date_made_early": "24 Mar 1891", - "date_made": "3/24/1891", - "date_made_late": "24 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15568" - }, - { - "emuIRN": "322855", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322855", - "date_made_early": "25 Nov 1890", - "date_made": "11/25/1890", - "date_made_late": "25 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15569" - }, - { - "emuIRN": "322856", - "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322856", - "date_made_early": "27 Jul 2091", - "date_made": "7/27/91", - "date_made_late": "27 Jul 2091", - "curatorial_section": "Historic", - "object_number": "15570" - }, - { - "emuIRN": "289232", - "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/289232", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15571" - }, - { - "emuIRN": "71704", - "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "L. Bartolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/71704", - "date_made_early": "02 Jul 1892", - "date_made": "7/2/1892", - "date_made_late": "02 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15572" - }, - { - "emuIRN": "341571", - "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Silvertrini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/341571", - "date_made_early": "01 Jul 1892", - "date_made": "7/1/1892", - "date_made_late": "01 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15573" - }, - { - "emuIRN": "231215", - "description": "Playing card deck - 44 cards", - "provenience": [ - "Italy", - "Bergamo" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Masenghini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Milanese Deck" - ], - "url": "http://www.penn.museum/collections/object/231215", - "curatorial_section": "Historic", - "object_number": "15575" - }, - { - "emuIRN": "290651", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", - "provenience": [ - "Italy", - "Trento" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giac. Bertoldi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/290651", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15577" - }, - { - "emuIRN": "116249", - "description": "Playing card deck - 40 cards, printed back with pink abstract designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/116249", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15578" - }, - { - "emuIRN": "76331", - "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/76331", - "date_made_early": "1867", - "date_made": "c.1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15579" - }, - { - "emuIRN": "76332", - "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/76332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15580" - }, - { - "emuIRN": "189908", - "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/189908", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15583" - }, - { - "emuIRN": "275719", - "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/275719", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15584" - }, - { - "emuIRN": "51584", - "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/51584", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15585" - }, - { - "emuIRN": "56004", - "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Crispolani" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/56004", - "date_made_early": "1850", - "date_made": "circa 1860", - "date_made_late": "1870", - "curatorial_section": "Historic", - "object_number": "15586" - }, - { - "emuIRN": "124979", - "description": "Playing card deck - Tarocchi/Tarot - 78 cards", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/124979", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15587" - }, - { - "emuIRN": "212458", - "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "url": "http://www.penn.museum/collections/object/212458", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15588" - }, - { - "emuIRN": "309331", - "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "G. C. Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309331", - "date_made_early": "30 Mar 1891", - "date_made": "3/30/1891", - "date_made_late": "30 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15589" - }, - { - "emuIRN": "309332", - "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15590" - }, - { - "emuIRN": "86979", - "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/86979", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15592" - }, - { - "emuIRN": "5817", - "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5817", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15594" - }, - { - "emuIRN": "170983", - "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Baby", - "Angel" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/170983", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15595" - }, - { - "emuIRN": "300071", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Tambourine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/300071", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15596" - }, - { - "emuIRN": "236603", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236603", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15597" - }, - { - "emuIRN": "141064", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141064", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15598" - }, - { - "emuIRN": "126294", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", - "provenience": [ - "Italy", - "Treviso" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Francesca Rino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/126294", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15599" - }, - { - "emuIRN": "309333", - "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", - "provenience": [ - "Italy", - "Parma (Italy)" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Faelli Carlo" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309333", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15600" - }, - { - "emuIRN": "261187", - "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Cassini Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Cucu" - ], - "url": "http://www.penn.museum/collections/object/261187", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15601" - }, - { - "emuIRN": "5818", - "description": "40 cards with wrapper. Printed back: green and blue plaid", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5818", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15604" - }, - { - "emuIRN": "236604", - "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236604", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15607" - }, - { - "emuIRN": "141065", - "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141065", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15608" - }, - { - "emuIRN": "319728", - "description": "Playing card deck - 40 cards", - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/319728", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15621" - }, - { - "emuIRN": "119150", - "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Florentine Pack" - ], - "url": "http://www.penn.museum/collections/object/119150", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15622" - }, - { - "emuIRN": "92457", - "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/92457", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15623" - }, - { - "emuIRN": "406753", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406753", - "curatorial_section": "Historic", - "object_number": "19124.15" - }, - { - "emuIRN": "406754", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406754", - "curatorial_section": "Historic", - "object_number": "19124.16" - }, - { - "emuIRN": "406755", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406755", - "curatorial_section": "Historic", - "object_number": "19124.17" - }, - { - "emuIRN": "406756", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406756", - "curatorial_section": "Historic", - "object_number": "19124.18" - }, - { - "emuIRN": "406757", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406757", - "curatorial_section": "Historic", - "object_number": "19124.19" - }, - { - "emuIRN": "406758", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406758", - "curatorial_section": "Historic", - "object_number": "19124.20" - }, - { - "emuIRN": "406759", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406759", - "curatorial_section": "Historic", - "object_number": "19124.21" - }, - { - "emuIRN": "406760", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406760", - "curatorial_section": "Historic", - "object_number": "19124.22" - }, - { - "emuIRN": "406761", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406761", - "curatorial_section": "Historic", - "object_number": "19124.23" - }, - { - "emuIRN": "406762", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406762", - "curatorial_section": "Historic", - "object_number": "19124.24" - }, - { - "emuIRN": "406763", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406763", - "curatorial_section": "Historic", - "object_number": "19124.25" - }, - { - "emuIRN": "406764", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406764", - "curatorial_section": "Historic", - "object_number": "19124.26" - }, - { - "emuIRN": "330556", - "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", - "provenience": [ - "Europe (uncertain)" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/330556", - "curatorial_section": "Historic", - "object_number": "29-191-128" - }, - { - "emuIRN": "321909", - "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/321909", - "curatorial_section": "Historic", - "object_number": "29-191-129" - }, - { - "emuIRN": "127367", - "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/127367", - "curatorial_section": "Historic", - "object_number": "29-191-227" - }, - { - "emuIRN": "203363", - "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", - "technique": [ - "Painted" - ], - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Paint", - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/203363", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15792" - }, - { - "emuIRN": "185526", - "description": "Red and gold sphere with small metall loop on 1 end", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of H. C. Thomson, 1894" - ], - "object_name": [ - "Whistling Top" - ], - "url": "http://www.penn.museum/collections/object/185526", - "curatorial_section": "Historic", - "object_number": "17817" - }, - { - "emuIRN": "59206", - "description": "Wood ball with metal spike. Cord for spinning", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top", - "Cord" - ], - "url": "http://www.penn.museum/collections/object/59206", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19214" - }, - { - "emuIRN": "186142", - "description": "Turned wood, bell-shaped with metal spike.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/186142", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19216" - }, - { - "emuIRN": "234646", - "description": "Toy rolling disc - wooden.", - "provenience": [ - "Italy" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Henry H. Giglioli, 1896" - ], - "object_name": [ - "Spinning Toy (uncertain)", - "Rolling Disc" - ], - "url": "http://www.penn.museum/collections/object/234646", - "curatorial_section": "Historic", - "object_number": "19217" - }, - { - "emuIRN": "134935", - "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal", - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1897" - ], - "object_name": [ - "Pinwheel" - ], - "url": "http://www.penn.museum/collections/object/134935", - "curatorial_section": "Historic", - "object_number": "20037" - }, - { - "emuIRN": "340545", - "description": "Turned wood ball with metal peg. Smaller version of 19214.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/340545", - "curatorial_section": "Historic", - "object_number": "19215A" - }, - { - "emuIRN": "273066", - "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Top Die", - "Teetotum" - ], - "url": "http://www.penn.museum/collections/object/273066", - "curatorial_section": "Historic", - "object_number": "71-18-6" - }, - { - "emuIRN": "146612", - "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", - "provenience": [ - "Japan" - ], - "material": [ - "Brass", - "Tin" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/146612", - "curatorial_section": "Historic", - "object_number": "71-18-11" - }, - { - "emuIRN": "264736", - "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top" - ], - "url": "http://www.penn.museum/collections/object/264736", - "curatorial_section": "Historic", - "object_number": "71-18-41" - }, - { - "emuIRN": "128464", - "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", - "provenience": [ - "West Germany" - ], - "culture": [ - "German" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/128464", - "curatorial_section": "Historic", - "object_number": "71-18-45" - }, - { - "emuIRN": "102950", - "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top", - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/102950", - "curatorial_section": "Historic", - "object_number": "71-18-50" - }, - { - "emuIRN": "215073", - "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Gyroscope" - ], - "url": "http://www.penn.museum/collections/object/215073", - "curatorial_section": "Historic", - "object_number": "71-18-53" - }, - { - "emuIRN": "281519", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/281519", - "curatorial_section": "Historic", - "object_number": "71-18-10A" - }, - { - "emuIRN": "132216", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/132216", - "curatorial_section": "Historic", - "object_number": "71-18-10B" - }, - { - "emuIRN": "222994", - "description": "Turned wooden spinnters. A-D have stems.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/222994", - "curatorial_section": "Historic", - "object_number": "71-18-17A" - }, - { - "emuIRN": "293378", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/293378", - "curatorial_section": "Historic", - "object_number": "71-18-17B" - }, - { - "emuIRN": "244262", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/244262", - "curatorial_section": "Historic", - "object_number": "71-18-17C" - }, - { - "emuIRN": "97422", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/97422", - "curatorial_section": "Historic", - "object_number": "71-18-17D" - }, - { - "emuIRN": "283240", - "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/283240", - "curatorial_section": "Historic", - "object_number": "71-18-17E" - }, - { - "emuIRN": "199531", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/199531", - "curatorial_section": "Historic", - "object_number": "71-18-20A" - }, - { - "emuIRN": "315942", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/315942", - "curatorial_section": "Historic", - "object_number": "71-18-20B" - }, - { - "emuIRN": "154811", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/154811", - "curatorial_section": "Historic", - "object_number": "71-18-20C" - }, - { - "emuIRN": "119329", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/119329", - "curatorial_section": "Historic", - "object_number": "71-18-20D" - }, - { - "emuIRN": "138169", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/138169", - "curatorial_section": "Historic", - "object_number": "71-18-20E" - }, - { - "emuIRN": "168699", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/168699", - "curatorial_section": "Historic", - "object_number": "71-18-20F" - }, - { - "emuIRN": "165852", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/165852", - "curatorial_section": "Historic", - "object_number": "71-18-20G" - }, - { - "emuIRN": "307682", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/307682", - "curatorial_section": "Historic", - "object_number": "71-18-20H" - }, - { - "emuIRN": "336448", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336448", - "curatorial_section": "Historic", - "object_number": "71-18-32A" - }, - { - "emuIRN": "181753", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/181753", - "curatorial_section": "Historic", - "object_number": "71-18-32B" - }, - { - "emuIRN": "277851", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/277851", - "curatorial_section": "Historic", - "object_number": "71-18-32C" - }, - { - "emuIRN": "44213", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/44213", - "curatorial_section": "Historic", - "object_number": "71-18-32D" - }, - { - "emuIRN": "343371", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/343371", - "curatorial_section": "Historic", - "object_number": "71-18-32E" - }, - { - "emuIRN": "405192", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "period": [ - "Modern" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/405192", - "curatorial_section": "Historic", - "object_number": "71-18-32F" - }, - { - "emuIRN": "174014", - "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinning Toy", - "Supported Top", - "Whistle" - ], - "url": "http://www.penn.museum/collections/object/174014", - "curatorial_section": "Historic", - "object_number": "71-18-72" - }, - { - "emuIRN": "54377", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/54377", - "curatorial_section": "Historic", - "object_number": "71-18-71A" - }, - { - "emuIRN": "336914", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336914", - "curatorial_section": "Historic", - "object_number": "71-18-71B" - }, - { - "emuIRN": "40527", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel", - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/40527", - "curatorial_section": "Historic", - "object_number": "71-18-71C" - }, - { - "emuIRN": "81633", - "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "iconography": [ - "Dog", - "Flag" - ], - "material": [ - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81633", - "other_numbers": [ - "533107" - ], - "curatorial_section": "Historic", - "object_number": "73-1-9" - }, - { - "emuIRN": "315995", - "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/315995", - "curatorial_section": "Historic", - "object_number": "73-1-11" - }, - { - "emuIRN": "81890", - "description": "Bi-colored light plastic top / yo-yo", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81890", - "curatorial_section": "Historic", - "object_number": "73-1-12" - }, - { - "emuIRN": "158974", - "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/158974", - "curatorial_section": "Historic", - "object_number": "73-1-21" - }, - { - "emuIRN": "270492", - "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/270492", - "curatorial_section": "Historic", - "object_number": "73-1-15B" - }, - { - "emuIRN": "122561", - "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "material": [ - "Plastic", - "Nylon" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/122561", - "curatorial_section": "Historic", - "object_number": "75-13-1" - }, - { - "emuIRN": "169135", - "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", - "provenience": [ - "Wisconsin", - "Milwaukee" - ], - "culture": [ - "American" - ], - "creator": [ - "Jak Pak Inc." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/169135", - "curatorial_section": "Historic", - "object_number": "75-13-18" - }, - { - "emuIRN": "265153", - "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", - "provenience": [ - "New York", - "Brooklyn" - ], - "culture": [ - "American" - ], - "creator": [ - "American Magnetop Corp." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/265153", - "curatorial_section": "Historic", - "object_number": "75-13-19" - }, - { - "emuIRN": "258185", - "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Giant Plastics Corp." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/258185", - "curatorial_section": "Historic", - "object_number": "75-13-21" - }, - { - "emuIRN": "112910", - "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", - "provenience": [ - "England" - ], - "culture": [ - "English" - ], - "creator": [ - "Christie & Jay, Ltd" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/112910", - "curatorial_section": "Historic", - "object_number": "75-13-30" - }, - { - "emuIRN": "206818", - "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", - "provenience": [ - "Tennessee", - "Nashville" - ], - "culture": [ - "American" - ], - "creator": [ - "Kusan, Inc" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Yo-Yo", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/206818", - "curatorial_section": "Historic", - "object_number": "75-13-32" - }, - { - "emuIRN": "320134", - "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", - "provenience": [ - "New York", - "Brooklyn" - ], - "creator": [ - "Shimmel" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/320134", - "curatorial_section": "Historic", - "object_number": "75-13-33" - }, - { - "emuIRN": "13411", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/13411", - "curatorial_section": "Historic", - "object_number": "75-13-10A" - }, - { - "emuIRN": "2151", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/2151", - "curatorial_section": "Historic", - "object_number": "75-13-10B" - }, - { - "emuIRN": "227620", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/227620", - "curatorial_section": "Historic", - "object_number": "75-13-10C" - }, - { - "emuIRN": "205966", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/205966", - "curatorial_section": "Historic", - "object_number": "75-13-29A" - }, - { - "emuIRN": "281691", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/281691", - "curatorial_section": "Historic", - "object_number": "75-13-29B" - }, - { - "emuIRN": "99171", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/99171", - "curatorial_section": "Historic", - "object_number": "75-13-29C" - }, - { - "emuIRN": "101034", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/101034", - "curatorial_section": "Historic", - "object_number": "75-13-29D" - }, - { - "emuIRN": "308170", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/308170", - "curatorial_section": "Historic", - "object_number": "75-13-29E" - }, - { - "emuIRN": "212263", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/212263", - "curatorial_section": "Historic", - "object_number": "75-13-29F" - }, - { - "emuIRN": "171295", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/171295", - "curatorial_section": "Historic", - "object_number": "75-13-29G" - }, - { - "emuIRN": "252428", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/252428", - "curatorial_section": "Historic", - "object_number": "75-13-29H" - }, - { - "emuIRN": "33474", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/33474", - "curatorial_section": "Historic", - "object_number": "75-13-29I" - }, - { - "emuIRN": "64988", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/64988", - "curatorial_section": "Historic", - "object_number": "75-13-29J" - }, - { - "emuIRN": "149403", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/149403", - "curatorial_section": "Historic", - "object_number": "75-13-29K" - }, - { - "emuIRN": "192238", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/192238", - "curatorial_section": "Historic", - "object_number": "75-13-29L" - }, - { - "emuIRN": "87050", - "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/87050", - "curatorial_section": "Historic", - "object_number": "75-13-5A" - }, - { - "emuIRN": "241334", - "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", - "provenience": [ - "Hawthorne" - ], - "culture": [ - "American" - ], - "creator": [ - "Mattel, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/241334", - "curatorial_section": "Historic", - "object_number": "75-13-9D" - }, - { - "emuIRN": "77859", - "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/77859", - "curatorial_section": "Historic", - "object_number": "71-18-24" - }, - { - "emuIRN": "285019", - "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top", - "Musical Top" - ], - "url": "http://www.penn.museum/collections/object/285019", - "curatorial_section": "Historic", - "object_number": "71-18-27" - }, - { - "emuIRN": "37984", - "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/37984", - "curatorial_section": "Historic", - "object_number": "71-18-38" - }, - { - "emuIRN": "239276", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/239276", - "curatorial_section": "Historic", - "object_number": "71-18-28A" - }, - { - "emuIRN": "32312", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/32312", - "curatorial_section": "Historic", - "object_number": "71-18-28B" - }, - { - "emuIRN": "65727", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/65727", - "curatorial_section": "Historic", - "object_number": "71-18-28C" - }, - { - "emuIRN": "274339", - "description": "Wire puzzle with boot and cap.", - "provenience": [ - "Europe", - "France (uncertain)" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Wire Puzzle" - ], - "url": "http://www.penn.museum/collections/object/274339", - "curatorial_section": "Historic", - "object_number": "8812" - }, - { - "emuIRN": "159716", - "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Selchow & Richter" - ], - "material": [ - "Cardboard" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/159716", - "date_made_early": "1880", - "date_made": "9/7/1880", - "date_made_late": "1880", - "curatorial_section": "Historic", - "object_number": "15496" - }, - { - "emuIRN": "18643", - "description": "12 lithographed cards with pictures of children's games. Fused to 16555", - "technique": [ - "Lithograph" - ], - "provenience": [ - "France", - "Paris (France)" - ], - "iconography": [ - "Games" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Cards" - ], - "url": "http://www.penn.museum/collections/object/18643", - "curatorial_section": "Historic", - "object_number": "16231" - }, - { - "emuIRN": "34693", - "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Metal", - "Glass", - "Wood" - ], - "accession_credit_line": [ - "Gift of Mrs. John Harrison, 1894" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/34693", - "date_made_early": "1869", - "date_made": "c. 1894", - "date_made_late": "1894", - "curatorial_section": "Historic", - "object_number": "16401" - }, - { - "emuIRN": "93791", - "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", - "provenience": [ - "England", - "London" - ], - "culture": [ - "British" - ], - "accession_credit_line": [ - "Gift of Henry Jones, 1893" - ], - "object_name": [ - "Card Game", - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93791", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "16555" - }, - { - "emuIRN": "117728", - "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "creator": [ - "Donaldson Brothers" - ], - "material": [ - "Paper" - ], - "object_name": [ - "Puzzle", - "Advertisement" - ], - "url": "http://www.penn.museum/collections/object/117728", - "curatorial_section": "Historic", - "object_number": "18578" - }, - { - "emuIRN": "303943", - "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", - "provenience": [ - "Pennsylvania", - "Bucks County" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Glass", - "Metal", - "String", - "Cork" - ], - "accession_credit_line": [ - "Gift of Col. Henry D. Paxson, 1897" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/303943", - "curatorial_section": "Historic", - "object_number": "20067" - }, - { - "emuIRN": "287388", - "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Dr. Max Uhle, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/287388", - "curatorial_section": "Historic", - "object_number": "21082" - }, - { - "emuIRN": "140578", - "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/140578", - "curatorial_section": "Historic", - "object_number": "21458" - }, - { - "emuIRN": "120293", - "description": "Wood Board with instructions. Metal Arm.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120293", - "curatorial_section": "Historic", - "object_number": "21460" - }, - { - "emuIRN": "25280", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/25280", - "curatorial_section": "Historic", - "object_number": "21594A" - }, - { - "emuIRN": "406863", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/406863", - "curatorial_section": "Historic", - "object_number": "21594B" - }, - { - "emuIRN": "93703", - "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "The American Game and Puzzle Company" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93703", - "curatorial_section": "Historic", - "object_number": "29-191-146" - }, - { - "emuIRN": "64758", - "description": "Yamato Block Puzzle - 6 pieces of wood", - "provenience": [ - "Japan" - ], - "culture": [ - "Japanese" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64758", - "curatorial_section": "Historic", - "object_number": "29-191-159" - }, - { - "emuIRN": "64759", - "description": "See Dar Wonderful - 9 pieces of wood", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64759", - "curatorial_section": "Historic", - "object_number": "29-191-160" - }, - { - "emuIRN": "30391", - "description": "12 pieces", - "provenience": [ - "New York", - "New York City" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle", - "Reproduction (uncertain)" - ], - "url": "http://www.penn.museum/collections/object/30391", - "curatorial_section": "Historic", - "object_number": "29-191-161" - }, - { - "emuIRN": "22499", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/22499", - "other_numbers": [ - "4001" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157B" - }, - { - "emuIRN": "120252", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120252", - "other_numbers": [ - "4001?" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157C" - }, - { - "emuIRN": "156290", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/156290", - "other_numbers": [ - "4002" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157D" - }, - { - "emuIRN": "99398", - "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", - "provenience": [ - "Pennsylvania", - "Pittsburgh" - ], - "culture": [ - "American" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Charles Este, Jr., 1899" - ], - "object_name": [ - "Puzzle", - "Trick" - ], - "url": "http://www.penn.museum/collections/object/99398", - "curatorial_section": "Historic", - "object_number": "19783" - }, - { - "emuIRN": "130464", - "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/130464", - "native_name": [ - "Cartes a Jouer" - ], - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "7594" - }, - { - "emuIRN": "160242", - "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/160242", - "date_made_early": "1800", - "date_made": "1800-1899", - "date_made_late": "1899", - "curatorial_section": "Historic", - "object_number": "7595" - }, - { - "emuIRN": "157104", - "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1890" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "url": "http://www.penn.museum/collections/object/157104", - "date_made_early": "1800", - "date_made": "19th century", - "date_made_late": "1890", - "curatorial_section": "Historic", - "object_number": "7629" - }, - { - "emuIRN": "157105", - "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "C. L. Wust" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of J. D. Sergeant, 1890" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/157105", - "curatorial_section": "Historic", - "object_number": "7630" - }, - { - "emuIRN": "98559", - "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "B. Dondorf" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of W. Yorke Stevenson, 1891" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/98559", - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "other_numbers": [ - "27" - ], - "curatorial_section": "Historic", - "object_number": "7712" - }, - { - "emuIRN": "248509", - "description": "Card dominoes in box.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Card Game", - "Dominoe" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/248509", - "curatorial_section": "Historic", - "object_number": "8813" - }, - { - "emuIRN": "137944", - "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/137944", - "date_made_early": "1866", - "date_made": "c. 1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "9011" - }, - { - "emuIRN": "194220", - "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "creator": [ - "Watilliaux" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/194220", - "date_made_early": "1878", - "date_made": "1878", - "date_made_late": "1878", - "curatorial_section": "Historic", - "object_number": "9018" - }, - { - "emuIRN": "205296", - "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", - "technique": [ - "Printed" - ], - "provenience": [ - "Mexico (Central America)", - "Puebla (Mexican State)" - ], - "culture": [ - "Spanish" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of the US National Museum, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/205296", - "date_made_early": "1873", - "date_made": "1873-1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15360" - }, - { - "emuIRN": "21030", - "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Fortune Telling Cards" - ], - "url": "http://www.penn.museum/collections/object/21030", - "date_made_early": "1865", - "date_made": "pre 1890", - "date_made_late": "1890", - "other_numbers": [ - "43" - ], - "curatorial_section": "Historic", - "object_number": "15513" - }, - { - "emuIRN": "46932", - "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", - "provenience": [ - "Italy", - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/46932", - "date_made_early": "1880", - "date_made": "1880-1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15528" - }, - { - "emuIRN": "220035", - "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/220035", - "date_made_early": "29 Nov 1890", - "date_made": "11/29/1890", - "date_made_late": "29 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15529" - }, - { - "emuIRN": "220036", - "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/220036", - "date_made_early": "27 Oct 1890", - "date_made": "10/27/1890", - "date_made_late": "27 Oct 1890", - "other_numbers": [ - "42" - ], - "curatorial_section": "Historic", - "object_number": "15530" - }, - { - "emuIRN": "289473", - "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/289473", - "date_made_early": "17 Jan 1887", - "date_made": "1/17/1887", - "date_made_late": "17 Jan 1887", - "curatorial_section": "Historic", - "object_number": "15532" - }, - { - "emuIRN": "114394", - "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/114394", - "date_made_early": "1867", - "date_made": " pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15533" - }, - { - "emuIRN": "82994", - "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/82994", - "date_made_early": "17 Jun 1890", - "date_made": "6/17/1890", - "date_made_late": "17 Jun 1890", - "other_numbers": [ - "13" - ], - "curatorial_section": "Historic", - "object_number": "15534" - }, - { - "emuIRN": "233242", - "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/233242", - "date_made_early": "13 Mar 1891", - "date_made": "3/13/1891", - "date_made_late": "13 Mar 1891", - "other_numbers": [ - "5" - ], - "curatorial_section": "Historic", - "object_number": "15536" - }, - { - "emuIRN": "237987", - "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/237987", - "date_made_early": "13 Mar 1891", - "date_made": "pre 1892", - "date_made_late": "13 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15537" - }, - { - "emuIRN": "264110", - "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/264110", - "date_made_early": "1867", - "date_made": "pre 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15538" - }, - { - "emuIRN": "36188", - "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/36188", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15540" - }, - { - "emuIRN": "154504", - "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/154504", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15541" - }, - { - "emuIRN": "203963", - "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/203963", - "date_made_early": "27 Aug 1891", - "date_made": "8/27/1891", - "date_made_late": "27 Aug 1891", - "curatorial_section": "Historic", - "object_number": "15543" - }, - { - "emuIRN": "241994", - "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/241994", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15544" - }, - { - "emuIRN": "243680", - "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/243680", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15545" - }, - { - "emuIRN": "87145", - "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/87145", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15546" - }, - { - "emuIRN": "59271", - "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/59271", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15547" - }, - { - "emuIRN": "336096", - "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/336096", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15548" - }, - { - "emuIRN": "203973", - "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/203973", - "date_made_early": "09 Apr 1888", - "date_made": "4/9/1888", - "date_made_late": "09 Apr 1888", - "curatorial_section": "Historic", - "object_number": "15550" - }, - { - "emuIRN": "238541", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/238541", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15552" - }, - { - "emuIRN": "131933", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/131933", - "date_made_early": "16 Jun 1891", - "date_made": "6/16/1891", - "date_made_late": "16 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15553" - }, - { - "emuIRN": "158923", - "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/158923", - "date_made_early": "01 Jun 1891", - "date_made": "6/1/1891", - "date_made_late": "01 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15554" - }, - { - "emuIRN": "103187", - "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/103187", - "native_name": [ - "Tarocchino" - ], - "date_made_early": "03 Feb 1891", - "date_made": "2/3/1891", - "date_made_late": "03 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15555" - }, - { - "emuIRN": "178709", - "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", - "provenience": [ - "Italy", - "Povoletto-Udine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "F. L. Muccioli" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/178709", - "date_made_early": "09 May 1890", - "date_made": "5/9/1890", - "date_made_late": "09 May 1890", - "curatorial_section": "Historic", - "object_number": "15556" - }, - { - "emuIRN": "277112", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/277112", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15557" - }, - { - "emuIRN": "25552", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/25552", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15558" - }, - { - "emuIRN": "325482", - "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/325482", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1895", - "curatorial_section": "Historic", - "object_number": "15559" - }, - { - "emuIRN": "325483", - "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/325483", - "date_made_early": "12 Mar 2091", - "date_made": "3/12/91", - "date_made_late": "12 Mar 2091", - "curatorial_section": "Historic", - "object_number": "15560" - }, - { - "emuIRN": "48114", - "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/48114", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "22 Jun 1891", - "date_made": "6/22/1891", - "date_made_late": "22 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15561" - }, - { - "emuIRN": "167380", - "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/167380", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15562" - }, - { - "emuIRN": "321272", - "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Vincenzo Russo" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack", - "Neopolitan Pack" - ], - "url": "http://www.penn.museum/collections/object/321272", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "11 Feb 1891", - "date_made": "2/11/1891", - "date_made_late": "11 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15563" - }, - { - "emuIRN": "279915", - "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Luigi Pignalosa" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/279915", - "date_made_early": "14 Feb 1891", - "date_made": "2/14/1891", - "date_made_late": "14 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15564" - }, - { - "emuIRN": "157272", - "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/157272", - "date_made_early": "04 Oct 1888", - "date_made": "10/4/1888", - "date_made_late": "04 Oct 1888", - "curatorial_section": "Historic", - "object_number": "15566" - }, - { - "emuIRN": "88522", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/88522", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15567" - }, - { - "emuIRN": "177453", - "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/177453", - "date_made_early": "24 Mar 1891", - "date_made": "3/24/1891", - "date_made_late": "24 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15568" - }, - { - "emuIRN": "322855", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322855", - "date_made_early": "25 Nov 1890", - "date_made": "11/25/1890", - "date_made_late": "25 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15569" - }, - { - "emuIRN": "322856", - "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322856", - "date_made_early": "27 Jul 2091", - "date_made": "7/27/91", - "date_made_late": "27 Jul 2091", - "curatorial_section": "Historic", - "object_number": "15570" - }, - { - "emuIRN": "289232", - "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/289232", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15571" - }, - { - "emuIRN": "71704", - "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "L. Bartolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/71704", - "date_made_early": "02 Jul 1892", - "date_made": "7/2/1892", - "date_made_late": "02 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15572" - }, - { - "emuIRN": "341571", - "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Silvertrini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/341571", - "date_made_early": "01 Jul 1892", - "date_made": "7/1/1892", - "date_made_late": "01 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15573" - }, - { - "emuIRN": "231215", - "description": "Playing card deck - 44 cards", - "provenience": [ - "Italy", - "Bergamo" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Masenghini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Milanese Deck" - ], - "url": "http://www.penn.museum/collections/object/231215", - "curatorial_section": "Historic", - "object_number": "15575" - }, - { - "emuIRN": "290651", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", - "provenience": [ - "Italy", - "Trento" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giac. Bertoldi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/290651", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15577" - }, - { - "emuIRN": "116249", - "description": "Playing card deck - 40 cards, printed back with pink abstract designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/116249", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15578" - }, - { - "emuIRN": "76331", - "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/76331", - "date_made_early": "1867", - "date_made": "c.1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15579" - }, - { - "emuIRN": "76332", - "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/76332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15580" - }, - { - "emuIRN": "189908", - "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/189908", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15583" - }, - { - "emuIRN": "275719", - "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/275719", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15584" - }, - { - "emuIRN": "51584", - "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/51584", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15585" - }, - { - "emuIRN": "56004", - "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Crispolani" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/56004", - "date_made_early": "1850", - "date_made": "circa 1860", - "date_made_late": "1870", - "curatorial_section": "Historic", - "object_number": "15586" - }, - { - "emuIRN": "124979", - "description": "Playing card deck - Tarocchi/Tarot - 78 cards", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/124979", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15587" - }, - { - "emuIRN": "212458", - "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "url": "http://www.penn.museum/collections/object/212458", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15588" - }, - { - "emuIRN": "309331", - "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "G. C. Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309331", - "date_made_early": "30 Mar 1891", - "date_made": "3/30/1891", - "date_made_late": "30 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15589" - }, - { - "emuIRN": "309332", - "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15590" - }, - { - "emuIRN": "86979", - "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/86979", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15592" - }, - { - "emuIRN": "5817", - "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5817", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15594" - }, - { - "emuIRN": "170983", - "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Baby", - "Angel" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/170983", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15595" - }, - { - "emuIRN": "300071", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Tambourine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/300071", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15596" - }, - { - "emuIRN": "236603", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236603", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15597" - }, - { - "emuIRN": "141064", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141064", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15598" - }, - { - "emuIRN": "126294", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", - "provenience": [ - "Italy", - "Treviso" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Francesca Rino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/126294", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15599" - }, - { - "emuIRN": "309333", - "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", - "provenience": [ - "Italy", - "Parma (Italy)" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Faelli Carlo" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309333", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15600" - }, - { - "emuIRN": "261187", - "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Cassini Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Cucu" - ], - "url": "http://www.penn.museum/collections/object/261187", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15601" - }, - { - "emuIRN": "5818", - "description": "40 cards with wrapper. Printed back: green and blue plaid", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5818", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15604" - }, - { - "emuIRN": "236604", - "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236604", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15607" - }, - { - "emuIRN": "141065", - "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141065", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15608" - }, - { - "emuIRN": "319728", - "description": "Playing card deck - 40 cards", - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/319728", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15621" - }, - { - "emuIRN": "119150", - "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Florentine Pack" - ], - "url": "http://www.penn.museum/collections/object/119150", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15622" - }, - { - "emuIRN": "92457", - "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/92457", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15623" - }, - { - "emuIRN": "406753", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406753", - "curatorial_section": "Historic", - "object_number": "19124.15" - }, - { - "emuIRN": "406754", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406754", - "curatorial_section": "Historic", - "object_number": "19124.16" - }, - { - "emuIRN": "406755", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406755", - "curatorial_section": "Historic", - "object_number": "19124.17" - }, - { - "emuIRN": "406756", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406756", - "curatorial_section": "Historic", - "object_number": "19124.18" - }, - { - "emuIRN": "406757", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406757", - "curatorial_section": "Historic", - "object_number": "19124.19" - }, - { - "emuIRN": "406758", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406758", - "curatorial_section": "Historic", - "object_number": "19124.20" - }, - { - "emuIRN": "406759", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406759", - "curatorial_section": "Historic", - "object_number": "19124.21" - }, - { - "emuIRN": "406760", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406760", - "curatorial_section": "Historic", - "object_number": "19124.22" - }, - { - "emuIRN": "406761", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406761", - "curatorial_section": "Historic", - "object_number": "19124.23" - }, - { - "emuIRN": "406762", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406762", - "curatorial_section": "Historic", - "object_number": "19124.24" - }, - { - "emuIRN": "406763", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406763", - "curatorial_section": "Historic", - "object_number": "19124.25" - }, - { - "emuIRN": "406764", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406764", - "curatorial_section": "Historic", - "object_number": "19124.26" - }, - { - "emuIRN": "330556", - "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", - "provenience": [ - "Europe (uncertain)" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/330556", - "curatorial_section": "Historic", - "object_number": "29-191-128" - }, - { - "emuIRN": "321909", - "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/321909", - "curatorial_section": "Historic", - "object_number": "29-191-129" - }, - { - "emuIRN": "127367", - "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/127367", - "curatorial_section": "Historic", - "object_number": "29-191-227" - }, - { - "emuIRN": "203363", - "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", - "technique": [ - "Painted" - ], - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Paint", - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/203363", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15792" - }, - { - "emuIRN": "185526", - "description": "Red and gold sphere with small metall loop on 1 end", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of H. C. Thomson, 1894" - ], - "object_name": [ - "Whistling Top" - ], - "url": "http://www.penn.museum/collections/object/185526", - "curatorial_section": "Historic", - "object_number": "17817" - }, - { - "emuIRN": "59206", - "description": "Wood ball with metal spike. Cord for spinning", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top", - "Cord" - ], - "url": "http://www.penn.museum/collections/object/59206", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19214" - }, - { - "emuIRN": "186142", - "description": "Turned wood, bell-shaped with metal spike.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/186142", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19216" - }, - { - "emuIRN": "234646", - "description": "Toy rolling disc - wooden.", - "provenience": [ - "Italy" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Henry H. Giglioli, 1896" - ], - "object_name": [ - "Spinning Toy (uncertain)", - "Rolling Disc" - ], - "url": "http://www.penn.museum/collections/object/234646", - "curatorial_section": "Historic", - "object_number": "19217" - }, - { - "emuIRN": "134935", - "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal", - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1897" - ], - "object_name": [ - "Pinwheel" - ], - "url": "http://www.penn.museum/collections/object/134935", - "curatorial_section": "Historic", - "object_number": "20037" - }, - { - "emuIRN": "340545", - "description": "Turned wood ball with metal peg. Smaller version of 19214.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/340545", - "curatorial_section": "Historic", - "object_number": "19215A" - }, - { - "emuIRN": "273066", - "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Top Die", - "Teetotum" - ], - "url": "http://www.penn.museum/collections/object/273066", - "curatorial_section": "Historic", - "object_number": "71-18-6" - }, - { - "emuIRN": "146612", - "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", - "provenience": [ - "Japan" - ], - "material": [ - "Brass", - "Tin" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/146612", - "curatorial_section": "Historic", - "object_number": "71-18-11" - }, - { - "emuIRN": "264736", - "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top" - ], - "url": "http://www.penn.museum/collections/object/264736", - "curatorial_section": "Historic", - "object_number": "71-18-41" - }, - { - "emuIRN": "128464", - "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", - "provenience": [ - "West Germany" - ], - "culture": [ - "German" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/128464", - "curatorial_section": "Historic", - "object_number": "71-18-45" - }, - { - "emuIRN": "102950", - "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top", - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/102950", - "curatorial_section": "Historic", - "object_number": "71-18-50" - }, - { - "emuIRN": "215073", - "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Gyroscope" - ], - "url": "http://www.penn.museum/collections/object/215073", - "curatorial_section": "Historic", - "object_number": "71-18-53" - }, - { - "emuIRN": "281519", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/281519", - "curatorial_section": "Historic", - "object_number": "71-18-10A" - }, - { - "emuIRN": "132216", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/132216", - "curatorial_section": "Historic", - "object_number": "71-18-10B" - }, - { - "emuIRN": "222994", - "description": "Turned wooden spinnters. A-D have stems.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/222994", - "curatorial_section": "Historic", - "object_number": "71-18-17A" - }, - { - "emuIRN": "293378", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/293378", - "curatorial_section": "Historic", - "object_number": "71-18-17B" - }, - { - "emuIRN": "244262", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/244262", - "curatorial_section": "Historic", - "object_number": "71-18-17C" - }, - { - "emuIRN": "97422", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/97422", - "curatorial_section": "Historic", - "object_number": "71-18-17D" - }, - { - "emuIRN": "283240", - "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/283240", - "curatorial_section": "Historic", - "object_number": "71-18-17E" - }, - { - "emuIRN": "199531", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/199531", - "curatorial_section": "Historic", - "object_number": "71-18-20A" - }, - { - "emuIRN": "315942", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/315942", - "curatorial_section": "Historic", - "object_number": "71-18-20B" - }, - { - "emuIRN": "154811", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/154811", - "curatorial_section": "Historic", - "object_number": "71-18-20C" - }, - { - "emuIRN": "119329", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/119329", - "curatorial_section": "Historic", - "object_number": "71-18-20D" - }, - { - "emuIRN": "138169", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/138169", - "curatorial_section": "Historic", - "object_number": "71-18-20E" - }, - { - "emuIRN": "168699", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/168699", - "curatorial_section": "Historic", - "object_number": "71-18-20F" - }, - { - "emuIRN": "165852", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/165852", - "curatorial_section": "Historic", - "object_number": "71-18-20G" - }, - { - "emuIRN": "307682", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/307682", - "curatorial_section": "Historic", - "object_number": "71-18-20H" - }, - { - "emuIRN": "336448", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336448", - "curatorial_section": "Historic", - "object_number": "71-18-32A" - }, - { - "emuIRN": "181753", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/181753", - "curatorial_section": "Historic", - "object_number": "71-18-32B" - }, - { - "emuIRN": "277851", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/277851", - "curatorial_section": "Historic", - "object_number": "71-18-32C" - }, - { - "emuIRN": "44213", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/44213", - "curatorial_section": "Historic", - "object_number": "71-18-32D" - }, - { - "emuIRN": "343371", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/343371", - "curatorial_section": "Historic", - "object_number": "71-18-32E" - }, - { - "emuIRN": "405192", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "period": [ - "Modern" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/405192", - "curatorial_section": "Historic", - "object_number": "71-18-32F" - }, - { - "emuIRN": "174014", - "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinning Toy", - "Supported Top", - "Whistle" - ], - "url": "http://www.penn.museum/collections/object/174014", - "curatorial_section": "Historic", - "object_number": "71-18-72" - }, - { - "emuIRN": "54377", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/54377", - "curatorial_section": "Historic", - "object_number": "71-18-71A" - }, - { - "emuIRN": "336914", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336914", - "curatorial_section": "Historic", - "object_number": "71-18-71B" - }, - { - "emuIRN": "40527", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel", - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/40527", - "curatorial_section": "Historic", - "object_number": "71-18-71C" - }, - { - "emuIRN": "81633", - "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "iconography": [ - "Dog", - "Flag" - ], - "material": [ - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81633", - "other_numbers": [ - "533107" - ], - "curatorial_section": "Historic", - "object_number": "73-1-9" - }, - { - "emuIRN": "315995", - "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/315995", - "curatorial_section": "Historic", - "object_number": "73-1-11" - }, - { - "emuIRN": "81890", - "description": "Bi-colored light plastic top / yo-yo", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81890", - "curatorial_section": "Historic", - "object_number": "73-1-12" - }, - { - "emuIRN": "158974", - "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/158974", - "curatorial_section": "Historic", - "object_number": "73-1-21" - }, - { - "emuIRN": "270492", - "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/270492", - "curatorial_section": "Historic", - "object_number": "73-1-15B" - }, - { - "emuIRN": "122561", - "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "material": [ - "Plastic", - "Nylon" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/122561", - "curatorial_section": "Historic", - "object_number": "75-13-1" - }, - { - "emuIRN": "169135", - "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", - "provenience": [ - "Wisconsin", - "Milwaukee" - ], - "culture": [ - "American" - ], - "creator": [ - "Jak Pak Inc." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/169135", - "curatorial_section": "Historic", - "object_number": "75-13-18" - }, - { - "emuIRN": "265153", - "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", - "provenience": [ - "New York", - "Brooklyn" - ], - "culture": [ - "American" - ], - "creator": [ - "American Magnetop Corp." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/265153", - "curatorial_section": "Historic", - "object_number": "75-13-19" - }, - { - "emuIRN": "258185", - "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Giant Plastics Corp." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/258185", - "curatorial_section": "Historic", - "object_number": "75-13-21" - }, - { - "emuIRN": "112910", - "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", - "provenience": [ - "England" - ], - "culture": [ - "English" - ], - "creator": [ - "Christie & Jay, Ltd" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/112910", - "curatorial_section": "Historic", - "object_number": "75-13-30" - }, - { - "emuIRN": "206818", - "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", - "provenience": [ - "Tennessee", - "Nashville" - ], - "culture": [ - "American" - ], - "creator": [ - "Kusan, Inc" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Yo-Yo", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/206818", - "curatorial_section": "Historic", - "object_number": "75-13-32" - }, - { - "emuIRN": "320134", - "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", - "provenience": [ - "New York", - "Brooklyn" - ], - "creator": [ - "Shimmel" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/320134", - "curatorial_section": "Historic", - "object_number": "75-13-33" - }, - { - "emuIRN": "13411", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/13411", - "curatorial_section": "Historic", - "object_number": "75-13-10A" - }, - { - "emuIRN": "2151", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/2151", - "curatorial_section": "Historic", - "object_number": "75-13-10B" - }, - { - "emuIRN": "227620", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/227620", - "curatorial_section": "Historic", - "object_number": "75-13-10C" - }, - { - "emuIRN": "205966", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/205966", - "curatorial_section": "Historic", - "object_number": "75-13-29A" - }, - { - "emuIRN": "281691", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/281691", - "curatorial_section": "Historic", - "object_number": "75-13-29B" - }, - { - "emuIRN": "99171", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/99171", - "curatorial_section": "Historic", - "object_number": "75-13-29C" - }, - { - "emuIRN": "101034", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/101034", - "curatorial_section": "Historic", - "object_number": "75-13-29D" - }, - { - "emuIRN": "308170", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/308170", - "curatorial_section": "Historic", - "object_number": "75-13-29E" - }, - { - "emuIRN": "212263", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/212263", - "curatorial_section": "Historic", - "object_number": "75-13-29F" - }, - { - "emuIRN": "171295", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/171295", - "curatorial_section": "Historic", - "object_number": "75-13-29G" - }, - { - "emuIRN": "252428", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/252428", - "curatorial_section": "Historic", - "object_number": "75-13-29H" - }, - { - "emuIRN": "33474", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/33474", - "curatorial_section": "Historic", - "object_number": "75-13-29I" - }, - { - "emuIRN": "64988", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/64988", - "curatorial_section": "Historic", - "object_number": "75-13-29J" - }, - { - "emuIRN": "149403", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/149403", - "curatorial_section": "Historic", - "object_number": "75-13-29K" - }, - { - "emuIRN": "192238", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/192238", - "curatorial_section": "Historic", - "object_number": "75-13-29L" - }, - { - "emuIRN": "87050", - "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/87050", - "curatorial_section": "Historic", - "object_number": "75-13-5A" - }, - { - "emuIRN": "241334", - "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", - "provenience": [ - "Hawthorne" - ], - "culture": [ - "American" - ], - "creator": [ - "Mattel, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/241334", - "curatorial_section": "Historic", - "object_number": "75-13-9D" - }, - { - "emuIRN": "77859", - "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/77859", - "curatorial_section": "Historic", - "object_number": "71-18-24" - }, - { - "emuIRN": "285019", - "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top", - "Musical Top" - ], - "url": "http://www.penn.museum/collections/object/285019", - "curatorial_section": "Historic", - "object_number": "71-18-27" - }, - { - "emuIRN": "37984", - "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/37984", - "curatorial_section": "Historic", - "object_number": "71-18-38" - }, - { - "emuIRN": "239276", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/239276", - "curatorial_section": "Historic", - "object_number": "71-18-28A" - }, - { - "emuIRN": "32312", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/32312", - "curatorial_section": "Historic", - "object_number": "71-18-28B" - }, - { - "emuIRN": "65727", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/65727", - "curatorial_section": "Historic", - "object_number": "71-18-28C" - }, - { - "emuIRN": "274339", - "description": "Wire puzzle with boot and cap.", - "provenience": [ - "Europe", - "France (uncertain)" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Wire Puzzle" - ], - "url": "http://www.penn.museum/collections/object/274339", - "curatorial_section": "Historic", - "object_number": "8812" - }, - { - "emuIRN": "159716", - "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Selchow & Richter" - ], - "material": [ - "Cardboard" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/159716", - "date_made_early": "1880", - "date_made": "9/7/1880", - "date_made_late": "1880", - "curatorial_section": "Historic", - "object_number": "15496" - }, - { - "emuIRN": "18643", - "description": "12 lithographed cards with pictures of children's games. Fused to 16555", - "technique": [ - "Lithograph" - ], - "provenience": [ - "France", - "Paris (France)" - ], - "iconography": [ - "Games" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Cards" - ], - "url": "http://www.penn.museum/collections/object/18643", - "curatorial_section": "Historic", - "object_number": "16231" - }, - { - "emuIRN": "34693", - "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Metal", - "Glass", - "Wood" - ], - "accession_credit_line": [ - "Gift of Mrs. John Harrison, 1894" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/34693", - "date_made_early": "1869", - "date_made": "c. 1894", - "date_made_late": "1894", - "curatorial_section": "Historic", - "object_number": "16401" - }, - { - "emuIRN": "93791", - "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", - "provenience": [ - "England", - "London" - ], - "culture": [ - "British" - ], - "accession_credit_line": [ - "Gift of Henry Jones, 1893" - ], - "object_name": [ - "Card Game", - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93791", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "16555" - }, - { - "emuIRN": "117728", - "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "creator": [ - "Donaldson Brothers" - ], - "material": [ - "Paper" - ], - "object_name": [ - "Puzzle", - "Advertisement" - ], - "url": "http://www.penn.museum/collections/object/117728", - "curatorial_section": "Historic", - "object_number": "18578" - }, - { - "emuIRN": "303943", - "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", - "provenience": [ - "Pennsylvania", - "Bucks County" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Glass", - "Metal", - "String", - "Cork" - ], - "accession_credit_line": [ - "Gift of Col. Henry D. Paxson, 1897" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/303943", - "curatorial_section": "Historic", - "object_number": "20067" - }, - { - "emuIRN": "287388", - "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Dr. Max Uhle, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/287388", - "curatorial_section": "Historic", - "object_number": "21082" - }, - { - "emuIRN": "140578", - "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/140578", - "curatorial_section": "Historic", - "object_number": "21458" - }, - { - "emuIRN": "120293", - "description": "Wood Board with instructions. Metal Arm.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120293", - "curatorial_section": "Historic", - "object_number": "21460" - }, - { - "emuIRN": "25280", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/25280", - "curatorial_section": "Historic", - "object_number": "21594A" - }, - { - "emuIRN": "406863", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/406863", - "curatorial_section": "Historic", - "object_number": "21594B" - }, - { - "emuIRN": "93703", - "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "The American Game and Puzzle Company" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93703", - "curatorial_section": "Historic", - "object_number": "29-191-146" - }, - { - "emuIRN": "64758", - "description": "Yamato Block Puzzle - 6 pieces of wood", - "provenience": [ - "Japan" - ], - "culture": [ - "Japanese" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64758", - "curatorial_section": "Historic", - "object_number": "29-191-159" - }, - { - "emuIRN": "64759", - "description": "See Dar Wonderful - 9 pieces of wood", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64759", - "curatorial_section": "Historic", - "object_number": "29-191-160" - }, - { - "emuIRN": "30391", - "description": "12 pieces", - "provenience": [ - "New York", - "New York City" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle", - "Reproduction (uncertain)" - ], - "url": "http://www.penn.museum/collections/object/30391", - "curatorial_section": "Historic", - "object_number": "29-191-161" - }, - { - "emuIRN": "22499", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/22499", - "other_numbers": [ - "4001" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157B" - }, - { - "emuIRN": "120252", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120252", - "other_numbers": [ - "4001?" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157C" - }, - { - "emuIRN": "156290", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/156290", - "other_numbers": [ - "4002" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157D" - }, - { - "emuIRN": "99398", - "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", - "provenience": [ - "Pennsylvania", - "Pittsburgh" - ], - "culture": [ - "American" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Charles Este, Jr., 1899" - ], - "object_name": [ - "Puzzle", - "Trick" - ], - "url": "http://www.penn.museum/collections/object/99398", - "curatorial_section": "Historic", - "object_number": "19783" - }, - { - "emuIRN": "130464", - "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/130464", - "native_name": [ - "Cartes a Jouer" - ], - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "7594" - }, - { - "emuIRN": "160242", - "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/160242", - "date_made_early": "1800", - "date_made": "1800-1899", - "date_made_late": "1899", - "curatorial_section": "Historic", - "object_number": "7595" - }, - { - "emuIRN": "157104", - "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1890" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "url": "http://www.penn.museum/collections/object/157104", - "date_made_early": "1800", - "date_made": "19th century", - "date_made_late": "1890", - "curatorial_section": "Historic", - "object_number": "7629" - }, - { - "emuIRN": "157105", - "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "C. L. Wust" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of J. D. Sergeant, 1890" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/157105", - "curatorial_section": "Historic", - "object_number": "7630" - }, - { - "emuIRN": "98559", - "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "B. Dondorf" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of W. Yorke Stevenson, 1891" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/98559", - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "other_numbers": [ - "27" - ], - "curatorial_section": "Historic", - "object_number": "7712" - }, - { - "emuIRN": "248509", - "description": "Card dominoes in box.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Card Game", - "Dominoe" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/248509", - "curatorial_section": "Historic", - "object_number": "8813" - }, - { - "emuIRN": "137944", - "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/137944", - "date_made_early": "1866", - "date_made": "c. 1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "9011" - }, - { - "emuIRN": "194220", - "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "creator": [ - "Watilliaux" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/194220", - "date_made_early": "1878", - "date_made": "1878", - "date_made_late": "1878", - "curatorial_section": "Historic", - "object_number": "9018" - }, - { - "emuIRN": "205296", - "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", - "technique": [ - "Printed" - ], - "provenience": [ - "Mexico (Central America)", - "Puebla (Mexican State)" - ], - "culture": [ - "Spanish" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of the US National Museum, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/205296", - "date_made_early": "1873", - "date_made": "1873-1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15360" - }, - { - "emuIRN": "21030", - "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Fortune Telling Cards" - ], - "url": "http://www.penn.museum/collections/object/21030", - "date_made_early": "1865", - "date_made": "pre 1890", - "date_made_late": "1890", - "other_numbers": [ - "43" - ], - "curatorial_section": "Historic", - "object_number": "15513" - }, - { - "emuIRN": "46932", - "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", - "provenience": [ - "Italy", - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/46932", - "date_made_early": "1880", - "date_made": "1880-1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15528" - }, - { - "emuIRN": "220035", - "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/220035", - "date_made_early": "29 Nov 1890", - "date_made": "11/29/1890", - "date_made_late": "29 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15529" - }, - { - "emuIRN": "220036", - "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/220036", - "date_made_early": "27 Oct 1890", - "date_made": "10/27/1890", - "date_made_late": "27 Oct 1890", - "other_numbers": [ - "42" - ], - "curatorial_section": "Historic", - "object_number": "15530" - }, - { - "emuIRN": "289473", - "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/289473", - "date_made_early": "17 Jan 1887", - "date_made": "1/17/1887", - "date_made_late": "17 Jan 1887", - "curatorial_section": "Historic", - "object_number": "15532" - }, - { - "emuIRN": "114394", - "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/114394", - "date_made_early": "1867", - "date_made": " pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15533" - }, - { - "emuIRN": "82994", - "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/82994", - "date_made_early": "17 Jun 1890", - "date_made": "6/17/1890", - "date_made_late": "17 Jun 1890", - "other_numbers": [ - "13" - ], - "curatorial_section": "Historic", - "object_number": "15534" - }, - { - "emuIRN": "233242", - "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/233242", - "date_made_early": "13 Mar 1891", - "date_made": "3/13/1891", - "date_made_late": "13 Mar 1891", - "other_numbers": [ - "5" - ], - "curatorial_section": "Historic", - "object_number": "15536" - }, - { - "emuIRN": "237987", - "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/237987", - "date_made_early": "13 Mar 1891", - "date_made": "pre 1892", - "date_made_late": "13 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15537" - }, - { - "emuIRN": "264110", - "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/264110", - "date_made_early": "1867", - "date_made": "pre 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15538" - }, - { - "emuIRN": "36188", - "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/36188", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15540" - }, - { - "emuIRN": "154504", - "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/154504", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15541" - }, - { - "emuIRN": "203963", - "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/203963", - "date_made_early": "27 Aug 1891", - "date_made": "8/27/1891", - "date_made_late": "27 Aug 1891", - "curatorial_section": "Historic", - "object_number": "15543" - }, - { - "emuIRN": "241994", - "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/241994", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15544" - }, - { - "emuIRN": "243680", - "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/243680", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15545" - }, - { - "emuIRN": "87145", - "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/87145", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15546" - }, - { - "emuIRN": "59271", - "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/59271", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15547" - }, - { - "emuIRN": "336096", - "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/336096", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15548" - }, - { - "emuIRN": "203973", - "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/203973", - "date_made_early": "09 Apr 1888", - "date_made": "4/9/1888", - "date_made_late": "09 Apr 1888", - "curatorial_section": "Historic", - "object_number": "15550" - }, - { - "emuIRN": "238541", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/238541", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15552" - }, - { - "emuIRN": "131933", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/131933", - "date_made_early": "16 Jun 1891", - "date_made": "6/16/1891", - "date_made_late": "16 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15553" - }, - { - "emuIRN": "158923", - "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/158923", - "date_made_early": "01 Jun 1891", - "date_made": "6/1/1891", - "date_made_late": "01 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15554" - }, - { - "emuIRN": "103187", - "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/103187", - "native_name": [ - "Tarocchino" - ], - "date_made_early": "03 Feb 1891", - "date_made": "2/3/1891", - "date_made_late": "03 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15555" - }, - { - "emuIRN": "178709", - "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", - "provenience": [ - "Italy", - "Povoletto-Udine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "F. L. Muccioli" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/178709", - "date_made_early": "09 May 1890", - "date_made": "5/9/1890", - "date_made_late": "09 May 1890", - "curatorial_section": "Historic", - "object_number": "15556" - }, - { - "emuIRN": "277112", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/277112", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15557" - }, - { - "emuIRN": "25552", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/25552", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15558" - }, - { - "emuIRN": "325482", - "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/325482", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1895", - "curatorial_section": "Historic", - "object_number": "15559" - }, - { - "emuIRN": "325483", - "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/325483", - "date_made_early": "12 Mar 2091", - "date_made": "3/12/91", - "date_made_late": "12 Mar 2091", - "curatorial_section": "Historic", - "object_number": "15560" - }, - { - "emuIRN": "48114", - "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/48114", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "22 Jun 1891", - "date_made": "6/22/1891", - "date_made_late": "22 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15561" - }, - { - "emuIRN": "167380", - "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/167380", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15562" - }, - { - "emuIRN": "321272", - "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Vincenzo Russo" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack", - "Neopolitan Pack" - ], - "url": "http://www.penn.museum/collections/object/321272", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "11 Feb 1891", - "date_made": "2/11/1891", - "date_made_late": "11 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15563" - }, - { - "emuIRN": "279915", - "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Luigi Pignalosa" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/279915", - "date_made_early": "14 Feb 1891", - "date_made": "2/14/1891", - "date_made_late": "14 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15564" - }, - { - "emuIRN": "157272", - "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/157272", - "date_made_early": "04 Oct 1888", - "date_made": "10/4/1888", - "date_made_late": "04 Oct 1888", - "curatorial_section": "Historic", - "object_number": "15566" - }, - { - "emuIRN": "88522", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/88522", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15567" - }, - { - "emuIRN": "177453", - "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/177453", - "date_made_early": "24 Mar 1891", - "date_made": "3/24/1891", - "date_made_late": "24 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15568" - }, - { - "emuIRN": "322855", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322855", - "date_made_early": "25 Nov 1890", - "date_made": "11/25/1890", - "date_made_late": "25 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15569" - }, - { - "emuIRN": "322856", - "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322856", - "date_made_early": "27 Jul 2091", - "date_made": "7/27/91", - "date_made_late": "27 Jul 2091", - "curatorial_section": "Historic", - "object_number": "15570" - }, - { - "emuIRN": "289232", - "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/289232", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15571" - }, - { - "emuIRN": "71704", - "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "L. Bartolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/71704", - "date_made_early": "02 Jul 1892", - "date_made": "7/2/1892", - "date_made_late": "02 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15572" - }, - { - "emuIRN": "341571", - "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Silvertrini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/341571", - "date_made_early": "01 Jul 1892", - "date_made": "7/1/1892", - "date_made_late": "01 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15573" - }, - { - "emuIRN": "231215", - "description": "Playing card deck - 44 cards", - "provenience": [ - "Italy", - "Bergamo" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Masenghini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Milanese Deck" - ], - "url": "http://www.penn.museum/collections/object/231215", - "curatorial_section": "Historic", - "object_number": "15575" - }, - { - "emuIRN": "290651", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", - "provenience": [ - "Italy", - "Trento" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giac. Bertoldi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/290651", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15577" - }, - { - "emuIRN": "116249", - "description": "Playing card deck - 40 cards, printed back with pink abstract designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/116249", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15578" - }, - { - "emuIRN": "76331", - "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/76331", - "date_made_early": "1867", - "date_made": "c.1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15579" - }, - { - "emuIRN": "76332", - "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/76332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15580" - }, - { - "emuIRN": "189908", - "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/189908", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15583" - }, - { - "emuIRN": "275719", - "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/275719", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15584" - }, - { - "emuIRN": "51584", - "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/51584", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15585" - }, - { - "emuIRN": "56004", - "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Crispolani" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/56004", - "date_made_early": "1850", - "date_made": "circa 1860", - "date_made_late": "1870", - "curatorial_section": "Historic", - "object_number": "15586" - }, - { - "emuIRN": "124979", - "description": "Playing card deck - Tarocchi/Tarot - 78 cards", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/124979", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15587" - }, - { - "emuIRN": "212458", - "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "url": "http://www.penn.museum/collections/object/212458", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15588" - }, - { - "emuIRN": "309331", - "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "G. C. Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309331", - "date_made_early": "30 Mar 1891", - "date_made": "3/30/1891", - "date_made_late": "30 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15589" - }, - { - "emuIRN": "309332", - "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15590" - }, - { - "emuIRN": "86979", - "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/86979", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15592" - }, - { - "emuIRN": "5817", - "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5817", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15594" - }, - { - "emuIRN": "170983", - "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Baby", - "Angel" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/170983", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15595" - }, - { - "emuIRN": "300071", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Tambourine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/300071", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15596" - }, - { - "emuIRN": "236603", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236603", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15597" - }, - { - "emuIRN": "141064", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141064", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15598" - }, - { - "emuIRN": "126294", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", - "provenience": [ - "Italy", - "Treviso" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Francesca Rino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/126294", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15599" - }, - { - "emuIRN": "309333", - "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", - "provenience": [ - "Italy", - "Parma (Italy)" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Faelli Carlo" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309333", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15600" - }, - { - "emuIRN": "261187", - "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Cassini Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Cucu" - ], - "url": "http://www.penn.museum/collections/object/261187", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15601" - }, - { - "emuIRN": "5818", - "description": "40 cards with wrapper. Printed back: green and blue plaid", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5818", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15604" - }, - { - "emuIRN": "236604", - "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236604", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15607" - }, - { - "emuIRN": "141065", - "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141065", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15608" - }, - { - "emuIRN": "319728", - "description": "Playing card deck - 40 cards", - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/319728", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15621" - }, - { - "emuIRN": "119150", - "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Florentine Pack" - ], - "url": "http://www.penn.museum/collections/object/119150", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15622" - }, - { - "emuIRN": "92457", - "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/92457", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15623" - }, - { - "emuIRN": "406753", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406753", - "curatorial_section": "Historic", - "object_number": "19124.15" - }, - { - "emuIRN": "406754", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406754", - "curatorial_section": "Historic", - "object_number": "19124.16" - }, - { - "emuIRN": "406755", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406755", - "curatorial_section": "Historic", - "object_number": "19124.17" - }, - { - "emuIRN": "406756", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406756", - "curatorial_section": "Historic", - "object_number": "19124.18" - }, - { - "emuIRN": "406757", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406757", - "curatorial_section": "Historic", - "object_number": "19124.19" - }, - { - "emuIRN": "406758", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406758", - "curatorial_section": "Historic", - "object_number": "19124.20" - }, - { - "emuIRN": "406759", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406759", - "curatorial_section": "Historic", - "object_number": "19124.21" - }, - { - "emuIRN": "406760", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406760", - "curatorial_section": "Historic", - "object_number": "19124.22" - }, - { - "emuIRN": "406761", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406761", - "curatorial_section": "Historic", - "object_number": "19124.23" - }, - { - "emuIRN": "406762", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406762", - "curatorial_section": "Historic", - "object_number": "19124.24" - }, - { - "emuIRN": "406763", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406763", - "curatorial_section": "Historic", - "object_number": "19124.25" - }, - { - "emuIRN": "406764", - "description": "One of a set of 30 draughtsmen (light / dark colored wood) associated with Board 19125", - "technique": [ - "Embossed" - ], - "provenience": [ - "Europe" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Draughtsmen" - ], - "url": "http://www.penn.museum/collections/object/406764", - "curatorial_section": "Historic", - "object_number": "19124.26" - }, - { - "emuIRN": "330556", - "description": "Spinning top with string. brown and gold. Nail with round slide of gold tube; string winds around nail", - "provenience": [ - "Europe (uncertain)" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/330556", - "curatorial_section": "Historic", - "object_number": "29-191-128" - }, - { - "emuIRN": "321909", - "description": "Spinning top. Dark, heavy wood with grooves and 2 holes. No real point for spinning.", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/321909", - "curatorial_section": "Historic", - "object_number": "29-191-129" - }, - { - "emuIRN": "127367", - "description": "1936 CARD: Part of a large wood rattle (?) of the same type as 21310:
2008 CARD: Humming top - similar to humming top 21313 (misnumbered 21310);", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/127367", - "curatorial_section": "Historic", - "object_number": "29-191-227" - }, - { - "emuIRN": "203363", - "description": "Natural, perhaps varnished, and red painted wood. Metal tip. Bright gold metal flower nailed to top.", - "technique": [ - "Painted" - ], - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Paint", - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Spinning Top" - ], - "url": "http://www.penn.museum/collections/object/203363", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15792" - }, - { - "emuIRN": "185526", - "description": "Red and gold sphere with small metall loop on 1 end", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of H. C. Thomson, 1894" - ], - "object_name": [ - "Whistling Top" - ], - "url": "http://www.penn.museum/collections/object/185526", - "curatorial_section": "Historic", - "object_number": "17817" - }, - { - "emuIRN": "59206", - "description": "Wood ball with metal spike. Cord for spinning", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top", - "Cord" - ], - "url": "http://www.penn.museum/collections/object/59206", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19214" - }, - { - "emuIRN": "186142", - "description": "Turned wood, bell-shaped with metal spike.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/186142", - "other_numbers": [ - "232" - ], - "curatorial_section": "Historic", - "object_number": "19216" - }, - { - "emuIRN": "234646", - "description": "Toy rolling disc - wooden.", - "provenience": [ - "Italy" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Henry H. Giglioli, 1896" - ], - "object_name": [ - "Spinning Toy (uncertain)", - "Rolling Disc" - ], - "url": "http://www.penn.museum/collections/object/234646", - "curatorial_section": "Historic", - "object_number": "19217" - }, - { - "emuIRN": "134935", - "description": "Stick with wire stiicking from one end at an angle (80 degree?) with pink paper pinwheel / flower at the end", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal", - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1897" - ], - "object_name": [ - "Pinwheel" - ], - "url": "http://www.penn.museum/collections/object/134935", - "curatorial_section": "Historic", - "object_number": "20037" - }, - { - "emuIRN": "340545", - "description": "Turned wood ball with metal peg. Smaller version of 19214.", - "provenience": [ - "Italy", - "Sicily" - ], - "culture": [ - "Italian" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1896" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/340545", - "curatorial_section": "Historic", - "object_number": "19215A" - }, - { - "emuIRN": "273066", - "description": "Turned wood: 8-sided body; successive faces stamped: Take all, Put all, Draw 1, Put 1, Draw 2, Put 3, Draw 3, Put 2", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Top Die", - "Teetotum" - ], - "url": "http://www.penn.museum/collections/object/273066", - "curatorial_section": "Historic", - "object_number": "71-18-6" - }, - { - "emuIRN": "146612", - "description": "Spinner in form of a button. Bottom is tinned; topside is brass washer. Marked \"Japan\"", - "provenience": [ - "Japan" - ], - "material": [ - "Brass", - "Tin" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/146612", - "curatorial_section": "Historic", - "object_number": "71-18-11" - }, - { - "emuIRN": "264736", - "description": "Metal shell. 2 pairs of opposed holes in shell. Metal shell spring holder", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top" - ], - "url": "http://www.penn.museum/collections/object/264736", - "curatorial_section": "Historic", - "object_number": "71-18-41" - }, - { - "emuIRN": "128464", - "description": "Supported top / Recuperative Yo-yo. Spherical metal shell with 2 opposed holes. Imprinted: Bibi Nr 855 2 DGM", - "provenience": [ - "West Germany" - ], - "culture": [ - "German" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/128464", - "curatorial_section": "Historic", - "object_number": "71-18-45" - }, - { - "emuIRN": "102950", - "description": "Metal body and spring holder. Instead of a peg, there is a coiled spring which caused the top to dance when spinning", - "provenience": [ - "Japan" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spring-Top", - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/102950", - "curatorial_section": "Historic", - "object_number": "71-18-50" - }, - { - "emuIRN": "215073", - "description": "Plastic wheel and ring (broken) Red plastic bracket; small plastic ring and light cord", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Gyroscope" - ], - "url": "http://www.penn.museum/collections/object/215073", - "curatorial_section": "Historic", - "object_number": "71-18-53" - }, - { - "emuIRN": "281519", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/281519", - "curatorial_section": "Historic", - "object_number": "71-18-10A" - }, - { - "emuIRN": "132216", - "description": "Multi-colored plastic in shape of spoked wheel. Imprint \"Made in Hong Kong\"", - "provenience": [ - "China", - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/132216", - "curatorial_section": "Historic", - "object_number": "71-18-10B" - }, - { - "emuIRN": "222994", - "description": "Turned wooden spinnters. A-D have stems.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/222994", - "curatorial_section": "Historic", - "object_number": "71-18-17A" - }, - { - "emuIRN": "293378", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/293378", - "curatorial_section": "Historic", - "object_number": "71-18-17B" - }, - { - "emuIRN": "244262", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/244262", - "curatorial_section": "Historic", - "object_number": "71-18-17C" - }, - { - "emuIRN": "97422", - "description": "Turned wooden spinnters. A-D have stems", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/97422", - "curatorial_section": "Historic", - "object_number": "71-18-17D" - }, - { - "emuIRN": "283240", - "description": "Turned wooden spinners. E has steel pin about 2 mm diam for stem and point", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/283240", - "curatorial_section": "Historic", - "object_number": "71-18-17E" - }, - { - "emuIRN": "199531", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/199531", - "curatorial_section": "Historic", - "object_number": "71-18-20A" - }, - { - "emuIRN": "315942", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/315942", - "curatorial_section": "Historic", - "object_number": "71-18-20B" - }, - { - "emuIRN": "154811", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/154811", - "curatorial_section": "Historic", - "object_number": "71-18-20C" - }, - { - "emuIRN": "119329", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/119329", - "curatorial_section": "Historic", - "object_number": "71-18-20D" - }, - { - "emuIRN": "138169", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/138169", - "curatorial_section": "Historic", - "object_number": "71-18-20E" - }, - { - "emuIRN": "168699", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/168699", - "curatorial_section": "Historic", - "object_number": "71-18-20F" - }, - { - "emuIRN": "165852", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/165852", - "curatorial_section": "Historic", - "object_number": "71-18-20G" - }, - { - "emuIRN": "307682", - "description": "Turned wood; painted. Shape and design to simulate berry or fruit", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinner" - ], - "url": "http://www.penn.museum/collections/object/307682", - "curatorial_section": "Historic", - "object_number": "71-18-20H" - }, - { - "emuIRN": "336448", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336448", - "curatorial_section": "Historic", - "object_number": "71-18-32A" - }, - { - "emuIRN": "181753", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/181753", - "curatorial_section": "Historic", - "object_number": "71-18-32B" - }, - { - "emuIRN": "277851", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/277851", - "curatorial_section": "Historic", - "object_number": "71-18-32C" - }, - { - "emuIRN": "44213", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/44213", - "curatorial_section": "Historic", - "object_number": "71-18-32D" - }, - { - "emuIRN": "343371", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/343371", - "curatorial_section": "Historic", - "object_number": "71-18-32E" - }, - { - "emuIRN": "405192", - "description": "Modern, turned, wooden, painted, pear-shaped peg top much like 71-18-31. Steel peg with flair like 71-18-31.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "culture": [ - "Modern" - ], - "material": [ - "Wood", - "Steel" - ], - "period": [ - "Modern" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/405192", - "curatorial_section": "Historic", - "object_number": "71-18-32F" - }, - { - "emuIRN": "174014", - "description": "Plastic spinning toy - bird-shaped in whose body is a roter set in motion by blowing into tube which is in the position of the bird's tail. Original identification as a \"supported top (?)\" questionable.", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Spinning Toy", - "Supported Top", - "Whistle" - ], - "url": "http://www.penn.museum/collections/object/174014", - "curatorial_section": "Historic", - "object_number": "71-18-72" - }, - { - "emuIRN": "54377", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/54377", - "curatorial_section": "Historic", - "object_number": "71-18-71A" - }, - { - "emuIRN": "336914", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/336914", - "curatorial_section": "Historic", - "object_number": "71-18-71B" - }, - { - "emuIRN": "40527", - "description": "One of 3 wood peg-tops, assumed to be from Mexico (only one with legible imprint). button top to body, steel peg that may have been a nail. C is decorated with white plastic (?) insert on upper surface showing vari-colored reflectors. The upper third of the body has a deep grove in which 3 white plastic inserts as separators. The intent may have been to enhance sound effects", - "provenience": [ - "Mexico (Central America)" - ], - "culture": [ - "Mexican" - ], - "material": [ - "Wood", - "Steel", - "Plastic" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/40527", - "curatorial_section": "Historic", - "object_number": "71-18-71C" - }, - { - "emuIRN": "81633", - "description": "Painted sheet metal top. Imprint of dog on one face, flags on reverse. Patent #533107", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "iconography": [ - "Dog", - "Flag" - ], - "material": [ - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81633", - "other_numbers": [ - "533107" - ], - "curatorial_section": "Historic", - "object_number": "73-1-9" - }, - { - "emuIRN": "315995", - "description": "Painted disc with painted concentric faces. Disc are not tapered. Imprinted JAPAN", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/315995", - "curatorial_section": "Historic", - "object_number": "73-1-11" - }, - { - "emuIRN": "81890", - "description": "Bi-colored light plastic top / yo-yo", - "provenience": [ - "Hong Kong" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/81890", - "curatorial_section": "Historic", - "object_number": "73-1-12" - }, - { - "emuIRN": "158974", - "description": "combination peg-top and yo-yo; Imprinted Twin Twirler. Giant Plastic Corp. NY, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top", - "Yo-Yo" - ], - "url": "http://www.penn.museum/collections/object/158974", - "curatorial_section": "Historic", - "object_number": "73-1-21" - }, - { - "emuIRN": "270492", - "description": "Painted wood peg-top with flared steel peg. B) red, black, blue and marked Japan. (A is yellow)", - "provenience": [ - "Japan" - ], - "material": [ - "Wood", - "Steel" - ], - "accession_credit_line": [ - "Gift of Marion Greene, 1973" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/270492", - "curatorial_section": "Historic", - "object_number": "73-1-15B" - }, - { - "emuIRN": "122561", - "description": "Toy top - buzzer. Red plastic disc about 7.5 cm. diameter with 20 regular perforations near rim to augment sound effect. Nylon String.", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "material": [ - "Plastic", - "Nylon" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/122561", - "curatorial_section": "Historic", - "object_number": "75-13-1" - }, - { - "emuIRN": "169135", - "description": "Toy top - supported top. red and yellow pastic; recuperative with metal axis. Body has 2 perforation to give sound effects. Body diameter about 6 cm. Item imprinted \"Astro-top\" made by Jak Pak, Inc. Milwaukee", - "provenience": [ - "Wisconsin", - "Milwaukee" - ], - "culture": [ - "American" - ], - "creator": [ - "Jak Pak Inc." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/169135", - "curatorial_section": "Historic", - "object_number": "75-13-18" - }, - { - "emuIRN": "265153", - "description": "Toy top - peg top. Red and white plastic peg top with cord and metal ring. Imprinted MAGNETOP - made by American Magnetop copr, Brooklyn NY. Direction for use accompany; Top performs as per claim", - "provenience": [ - "New York", - "Brooklyn" - ], - "culture": [ - "American" - ], - "creator": [ - "American Magnetop Corp." - ], - "material": [ - "Plastic", - "Metal" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/265153", - "curatorial_section": "Historic", - "object_number": "75-13-19" - }, - { - "emuIRN": "258185", - "description": "Toy top - supported top kit. Labeled \"Spinning Fun - products of Giant Plastics Corp, New York City. consist of yoke (a), a serrated bad (b), and 4 rings each having a 3-bladed propeller (e, f, g, h), 2 plastic spinners (c, d) SPinners to function on ground; rings to be cast into the air.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Giant Plastics Corp." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/258185", - "curatorial_section": "Historic", - "object_number": "75-13-21" - }, - { - "emuIRN": "112910", - "description": "Green and black TIPPE TOP, imprinted \"Pat Appl 656540. Made by Christie and Jay, Ltd. The proportions and balance are good; the action is smooth and sure.", - "provenience": [ - "England" - ], - "culture": [ - "English" - ], - "creator": [ - "Christie & Jay, Ltd" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/112910", - "curatorial_section": "Historic", - "object_number": "75-13-30" - }, - { - "emuIRN": "206818", - "description": "Combination Top. Red plastic; imprinted KUSAN \"Twin Twirler\"; Made by Kusan, Inc., Nashville Tennessee. Top may be used a a yo-yo; the exterior sides of yo-yo came to a point and in effect are pegs so that the top will spin when cast. Holes wre drilled on either side of axis and the top may be used as a buzzer.", - "provenience": [ - "Tennessee", - "Nashville" - ], - "culture": [ - "American" - ], - "creator": [ - "Kusan, Inc" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Yo-Yo", - "Buzzer" - ], - "url": "http://www.penn.museum/collections/object/206818", - "curatorial_section": "Historic", - "object_number": "75-13-32" - }, - { - "emuIRN": "320134", - "description": "Package of 3 supported tops - Plastic wheels with blades. Launcher or support has spring resistant axle. Pulling on string against tension of spring gives rapid rotation to wheels. The whole is a variant of the flying top, but not as well designed as older versions. Chief advantage is plastic material of construction (Light; no injury if it strikes a person. Made in Hong Kong; imported by Shimmel of Brooklyn and given name of lunar Orbiters.", - "provenience": [ - "New York", - "Brooklyn" - ], - "creator": [ - "Shimmel" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top Kit" - ], - "url": "http://www.penn.museum/collections/object/320134", - "curatorial_section": "Historic", - "object_number": "75-13-33" - }, - { - "emuIRN": "13411", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled A) Duncan Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/13411", - "curatorial_section": "Historic", - "object_number": "75-13-10A" - }, - { - "emuIRN": "2151", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled B) Hummer", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/2151", - "curatorial_section": "Historic", - "object_number": "75-13-10B" - }, - { - "emuIRN": "227620", - "description": "Red plastic body and plastis peg. Made by Flambeau Plastics Corp, Baraboo, Wisc. Labeled C) Imperial", - "provenience": [ - "Wisconsin", - "Baraboo" - ], - "culture": [ - "American" - ], - "creator": [ - "Flambeau Plastics" - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/227620", - "curatorial_section": "Historic", - "object_number": "75-13-10C" - }, - { - "emuIRN": "205966", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/205966", - "curatorial_section": "Historic", - "object_number": "75-13-29A" - }, - { - "emuIRN": "281691", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/281691", - "curatorial_section": "Historic", - "object_number": "75-13-29B" - }, - { - "emuIRN": "99171", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/99171", - "curatorial_section": "Historic", - "object_number": "75-13-29C" - }, - { - "emuIRN": "101034", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/101034", - "curatorial_section": "Historic", - "object_number": "75-13-29D" - }, - { - "emuIRN": "308170", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/308170", - "curatorial_section": "Historic", - "object_number": "75-13-29E" - }, - { - "emuIRN": "212263", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/212263", - "curatorial_section": "Historic", - "object_number": "75-13-29F" - }, - { - "emuIRN": "171295", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/171295", - "curatorial_section": "Historic", - "object_number": "75-13-29G" - }, - { - "emuIRN": "252428", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/252428", - "curatorial_section": "Historic", - "object_number": "75-13-29H" - }, - { - "emuIRN": "33474", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/33474", - "curatorial_section": "Historic", - "object_number": "75-13-29I" - }, - { - "emuIRN": "64988", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/64988", - "curatorial_section": "Historic", - "object_number": "75-13-29J" - }, - { - "emuIRN": "149403", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/149403", - "curatorial_section": "Historic", - "object_number": "75-13-29K" - }, - { - "emuIRN": "192238", - "description": "Toy top - Twirlers. one of 12 conical shells approximate 5-6 cm diam.", - "provenience": [ - "Minnesota", - "Willmar" - ], - "culture": [ - "American" - ], - "creator": [ - "Molenaar, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Spinning Top", - "Twirler" - ], - "url": "http://www.penn.museum/collections/object/192238", - "curatorial_section": "Historic", - "object_number": "75-13-29L" - }, - { - "emuIRN": "87050", - "description": "Toy top. 2 spheres about 3 cm diameter; joined by axis which extends to form a peg at either extreme. Direction for spinning given. Trial did not seem to give exceptional performance", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Peg Top" - ], - "url": "http://www.penn.museum/collections/object/87050", - "curatorial_section": "Historic", - "object_number": "75-13-5A" - }, - { - "emuIRN": "241334", - "description": "Toy top - supported in starting. One of a series of items made by Mattell, Inc, Hawthorne California. In original packages; each with accessory material. D: Color Changer", - "provenience": [ - "Hawthorne" - ], - "culture": [ - "American" - ], - "creator": [ - "Mattel, Inc." - ], - "material": [ - "Plastic" - ], - "accession_credit_line": [ - "Gift of Douglas W. Gould, 1975" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/241334", - "curatorial_section": "Historic", - "object_number": "75-13-9D" - }, - { - "emuIRN": "77859", - "description": "Recuperative supported top. Disc of painted wood with intergral bracket which is short section of wooden tube. Upper stem of top is painted to resemble face. Cord provided by D, W. Gould - top performs well.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/77859", - "curatorial_section": "Historic", - "object_number": "71-18-24" - }, - { - "emuIRN": "285019", - "description": "Recupertative supported top; so-called musical or humming top. Painted wood shell and bracket. Shell perforated by 3 holes 0.8 cm diam. String provided by D. W. Gould. Top performs satisfactorily with low hum at high speed", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top", - "Musical Top" - ], - "url": "http://www.penn.museum/collections/object/285019", - "curatorial_section": "Historic", - "object_number": "71-18-27" - }, - { - "emuIRN": "37984", - "description": "Supported-in-starting top; so called humming top. Wooden, cylindrial top painted red and blue. Handle same colors. Body hollow (probably bamboo with slots 0.3cm x 3.2 cm.) Cord provided.", - "technique": [ - "Painted" - ], - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top", - "Humming Top" - ], - "url": "http://www.penn.museum/collections/object/37984", - "curatorial_section": "Historic", - "object_number": "71-18-38" - }, - { - "emuIRN": "239276", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/239276", - "curatorial_section": "Historic", - "object_number": "71-18-28A" - }, - { - "emuIRN": "32312", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/32312", - "curatorial_section": "Historic", - "object_number": "71-18-28B" - }, - { - "emuIRN": "65727", - "description": "Wooden shell. Kob of the support has a pin which allows the top to be disengaged with placed in high-speed motion; or if the kno is not withdrawn but is knotted on the neck of the top, the whole may be operated as a recuperative supported top. Only 1 strong provided for set.", - "provenience": [ - "Japan" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of Smithsonian Institution, 1971" - ], - "object_name": [ - "Supported Top" - ], - "url": "http://www.penn.museum/collections/object/65727", - "curatorial_section": "Historic", - "object_number": "71-18-28C" - }, - { - "emuIRN": "274339", - "description": "Wire puzzle with boot and cap.", - "provenience": [ - "Europe", - "France (uncertain)" - ], - "material": [ - "Metal" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Wire Puzzle" - ], - "url": "http://www.penn.museum/collections/object/274339", - "curatorial_section": "Historic", - "object_number": "8812" - }, - { - "emuIRN": "159716", - "description": "Sectional Checker Board Puzzle - Box and lid. Cardboard puzzle, 15 pieces cut into various shapes, to be put together to form squares made of alternating dark and light tiles.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Selchow & Richter" - ], - "material": [ - "Cardboard" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/159716", - "date_made_early": "1880", - "date_made": "9/7/1880", - "date_made_late": "1880", - "curatorial_section": "Historic", - "object_number": "15496" - }, - { - "emuIRN": "18643", - "description": "12 lithographed cards with pictures of children's games. Fused to 16555", - "technique": [ - "Lithograph" - ], - "provenience": [ - "France", - "Paris (France)" - ], - "iconography": [ - "Games" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Cards" - ], - "url": "http://www.penn.museum/collections/object/18643", - "curatorial_section": "Historic", - "object_number": "16231" - }, - { - "emuIRN": "34693", - "description": "Puzzle: The Hawaiian Puzzle. Wood box with depression for metal balls to roll in. 1 large (queen) and 5 small. Balls under glass", - "provenience": [ - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Metal", - "Glass", - "Wood" - ], - "accession_credit_line": [ - "Gift of Mrs. John Harrison, 1894" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/34693", - "date_made_early": "1869", - "date_made": "c. 1894", - "date_made_late": "1894", - "curatorial_section": "Historic", - "object_number": "16401" - }, - { - "emuIRN": "93791", - "description": "Card /Puzzle Game: The Puzzle Game of 50 Up", - "provenience": [ - "England", - "London" - ], - "culture": [ - "British" - ], - "accession_credit_line": [ - "Gift of Henry Jones, 1893" - ], - "object_name": [ - "Card Game", - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93791", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "16555" - }, - { - "emuIRN": "117728", - "description": "Puzzle Card for Donaldson Brothers, New York / Flyer Advertisement \"Jonas Agents: dealers in Boots, shoes and rubbers, Newark NJ. Rectangular paper", - "provenience": [ - "New York" - ], - "culture": [ - "American" - ], - "creator": [ - "Donaldson Brothers" - ], - "material": [ - "Paper" - ], - "object_name": [ - "Puzzle", - "Advertisement" - ], - "url": "http://www.penn.museum/collections/object/117728", - "curatorial_section": "Historic", - "object_number": "18578" - }, - { - "emuIRN": "303943", - "description": "Green glass cylindrical bottle, corked, contained cylindrical pieces wom of them put together", - "provenience": [ - "Pennsylvania", - "Bucks County" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Glass", - "Metal", - "String", - "Cork" - ], - "accession_credit_line": [ - "Gift of Col. Henry D. Paxson, 1897" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/303943", - "curatorial_section": "Historic", - "object_number": "20067" - }, - { - "emuIRN": "287388", - "description": "Puzzle: Betsy Ross Flag Puzzle. 13 balls for 13 states.", - "provenience": [ - "Pennsylvania", - "Philadelphia" - ], - "culture": [ - "American" - ], - "accession_credit_line": [ - "Gift of Dr. Max Uhle, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/287388", - "curatorial_section": "Historic", - "object_number": "21082" - }, - { - "emuIRN": "140578", - "description": "Wood square with heart outline, hole in center of hearth. Wood Arrow", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/140578", - "curatorial_section": "Historic", - "object_number": "21458" - }, - { - "emuIRN": "120293", - "description": "Wood Board with instructions. Metal Arm.", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "material": [ - "Wood", - "Metal" - ], - "accession_credit_line": [ - "Gift of R. Stewart Culin, 1898" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120293", - "curatorial_section": "Historic", - "object_number": "21460" - }, - { - "emuIRN": "25280", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/25280", - "curatorial_section": "Historic", - "object_number": "21594A" - }, - { - "emuIRN": "406863", - "description": "canoe puzzle. original and copy; both are wood and string", - "provenience": [ - "Massachusetts", - "Salem" - ], - "iconography": [ - "Canoe" - ], - "material": [ - "Wood", - "String" - ], - "accession_credit_line": [ - "Gift of Margaret W. Brooks, 1899" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/406863", - "curatorial_section": "Historic", - "object_number": "21594B" - }, - { - "emuIRN": "93703", - "description": "The Subway Puzzle, made by the American Game and Puzzle Company, 2715 Broadway, New York", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "The American Game and Puzzle Company" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/93703", - "curatorial_section": "Historic", - "object_number": "29-191-146" - }, - { - "emuIRN": "64758", - "description": "Yamato Block Puzzle - 6 pieces of wood", - "provenience": [ - "Japan" - ], - "culture": [ - "Japanese" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64758", - "curatorial_section": "Historic", - "object_number": "29-191-159" - }, - { - "emuIRN": "64759", - "description": "See Dar Wonderful - 9 pieces of wood", - "provenience": [ - "Europe (uncertain)" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle" - ], - "url": "http://www.penn.museum/collections/object/64759", - "curatorial_section": "Historic", - "object_number": "29-191-160" - }, - { - "emuIRN": "30391", - "description": "12 pieces", - "provenience": [ - "New York", - "New York City" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Wood" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Block Puzzle", - "Reproduction (uncertain)" - ], - "url": "http://www.penn.museum/collections/object/30391", - "curatorial_section": "Historic", - "object_number": "29-191-161" - }, - { - "emuIRN": "22499", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle", - "Reproduction" - ], - "url": "http://www.penn.museum/collections/object/22499", - "other_numbers": [ - "4001" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157B" - }, - { - "emuIRN": "120252", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Copy of \"A\" made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/120252", - "other_numbers": [ - "4001?" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157C" - }, - { - "emuIRN": "156290", - "description": "Fighting Pig Puzzle - piece of cardboard to which is attached a string holding 2 balls - Varient of \"A\" with rings instead of balls; made by Stanford White Company", - "provenience": [ - "New York", - "New York City" - ], - "culture": [ - "American" - ], - "creator": [ - "Stanford White Company" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Received from various sources, pre-1929" - ], - "object_name": [ - "Puzzle" - ], - "url": "http://www.penn.museum/collections/object/156290", - "other_numbers": [ - "4002" - ], - "curatorial_section": "Historic", - "object_number": "29-191-157D" - }, - { - "emuIRN": "99398", - "description": "Blue piece of paper in which is wrapped another blue piece of paper and wrapped in a second piece of blue paper are 2 folded pieces of pink paper and in one of the folded pieces of pink paper is a silver foil disc", - "provenience": [ - "Pennsylvania", - "Pittsburgh" - ], - "culture": [ - "American" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Charles Este, Jr., 1899" - ], - "object_name": [ - "Puzzle", - "Trick" - ], - "url": "http://www.penn.museum/collections/object/99398", - "curatorial_section": "Historic", - "object_number": "19783" - }, - { - "emuIRN": "130464", - "description": "Cartes a Jouer / One Deck of 32 Piquet Playing Cards. Suits: Carreaux, Couers, Piques, and Trefles = Diamonds, hearts, spades, clubs. Cards: Ace, King, Queen, Knave, 10, 9, 8, 7 Court Cards: Caesar, Charles, David and Alexander / Rachel, Judith, Pallas and Argine / Lahire, Hector Hogier and Lancelot. Back - plain white. Eagle watermark visible on most cards. See 15673 - miniature deck.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/130464", - "native_name": [ - "Cartes a Jouer" - ], - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "7594" - }, - { - "emuIRN": "160242", - "description": "One Deck of Piquet play cards (32 total). French Suits: 4 suits; spades, clubs, hearts, diamonds. Named Court Cards: Alexander Argine Lancelot / David, Pallas, Hogier / Charles, Judith, Lahire / Cesar, Rachel, Hector. Watercolor, fair condition. Back: Solid blue color. Edges: Gilded", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/160242", - "date_made_early": "1800", - "date_made": "1800-1899", - "date_made_late": "1899", - "curatorial_section": "Historic", - "object_number": "7595" - }, - { - "emuIRN": "157104", - "description": "Miniatures deck of 32 piquet cards. Bacl: Pink. French suits: heart, diamond, club, spade. Full figure court cards.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "France" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1890" - ], - "object_name": [ - "Playing Card Deck", - "Piquet" - ], - "url": "http://www.penn.museum/collections/object/157104", - "date_made_early": "1800", - "date_made": "19th century", - "date_made_late": "1890", - "curatorial_section": "Historic", - "object_number": "7629" - }, - { - "emuIRN": "157105", - "description": "Miniature deck - 52 cards. Back: 13 pink, 39 green. French suits: heart, club, spade and diamond. Double headed court cards. Gold frame on Front. Maker Name on 4 Hearts. Blu diamond surrounded by gold/green frame on white wrapper. Maker: C. L. Wust.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "C. L. Wust" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of J. D. Sergeant, 1890" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/157105", - "curatorial_section": "Historic", - "object_number": "7630" - }, - { - "emuIRN": "98559", - "description": "Card Game - Patience with 52 cards - miniature deck with 4 continents. French Suits: Hearts-Europe, Diamonds-America, Spades-Asia, Clubs-Africa. Court Cards represent King, Queen, Knight of each continent. Ace has 2 scenes from respective continent. Back: multicolor scene - bird at fountain. Box - Same as back, but in shades of blue. Maker: B. Dondorf, #27.", - "provenience": [ - "Germany", - "Frankfurt" - ], - "culture": [ - "German" - ], - "creator": [ - "B. Dondorf" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of W. Yorke Stevenson, 1891" - ], - "object_name": [ - "Playing Card Deck" - ], - "url": "http://www.penn.museum/collections/object/98559", - "date_made_early": "1800", - "date_made": "1800-1891", - "date_made_late": "1891", - "other_numbers": [ - "27" - ], - "curatorial_section": "Historic", - "object_number": "7712" - }, - { - "emuIRN": "248509", - "description": "Card dominoes in box.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Card Game", - "Dominoe" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/248509", - "curatorial_section": "Historic", - "object_number": "8813" - }, - { - "emuIRN": "137944", - "description": "Deck of Tarot Cards - 78 cards, Tarots Egyptiennes - Livre de Thot. Marked for fortune telling. Numbered 1 - 78. Label in French on top and bottom. Backside: green triangles set in a grid. (see picture, main card file). Purple box with #1 card as label.", - "provenience": [ - "France" - ], - "culture": [ - "French" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/137944", - "date_made_early": "1866", - "date_made": "c. 1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "9011" - }, - { - "emuIRN": "194220", - "description": "\"Les tarots cabalistiques. Tours de cartes. Amusements de société\" Tarot Card Deck - 32 cards and booklet. Watilliaux, Editeur, 1878. Blue box with label on one side.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "creator": [ - "Watilliaux" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1891" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/194220", - "date_made_early": "1878", - "date_made": "1878", - "date_made_late": "1878", - "curatorial_section": "Historic", - "object_number": "9018" - }, - { - "emuIRN": "205296", - "description": "Playing Card Deck - 48 cards. Back: Blue on white Moire design. Wrapper: blue and gold on white. \"Fabrica de Naipes / Finos / La Amistad / De U Cuervo / Puebla / 1873", - "technique": [ - "Printed" - ], - "provenience": [ - "Mexico (Central America)", - "Puebla (Mexican State)" - ], - "culture": [ - "Spanish" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of the US National Museum, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/205296", - "date_made_early": "1873", - "date_made": "1873-1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15360" - }, - { - "emuIRN": "21030", - "description": "Combination playing cards and fortune telling cards - 36 numbered cards. Black ink drawing on white. Design - Number at top / standard French playing card (hearts, spades, diamonds, clubs) drawn in middle / fortune telling devise at bottom of face. Back: light blue.", - "provenience": [ - "France", - "Paris (France)" - ], - "culture": [ - "French" - ], - "material": [ - "Cardboard" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1892" - ], - "object_name": [ - "Playing Card Deck", - "Fortune Telling Cards" - ], - "url": "http://www.penn.museum/collections/object/21030", - "date_made_early": "1865", - "date_made": "pre 1890", - "date_made_late": "1890", - "other_numbers": [ - "43" - ], - "curatorial_section": "Historic", - "object_number": "15513" - }, - { - "emuIRN": "46932", - "description": "Card Game - Cucu. 40 cards - 2 each of a numerical series from 1 to 10 in black and 2 of the following picture cards - fool, gorgon, bucket, nothing, nulla, taverna, cat, horse, bravo and cuckoo (cucu); single card of a rampant lion holding a shield with \"dilittevole giuoco dell chuchu. Printed in colors. Back: blue on white with central rosette. Made by Guglielmo Murari", - "provenience": [ - "Italy", - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/46932", - "date_made_early": "1880", - "date_made": "1880-1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15528" - }, - { - "emuIRN": "220035", - "description": "Tarocchi/Tarot pack; 60 cards. Back: Blue on white - woman with crown, shield and staff. Stabilimento Gmo Murari, Bari. Label: Guglielmo Murari / Bari. Tax stamp and date stamp 29, Nov 90.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/220035", - "date_made_early": "29 Nov 1890", - "date_made": "11/29/1890", - "date_made_late": "29 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15529" - }, - { - "emuIRN": "220036", - "description": "Playing Card Deck - 40 cards, with wrappper. 4 suits of 10 each. Back: Black and white symmetrical pattern with MURARI and BARI in banners. Name Card: Stabilimento Guglielmo Muarari / Bari with tax and date stamps - 27 OTT 90. Paper label: Primiera n. 42. Maker: Guglielmo Murari, No. 42", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/220036", - "date_made_early": "27 Oct 1890", - "date_made": "10/27/1890", - "date_made_late": "27 Oct 1890", - "other_numbers": [ - "42" - ], - "curatorial_section": "Historic", - "object_number": "15530" - }, - { - "emuIRN": "289473", - "description": "Playing card Deck - 40 cards. Back: mBlack and white diamond checkered. Spanish suits: 4 suits of ten each. Name Card Gugmo Murari, Bari. Tax and date stamp 17 Gen 87 (?) Guglielmo Murari.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/289473", - "date_made_early": "17 Jan 1887", - "date_made": "1/17/1887", - "date_made_late": "17 Jan 1887", - "curatorial_section": "Historic", - "object_number": "15532" - }, - { - "emuIRN": "114394", - "description": "Playing card Deck - 52 cards with wrapper. Complete pack with 4 suits. Guglielmo Murari / In Bari, Tax and date stamp. Back: blue on white symmetrical pattern. Edges folded over.", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/114394", - "date_made_early": "1867", - "date_made": " pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15533" - }, - { - "emuIRN": "82994", - "description": "Spanish pack - 40 cards with wrapper. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavoe 115-121 (Casa Propria) Bari. Back: Blue on white rococo pattern. Label: blue on white. Guglielmo Murari, No. 13", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack" - ], - "url": "http://www.penn.museum/collections/object/82994", - "date_made_early": "17 Jun 1890", - "date_made": "6/17/1890", - "date_made_late": "17 Jun 1890", - "other_numbers": [ - "13" - ], - "curatorial_section": "Historic", - "object_number": "15534" - }, - { - "emuIRN": "233242", - "description": "Playing card Deck - 40 cards.. Name card: Stabilimento di carte da Biuoco Gugl. Murari Via Cavour 115-121 (Casa Propria) Bari. Tax and date stamp: 13 Mar 91. Back: black on white rococo pattern with checkerboad diamond border. Label: lack on white. Guglielmo Murari, No. 5 Black", - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/233242", - "date_made_early": "13 Mar 1891", - "date_made": "3/13/1891", - "date_made_late": "13 Mar 1891", - "other_numbers": [ - "5" - ], - "curatorial_section": "Historic", - "object_number": "15536" - }, - { - "emuIRN": "237987", - "description": "Playing card deck - 40 miniature cards. 1 1/12 X 2 1/2 cm. Underside: Multi-color designs: cups, coins, clubs, swords. Back: Black and white diamond checkerboard pattern. Watercolor. Maker Card: Fab Ca G. Murari Bari. No tax/date stamps.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Bari, Italy" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Guglielmo Murari" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/237987", - "date_made_early": "13 Mar 1891", - "date_made": "pre 1892", - "date_made_late": "13 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15537" - }, - { - "emuIRN": "264110", - "description": "Tarot Card Deck - 43 cards - incomplete. Captions in Italian - #13 does not have a caption. Back: black and white symetrical pattern - star/flower in lattice pattern. White border. Watercolor.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/264110", - "date_made_early": "1867", - "date_made": "pre 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15538" - }, - { - "emuIRN": "36188", - "description": "Playing card deck - 40 cards in box.. Underside: Multi-color designs: clubs, coins, swords, cups. Back: Green and white floral pattern. Golden edges. Watercolor. Fair condition. Original box included. Maker: Fabbrica de Carte da Giuoco di Pietro Marchesini in Bologna. Tax and Date Stamp - 5 MAG ? (year not legible)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/36188", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15540" - }, - { - "emuIRN": "154504", - "description": "Playing card deck - 40 cards. Italian Suits - 4 suits of 10 each. 4 Coins: Premiato espoizione e Miliana 1888. Maker Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Wrapped backing with blue on white sculptural design.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/154504", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15541" - }, - { - "emuIRN": "203963", - "description": "Playing card deck - 52 cards. Italian suits: cups, swords, medallions, clubs. Watercolor. Cards wrapped. \"Asso di Denari\" Printing on a few. Back: Blue on white pattern. Name Card: Card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 27 AGO 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/203963", - "date_made_early": "27 Aug 1891", - "date_made": "8/27/1891", - "date_made_late": "27 Aug 1891", - "curatorial_section": "Historic", - "object_number": "15543" - }, - { - "emuIRN": "241994", - "description": "Playing card deck - Tarot - 29 cards - incomplete deck. Back: black and white floral design. Underside: various multi-color pictorial representations of card's character and number. Watercolor. Predominant colors: blue, green, red, yellow. Maker: Pietro Marchesini.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/241994", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15544" - }, - { - "emuIRN": "243680", - "description": "Playing card deck - 40 cards. Back: blue portrait pattern design on white - women's head on opposite sides of a central floral pattern. Italian Suits: swords, clubs, cups, coins. Bone color border on both sides. Maker card: Fabbrica di Pietro Marchesini Bologna; Tax and date stamp: 17 MAG 91. Watercolor", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/243680", - "date_made_early": "17 May 1891", - "date_made": "5/17/1891", - "date_made_late": "17 May 1891", - "curatorial_section": "Historic", - "object_number": "15545" - }, - { - "emuIRN": "87145", - "description": "Playing card deck / Tarot Cards - 62 cards. Back: Orange on white symmetrical design. Back folds over face and forms border. Handcolored cards. Maker's card: Fabbrica di Pietro Marchesini / Bologna / Asso di Denaro. Seal: Regno d'Italia Centesimi. Tax stamp: Ufficio Del Denario Bologna / 16 (Month) 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/87145", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15546" - }, - { - "emuIRN": "59271", - "description": "Game of Cucu - 2 identical decks of 40 cards. Numbers 1-10, and an identical set of picture cards. Blue on white symmetrical back. Maker: Pietro Marchesini", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Cucu" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/59271", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15547" - }, - { - "emuIRN": "336096", - "description": "Playing card deck - 52 cards. Back: tiny maroon design on white background. French Suits.: spades, clubs, hearts, diamonds. Watercolor. Heart Ace: Pietro Marchesini fabricatore / Bologna; Tax and date stamp - 25 NOV (year not readable)", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/336096", - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15548" - }, - { - "emuIRN": "203973", - "description": "Playing card deck - French Suits, 40 cards, in original box. Blue on white Back. Maker Card: Fabbrica di Pietro Marchesini / Bologna; tax and date stamp 9 APR 88.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Marchesini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/203973", - "date_made_early": "09 Apr 1888", - "date_made": "4/9/1888", - "date_made_late": "09 Apr 1888", - "curatorial_section": "Historic", - "object_number": "15550" - }, - { - "emuIRN": "238541", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: ? ? 91. Back Identical to 15553", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Whist" - ], - "url": "http://www.penn.museum/collections/object/238541", - "date_made_early": "1891", - "date_made": "1891", - "date_made_late": "1891", - "curatorial_section": "Historic", - "object_number": "15552" - }, - { - "emuIRN": "131933", - "description": "Playing card deck - 40 cards. Back: blue pattern with white border. Italian Suits: coins, swords, clubs. Watercolor. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 16 GIU 91. Back Identical to 155532", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/131933", - "date_made_early": "16 Jun 1891", - "date_made": "6/16/1891", - "date_made_late": "16 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15553" - }, - { - "emuIRN": "158923", - "description": "Playing card deck - 40 cards. Back: blue \"mosque scene\" Italian Suits. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 6 GIU 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/158923", - "date_made_early": "01 Jun 1891", - "date_made": "6/1/1891", - "date_made_late": "01 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15554" - }, - { - "emuIRN": "103187", - "description": "Playing card deck - 66 Tarot cards. 40 minor cards; 22 major Minor cards standard with 2, 3, 4, 5 suppressed; Court cards: double headed instead of full figures. Major cards based on Minchiatti deck - 5-16 numbered card. Horizontal axis of symmetry. Backs are white scroll work on blue. Wrapped back with blue sculptural motif. Maker Card: Fabbrica di Emilia Angiolini / Via Casse N. 61 / Bologna. Tax and date stamp: 3 FEB 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Emilia Angiolini" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/103187", - "native_name": [ - "Tarocchino" - ], - "date_made_early": "03 Feb 1891", - "date_made": "2/3/1891", - "date_made_late": "03 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15555" - }, - { - "emuIRN": "178709", - "description": "Playing card deck - 52 cards with wrapper. Wrapped edge. Back: blue on white lozenge design with central rosette. Maker Card: F. L. Muccioli, Povoletto-Udine. Tax and date stamp: 9 Mag 90", - "provenience": [ - "Italy", - "Povoletto-Udine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "F. L. Muccioli" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/178709", - "date_made_early": "09 May 1890", - "date_made": "5/9/1890", - "date_made_late": "09 May 1890", - "curatorial_section": "Historic", - "object_number": "15556" - }, - { - "emuIRN": "277112", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white lattice / tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/277112", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15557" - }, - { - "emuIRN": "25552", - "description": "Playing card deck - 40 cards Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/25552", - "date_made_early": "12 Mar 1891", - "date_made": "3/12/1891", - "date_made_late": "12 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15558" - }, - { - "emuIRN": "325482", - "description": "Playing card deck - 62 cards. Italian suits. Wrapped edge. Back: blue on white star/rosette tile pattern (same as 15558). Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna. Tax and date stamp: 2 FEB - year not legible.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/325482", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1895", - "curatorial_section": "Historic", - "object_number": "15559" - }, - { - "emuIRN": "325483", - "description": "Playing card deck - 40 cards. Wrapped Edge. Back: blue diamond checkerboard design. Maker Card: Fabbrica di Pietro Fiorentini / via S. Carlo, N. 55 / Bologna / Asso di Denaro. Tax and date stamp: 12 MAR 91.", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Fiorentini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/325483", - "date_made_early": "12 Mar 2091", - "date_made": "3/12/91", - "date_made_late": "12 Mar 2091", - "curatorial_section": "Historic", - "object_number": "15560" - }, - { - "emuIRN": "48114", - "description": "Playing card deck - 64 cards. Italian minor suit: swords, cups, coins, clubs. Major Card: Bolonga style. Maker Card: Ptro. Barigazzi / Asso di Denari / Bologna. Tax and date stamp: 22 GIU 91. Back: blue print design on white central diamond within symmetrical shield; banner with Barigazzi and Bologna.", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/48114", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "22 Jun 1891", - "date_made": "6/22/1891", - "date_made_late": "22 Jun 1891", - "curatorial_section": "Historic", - "object_number": "15561" - }, - { - "emuIRN": "167380", - "description": "Playing card deck - 34 cards. Wrapped Edge. Back: blue on white harlequin/clown figure. 10 money (\"7\" missing), 8 cups (\"3-5\" missing), 7 clubs (king, \"3\", \"4\" missing), 10 swords. Maker Card: Gius Beghi Piacenza. Tax and date stamp (Illegible)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/167380", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15562" - }, - { - "emuIRN": "321272", - "description": "Carte da Giuocare = Playing card deck - 40 cards. Neopolitan/Spanish Suits: cups, coins, swords, clubs. Back: central logo S. F. Di Paola flanded with church - 3 domes and collonade; blue meandering line in frame and on wrapped edge. Original wrapper - purple print. Maker Card: Vincenzo Russo/ Via Candelari al Pendino 8 / Napoli. Tax stamp dated 11/Feb/91", - "technique": [ - "Watercolor" - ], - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Vincenzo Russo" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Spanish Pack", - "Neopolitan Pack" - ], - "url": "http://www.penn.museum/collections/object/321272", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "11 Feb 1891", - "date_made": "2/11/1891", - "date_made_late": "11 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15563" - }, - { - "emuIRN": "279915", - "description": "Playing card deck - 40 cards with wrapper. Italian suits: coin, sword, club, cup. Wrapped edge. Back: blue on white, square grid/lattice design. Maker Card: Luigi Piegnalosa / Angolo S. Tommaso d'Aquino 33 / Napoli. Tax and date stamps: 14 FEB 91.", - "provenience": [ - "Italy", - "Naples" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Luigi Pignalosa" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/279915", - "date_made_early": "14 Feb 1891", - "date_made": "2/14/1891", - "date_made_late": "14 Feb 1891", - "curatorial_section": "Historic", - "object_number": "15564" - }, - { - "emuIRN": "157272", - "description": "Playing card deck - 40 cards. Italian Suit. Back: dark blue marble pattern. Maker Card: C. Ravenna e Frat / Ferrara. Tax and date stamps: 4 OTT 88", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/157272", - "date_made_early": "04 Oct 1888", - "date_made": "10/4/1888", - "date_made_late": "04 Oct 1888", - "curatorial_section": "Historic", - "object_number": "15566" - }, - { - "emuIRN": "88522", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white; central name plate FERRARA flanked by decorate motif; horizontally stripped background. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 14 OTT 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/88522", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15567" - }, - { - "emuIRN": "177453", - "description": "Playing card deck - 40 cards. Italian suits. Back: red-orange marble pattern. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 24 MAR 91", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/177453", - "date_made_early": "24 Mar 1891", - "date_made": "3/24/1891", - "date_made_late": "24 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15568" - }, - { - "emuIRN": "322855", - "description": "Playing card deck - 40 cards. Wrapped edge. Back: blue on white, flower in floral keyhole design. Maker Card: C. Ravenna e Fratteli / Ferrara. Tax and date stamps: 25 NOV 90", - "provenience": [ - "Italy", - "Ferrara" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Ravenna & Frat" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322855", - "date_made_early": "25 Nov 1890", - "date_made": "11/25/1890", - "date_made_late": "25 Nov 1890", - "curatorial_section": "Historic", - "object_number": "15569" - }, - { - "emuIRN": "322856", - "description": "Playing card deck - 40 cards with wrapper. Wrapped edge. Back: blue and white diamond checkerboad design. Maker Card: Giovanni Pozzi / Modena. Tax and date stamp: 27 (?) LUG 91. Wrapper: Fabbrica Carte da Giuoco di Giovanni Pozzi / Negoziante di Carte ed Oggeti di Cancellaria / Via S. Carlo n. 1 - Modena", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/322856", - "date_made_early": "27 Jul 2091", - "date_made": "7/27/91", - "date_made_late": "27 Jul 2091", - "curatorial_section": "Historic", - "object_number": "15570" - }, - { - "emuIRN": "289232", - "description": "Playing card deck - 20 miniature cards. 1 1/2 X 2 1/2 cm (roughly). Back: pale green/white leaf pattern. Maker: Giovanni Pozzi, Modena", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giovanni Pozzi" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/289232", - "date_made": "pre 1892", - "curatorial_section": "Historic", - "object_number": "15571" - }, - { - "emuIRN": "71704", - "description": "Playing card deck - 40 cards in wrapper. Back: pale orange design with 3 faces in medallions. Italian suits: 1-7, king, queen, and knave. Maker Card: Premiata Fabbrica / E Co / L. Bartolini Perugia. Tax and date stamp 2 GUI 92, Wrapper: black on beige paper; Griffin with Shield, Label: Fabbrica di L. Bartolini e Co. / Perugia / Ombre / Via dell'Elce no. 6", - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "L. Bartolini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/71704", - "date_made_early": "02 Jul 1892", - "date_made": "7/2/1892", - "date_made_late": "02 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15572" - }, - { - "emuIRN": "341571", - "description": "Playing card deck - 40 cards with wrapper. Italian Suits. Back: Black and white checkerboard and star pattern. Maker Card: Fabbrica A. Silvestrini / Perugia. Tax and date stamp 1 GIU 92. Green wrapper with black print: A. Silvestrini / Cate da Giuoco.", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Perugia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Silvertrini" - ], - "material": [ - "Paper" - ], - "period": [ - "Late 19Th Century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/341571", - "date_made_early": "01 Jul 1892", - "date_made": "7/1/1892", - "date_made_late": "01 Jul 1892", - "curatorial_section": "Historic", - "object_number": "15573" - }, - { - "emuIRN": "231215", - "description": "Playing card deck - 44 cards", - "provenience": [ - "Italy", - "Bergamo" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Masenghini" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Milanese Deck" - ], - "url": "http://www.penn.museum/collections/object/231215", - "curatorial_section": "Historic", - "object_number": "15575" - }, - { - "emuIRN": "290651", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back with blue face designs.", - "provenience": [ - "Italy", - "Trento" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Giac. Bertoldi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/290651", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15577" - }, - { - "emuIRN": "116249", - "description": "Playing card deck - 40 cards, printed back with pink abstract designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/116249", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15578" - }, - { - "emuIRN": "76331", - "description": "Playing card deck - 40 cards. Wrapped back with orange floral design", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/76331", - "date_made_early": "1867", - "date_made": "c.1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15579" - }, - { - "emuIRN": "76332", - "description": "Playing card deck - 40 cards, wrapped back with orange design (includes hearts and octagons in center)", - "provenience": [ - "Italy", - "Piacenza" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Gius Beghi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/76332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15580" - }, - { - "emuIRN": "189908", - "description": "Playing card deck - 40 cards, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/189908", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15583" - }, - { - "emuIRN": "275719", - "description": "Playing card deck - Tarocchi/Tarot -78 cards. Printed back with orange diamond pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "url": "http://www.penn.museum/collections/object/275719", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15584" - }, - { - "emuIRN": "51584", - "description": "Playing card deck - 40 cards. Wrapped back with blue X-pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "M. Grazia" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/51584", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15585" - }, - { - "emuIRN": "56004", - "description": "Playing card deck - 31 cards (incomplete) Rounded corners, wrapped back with blue checkerboard pattern", - "provenience": [ - "Italy", - "Modena" - ], - "culture": [ - "Italian" - ], - "creator": [ - "A. Crispolani" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/56004", - "date_made_early": "1850", - "date_made": "circa 1860", - "date_made_late": "1870", - "curatorial_section": "Historic", - "object_number": "15586" - }, - { - "emuIRN": "124979", - "description": "Playing card deck - Tarocchi/Tarot - 78 cards", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Tarot" - ], - "measurement_unit": "cm", - "url": "http://www.penn.museum/collections/object/124979", - "native_name": [ - "Tarocchi" - ], - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1892", - "curatorial_section": "Historic", - "object_number": "15587" - }, - { - "emuIRN": "212458", - "description": "Playing card deck / French Pack - 52 cards. Regulr card paper with blue lines making diamonds on white ground on back. 8.8 X 5.7 cm Name of manufactor on the joker.", - "provenience": [ - "Italy", - "Sesia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Serravalle" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "French Pack" - ], - "url": "http://www.penn.museum/collections/object/212458", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15588" - }, - { - "emuIRN": "309331", - "description": "Playing card deck - 52 cards. Wrapped back with Y-pattern.", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "G. C. Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309331", - "date_made_early": "30 Mar 1891", - "date_made": "3/30/1891", - "date_made_late": "30 Mar 1891", - "curatorial_section": "Historic", - "object_number": "15589" - }, - { - "emuIRN": "309332", - "description": "Playing card deck - 40 cards with wrapper. Rounded corners, printed back:blue on blue design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309332", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15590" - }, - { - "emuIRN": "86979", - "description": "Playing card deck - 40 cards. Rounded corners, printed back: blue on blue designs", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Genoa" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Fratelli Armanino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/86979", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15592" - }, - { - "emuIRN": "5817", - "description": "Carte da Giuocare - Playing card deck - 40 cards with wrapper. Suits: Cup, Coin, Spade, Club. Court: King, Queen, Soldier. Numbers Ace to 7; 8-10 suppressed. Wrapped back with blue manufacturor name and location. Maker: Pietro Barigazzi", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "period": [ - "19th century" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5817", - "native_name": [ - "Carte da Giuocare" - ], - "date_made_early": "1867", - "date_made": "pre 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15594" - }, - { - "emuIRN": "170983", - "description": "Playing card deck - 40 cards with wrapper, marked number 2. Wrapped back with 4 blue babies/angels", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Baby", - "Angel" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/170983", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15595" - }, - { - "emuIRN": "300071", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with blue design (tambourine in center). Blue checkerboard border laps over onto face of cards", - "provenience": [ - "Italy", - "Bologna" - ], - "iconography": [ - "Tambourine" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/300071", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15596" - }, - { - "emuIRN": "236603", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with black design (tambourine in center). Checkerboards border laps onto card face", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236603", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15597" - }, - { - "emuIRN": "141064", - "description": "Playing card deck - 40 cards with wrapper. Wrapped back with orange design", - "provenience": [ - "Italy", - "Bologna" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Pietro Barigazzi" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141064", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15598" - }, - { - "emuIRN": "126294", - "description": "Playing card deck - 52 cards with wrapper. Wrapped back wtih green design.", - "provenience": [ - "Italy", - "Treviso" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Francesca Rino" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/126294", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15599" - }, - { - "emuIRN": "309333", - "description": "Playing card deck - 40 cards. Printed back with blue checkered design.", - "provenience": [ - "Italy", - "Parma (Italy)" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Faelli Carlo" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/309333", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15600" - }, - { - "emuIRN": "261187", - "description": "Playing card deck - Cucu Pack 40 cards. Wrapped back with blue design. Includes mfr, name and location and human face", - "provenience": [ - "Italy", - "Brescia" - ], - "culture": [ - "Italian" - ], - "creator": [ - "C. Cassini Salvotti" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Cucu" - ], - "url": "http://www.penn.museum/collections/object/261187", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15601" - }, - { - "emuIRN": "5818", - "description": "40 cards with wrapper. Printed back: green and blue plaid", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/5818", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15604" - }, - { - "emuIRN": "236604", - "description": "Playing Card Deck - 40 cards. Blue printed back with abstract design. Made by Antonio Poli", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Deposited by R. Stewart Culin, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/236604", - "date_made_early": "1868", - "date_made": "c. 1893", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15607" - }, - { - "emuIRN": "141065", - "description": "Playing card deck - 40 cards similar to 15607. Printed back with orange speckles", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Antonio Poli" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/141065", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15608" - }, - { - "emuIRN": "319728", - "description": "Playing card deck - 40 cards", - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/319728", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15621" - }, - { - "emuIRN": "119150", - "description": "Playing card deck - Italian/Florentine Pack - 40 cards with wrapper. Printed back, blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack", - "Florentine Pack" - ], - "url": "http://www.penn.museum/collections/object/119150", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15622" - }, - { - "emuIRN": "92457", - "description": "Playing card deck - 40 cards with wrapper. Printed back with blue abstract design", - "technique": [ - "Printed" - ], - "provenience": [ - "Italy", - "Firenze" - ], - "culture": [ - "Italian" - ], - "creator": [ - "Allesandro Conti Co" - ], - "material": [ - "Paper" - ], - "accession_credit_line": [ - "Gift of Francis C. Macauley, 1893" - ], - "object_name": [ - "Playing Card Deck", - "Italian Pack" - ], - "url": "http://www.penn.museum/collections/object/92457", - "date_made_early": "1867", - "date_made": "c. 1892", - "date_made_late": "1893", - "curatorial_section": "Historic", - "object_number": "15623" - } - ] -} diff --git a/src/tests-tokens/tokens-metadata-tests.ts b/src/tests-tokens/tokens-metadata-tests.ts index cad6a9a0fb..03951b80d1 100644 --- a/src/tests-tokens/tokens-metadata-tests.ts +++ b/src/tests-tokens/tokens-metadata-tests.ts @@ -325,9 +325,12 @@ describe('api tests', () => { test('large payload test', () => { //mock the response - const rawdata = fs.readFileSync('src/tests-tokens/test-data/large-size-test-data.json'); - - nock('https://example.com').get('/large_payload').reply(200, rawdata.toString()); + let random_data = 'abcdefghij'; //10 bytes + //this will make it 1.2MB + for (let i = 0; i < 17; i++) { + random_data += random_data; + } + nock('https://example.com').get('/large_payload').reply(200, random_data); void expect(async () => { await performFetch('https://example.com/large_payload'); From cd02763bdbe6695b6fe07bc8087f1370bad7b286 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Mon, 19 Jul 2021 22:38:09 +0500 Subject: [PATCH 28/44] fix: fix rebase issue --- src/tests-tokens/tokens-metadata-tests.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/tests-tokens/tokens-metadata-tests.ts b/src/tests-tokens/tokens-metadata-tests.ts index 03951b80d1..32f2e1368a 100644 --- a/src/tests-tokens/tokens-metadata-tests.ts +++ b/src/tests-tokens/tokens-metadata-tests.ts @@ -113,8 +113,8 @@ describe('api tests', () => { await cycleMigrations(); db = await PgDataStore.connect(); client = await db.pool.connect(); - eventServer = await startEventServer({ db, chainId: ChainID.Testnet }); - api = await startApiServer(db, ChainID.Testnet); + eventServer = await startEventServer({ datastore: db, chainId: ChainID.Testnet }); + api = await startApiServer({ datastore: db, chainId: ChainID.Testnet }); }); beforeEach(() => { From d905fe0c57d18bfa8ed09ddfa4b52a113e6a07f5 Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Tue, 27 Jul 2021 13:52:49 +0500 Subject: [PATCH 29/44] fix: make fungible tokens handling fail safe --- src/event-stream/tokens-contract-handler.ts | 51 ++++++++++++++++----- 1 file changed, 39 insertions(+), 12 deletions(-) diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 8dea88b456..0253870fe1 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -166,6 +166,13 @@ interface FtTokenMetadata { description: string; } +interface FtTokenContractInfo { + name?: string; + tokenUri?: string; + symbol?: string; + decimals?: number; +} + export class TokensProcessorQueue { readonly queue: PQueue; constructor() { @@ -236,23 +243,33 @@ export class TokensContractHandler { * fetch Fungible contract metadata */ private async handleFtContract() { + const ftTokenContractInfo: FtTokenContractInfo = {}; + try { - //make read-only call to contract + //get name value const contractCallName = await this.makeReadOnlyContractCall('get-name', []); - const contractCallUri = await this.makeReadOnlyContractCall('get-token-uri', []); - const contractCallSymbol = await this.makeReadOnlyContractCall('get-symbol', []); - const contractCallDecimals = await this.makeReadOnlyContractCall('get-decimals', []); - - //check parse clarity values const nameCV = this.checkAndParseString(contractCallName); + ftTokenContractInfo.name = nameCV?.data; + + //get token uri + const contractCallUri = await this.makeReadOnlyContractCall('get-token-uri', []); const uriCV = this.checkAndParseOptionalString(contractCallUri); + ftTokenContractInfo.tokenUri = uriCV?.data; + + //get token symbol + const contractCallSymbol = await this.makeReadOnlyContractCall('get-symbol', []); const symbolCV = this.checkAndParseString(contractCallSymbol); + ftTokenContractInfo.symbol = symbolCV?.data; + + //get decimals + const contractCallDecimals = await this.makeReadOnlyContractCall('get-decimals', []); const decimalsCV = this.checkAndParseUintCV(contractCallDecimals); + ftTokenContractInfo.decimals = decimalsCV?.value; let metadata: FtTokenMetadata = { name: '', description: '', image: '' }; //fetch metadata from the uri if possible if (uriCV) { - metadata = await this.getMetadataFromUri(uriCV.data); + metadata = (await this.getMetadataFromUri(uriCV.data)) || metadata; } const { name, description, image } = metadata; const fungibleTokenMetadata: DbFungibleTokenMetadata = { @@ -269,8 +286,19 @@ export class TokensContractHandler { //store metadata in db await this.storeFtMetadata(fungibleTokenMetadata); } catch (error) { + //store with missing information + const fungibleTokenMetadata: DbFungibleTokenMetadata = { + token_uri: ftTokenContractInfo.tokenUri || '', + name: ftTokenContractInfo.tokenUri || '', + description: error, + image_uri: '', + image_canonical_uri: '', + symbol: ftTokenContractInfo.symbol || '', + decimals: Number(ftTokenContractInfo.decimals), + contract_id: `${this.contractAddress}.${this.contractName}`, + }; + await this.storeFtMetadata(fungibleTokenMetadata); logger.error('error handling FT contract', error); - throw error; } } @@ -288,7 +316,7 @@ export class TokensContractHandler { let metadata: NftTokenMetadata = { name: '', description: '', imageUrl: '' }; if (uriCV) { - metadata = await this.getMetadataFromUri(uriCV.data); + metadata = (await this.getMetadataFromUri(uriCV.data)) || metadata; } const nonFungibleTokenMetadata: DbNonFungibleTokenMetadata = { @@ -344,7 +372,7 @@ export class TokensContractHandler { /** * fetch metadata from uri */ - private async getMetadataFromUri(token_uri: string): Promise { + private async getMetadataFromUri(token_uri: string): Promise { // Support JSON embedded in a Data URL if (new URL(token_uri).protocol === 'data:') { const dataUrl = parseDataUrl(token_uri); @@ -483,7 +511,7 @@ export function hasTokens(contract_abi: ClarityAbi): boolean { return contract_abi.fungible_tokens.length > 0 || contract_abi.non_fungible_tokens.length > 0; } -export async function performFetch(url: string): Promise { +export async function performFetch(url: string): Promise { const MAX_PAYLOAD_SIZE = 1_000_000; // 1 megabyte const result = await fetch(url, { size: MAX_PAYLOAD_SIZE }); if (!result.ok) { @@ -501,6 +529,5 @@ export async function performFetch(url: string): Promise { return JSON.parse(resultString) as Type; } catch (error) { logError(`Error reading response from ${url}`, error); - throw error; } } From 1821740bb76c26676fc480fc5ec4a80a73346b4f Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Thu, 12 Aug 2021 18:03:40 +0500 Subject: [PATCH 30/44] chore: added tx_id and deployers address in tokens --- .../tokens/fungible-token.schema.example.json | 4 +- .../tokens/fungible-token.schema.json | 12 +++++- .../non-fungible-token.schema.example.json | 4 +- .../tokens/non-fungible-token.schema.json | 12 +++++- docs/generated.d.ts | 16 ++++++++ src/api/routes/tokens/tokens.ts | 16 +++++++- src/datastore/common.ts | 4 ++ src/datastore/postgres-store.ts | 37 +++++++++++++++---- src/event-stream/event-server.ts | 15 ++++---- src/event-stream/tokens-contract-handler.ts | 35 ++++++++++++------ src/migrations/1621511823381_nft-metadata.ts | 8 ++++ src/migrations/1621511832113_ft-metadata.ts | 8 ++++ src/tests-tokens/tokens-metadata-tests.ts | 14 +++++++ 13 files changed, 154 insertions(+), 31 deletions(-) diff --git a/docs/entities/tokens/fungible-token.schema.example.json b/docs/entities/tokens/fungible-token.schema.example.json index c0c158f5eb..ebe0e53d01 100644 --- a/docs/entities/tokens/fungible-token.schema.example.json +++ b/docs/entities/tokens/fungible-token.schema.example.json @@ -3,5 +3,7 @@ "name": "Heystack", "description": "Heystack is a SIP-010-compliant fungible token on the Stacks Blockchain, used on the Heystack app", "image_uri": "https://heystack.xyz/assets/Stacks128w.png", - "image_canonical_uri": "https://heystack.xyz/assets/Stacks128w.png" + "image_canonical_uri": "https://heystack.xyz/assets/Stacks128w.png", + "tx_id": "0xef2ac1126e16f46843228b1dk4830e19eb7599129e4jf392cab9e65ae83a45c0", + "sender_address": "ST399W7Z9WS0GMSNQGJGME5JAENKN56D65VGMGKGA" } diff --git a/docs/entities/tokens/fungible-token.schema.json b/docs/entities/tokens/fungible-token.schema.json index 49ebad8db1..32aca641fa 100644 --- a/docs/entities/tokens/fungible-token.schema.json +++ b/docs/entities/tokens/fungible-token.schema.json @@ -11,7 +11,9 @@ "image_uri", "image_canonical_uri", "symbol", - "decimals" + "decimals", + "tx_id", + "sender_address" ], "properties": { "token_uri": { @@ -41,6 +43,14 @@ "decimals": { "type": "number", "description": "The number of decimal places in a token." + }, + "tx_id": { + "type": "string", + "description": "Tx id that deployed the contract" + }, + "sender_address": { + "type": "string", + "description": "principle that deployed the contract" } } } diff --git a/docs/entities/tokens/non-fungible-token.schema.example.json b/docs/entities/tokens/non-fungible-token.schema.example.json index cc32ccb22c..015d0a093b 100644 --- a/docs/entities/tokens/non-fungible-token.schema.example.json +++ b/docs/entities/tokens/non-fungible-token.schema.example.json @@ -5,5 +5,7 @@ "image_uri": "https://pool.friedger.de/nft.webp", "image_canonical_uri": "https://pool.friedger.de/nft.webp", "symbol": "stx", - "decimals": 5 + "decimals": 5, + "tx_id": "0xef2ac1126e16f46843228b1dk4830e19eb7599129e4jf392cab9e65ae83a45c0", + "sender_address": "ST399W7Z9WS0GMSNQGJGME5JAENKN56D65VGMGKGA" } diff --git a/docs/entities/tokens/non-fungible-token.schema.json b/docs/entities/tokens/non-fungible-token.schema.json index 6e612b1584..bc2801b889 100644 --- a/docs/entities/tokens/non-fungible-token.schema.json +++ b/docs/entities/tokens/non-fungible-token.schema.json @@ -9,7 +9,9 @@ "name", "description", "image_uri", - "image_canonical_uri" + "image_canonical_uri", + "tx_id", + "sender_address" ], "properties": { "token_uri": { @@ -31,6 +33,14 @@ "image_canonical_uri": { "type": "string", "description": "The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive." + }, + "tx_id": { + "type": "string", + "description": "Tx id that deployed the contract" + }, + "sender_address": { + "type": "string", + "description": "principle that deployed the contract" } } } diff --git a/docs/generated.d.ts b/docs/generated.d.ts index 62a15b9d3d..f07a8ee95f 100644 --- a/docs/generated.d.ts +++ b/docs/generated.d.ts @@ -2725,6 +2725,14 @@ export interface FungibleTokenMetadata { * The number of decimal places in a token. */ decimals: number; + /** + * Tx id that deployed the contract + */ + tx_id: string; + /** + * principle that deployed the contract + */ + sender_address: string; } /** * List of non fungible tokens metadata @@ -2766,6 +2774,14 @@ export interface NonFungibleTokenMetadata { * The original image URI specified by the contract. A URI pointing to a resource with mime type image/* representing the asset to which this token represents. Consider making any images at a width between 320 and 1080 pixels and aspect ratio between 1.91:1 and 4:5 inclusive. */ image_canonical_uri: string; + /** + * Tx id that deployed the contract + */ + tx_id: string; + /** + * principle that deployed the contract + */ + sender_address: string; } /** * GET request that returns transactions diff --git a/src/api/routes/tokens/tokens.ts b/src/api/routes/tokens/tokens.ts index 6f7f41f41c..076e4bd4c2 100644 --- a/src/api/routes/tokens/tokens.ts +++ b/src/api/routes/tokens/tokens.ts @@ -69,6 +69,8 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { image_canonical_uri, symbol, decimals, + tx_id, + sender_address, } = metadata.result; const response: FungibleTokenMetadata = { @@ -79,6 +81,8 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { image_canonical_uri: image_canonical_uri, symbol: symbol, decimals: decimals, + tx_id: tx_id, + sender_address: sender_address, }; res.status(200).json(response); }); @@ -92,7 +96,15 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { res.status(404).json({ error: 'tokens not found' }); return; } - const { token_uri, name, description, image_uri, image_canonical_uri } = metadata.result; + const { + token_uri, + name, + description, + image_uri, + image_canonical_uri, + tx_id, + sender_address, + } = metadata.result; const response: NonFungibleTokenMetadata = { token_uri: token_uri, @@ -100,6 +112,8 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { description: description, image_uri: image_uri, image_canonical_uri: image_canonical_uri, + tx_id: tx_id, + sender_address: sender_address, }; res.status(200).json(response); }); diff --git a/src/datastore/common.ts b/src/datastore/common.ts index 53480cacd3..28e96b767c 100644 --- a/src/datastore/common.ts +++ b/src/datastore/common.ts @@ -506,6 +506,8 @@ export interface DbNonFungibleTokenMetadata { image_uri: string; image_canonical_uri: string; contract_id: string; + tx_id: string; + sender_address: string; } export type BlockIdentifier = @@ -522,6 +524,8 @@ export interface DbFungibleTokenMetadata { contract_id: string; symbol: string; decimals: number; + tx_id: string; + sender_address: string; } export interface DataStore extends DataStoreEventEmitter { diff --git a/src/datastore/postgres-store.ts b/src/datastore/postgres-store.ts index 33b53395ef..728663c26d 100644 --- a/src/datastore/postgres-store.ts +++ b/src/datastore/postgres-store.ts @@ -5686,7 +5686,7 @@ export class PgDataStore return this.query(async client => { const queryResult = await client.query( ` - SELECT token_uri, name, description, image_uri, image_canonical_uri, symbol, decimals, contract_id + SELECT token_uri, name, description, image_uri, image_canonical_uri, symbol, decimals, contract_id, tx_id, sender_address FROM ft_metadata WHERE contract_id = $1 LIMIT 1 @@ -5703,6 +5703,8 @@ export class PgDataStore symbol: queryResult.rows[0].symbol, decimals: queryResult.rows[0].decimals, contract_id: queryResult.rows[0].contract_id, + tx_id: queryResult.rows[0].tx_id, + sender_address: queryResult.rows[0].sender_address, }; return { found: true, @@ -5718,7 +5720,7 @@ export class PgDataStore return this.query(async client => { const queryResult = await client.query( ` - SELECT token_uri, name, description, image_uri, image_canonical_uri, contract_id + SELECT token_uri, name, description, image_uri, image_canonical_uri, contract_id, tx_id, sender_address FROM nft_metadata WHERE contract_id = $1 LIMIT 1 @@ -5733,6 +5735,8 @@ export class PgDataStore image_uri: queryResult.rows[0].image_uri, image_canonical_uri: queryResult.rows[0].image_canonical_uri, contract_id: queryResult.rows[0].contract_id, + tx_id: queryResult.rows[0].tx_id, + sender_address: queryResult.rows[0].sender_address, }; return { found: true, @@ -5754,13 +5758,15 @@ export class PgDataStore contract_id, symbol, decimals, + tx_id, + sender_address, } = ftMetadata; return await this.queryTx(async client => { const result = await client.query( ` INSERT INTO ft_metadata( - token_uri, name, description, image_uri, image_canonical_uri, contract_id, symbol, decimals - ) values($1, $2, $3, $4, $5, $6, $7, $8) + token_uri, name, description, image_uri, image_canonical_uri, contract_id, symbol, decimals, tx_id, sender_address + ) values($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) `, [ token_uri, @@ -5771,6 +5777,8 @@ export class PgDataStore contract_id, symbol, decimals, + tx_id, + sender_address, ] ); @@ -5787,15 +5795,26 @@ export class PgDataStore image_uri, image_canonical_uri, contract_id, + tx_id, + sender_address, } = nftMetadata; return await this.queryTx(async client => { const result = await client.query( ` INSERT INTO nft_metadata( - token_uri, name, description, image_uri, image_canonical_uri, contract_id - ) values($1, $2, $3, $4, $5, $6) + token_uri, name, description, image_uri, image_canonical_uri, contract_id, tx_id, sender_address + ) values($1, $2, $3, $4, $5, $6, $7, $8) `, - [token_uri, name, description, image_uri, image_canonical_uri, contract_id] + [ + token_uri, + name, + description, + image_uri, + image_canonical_uri, + contract_id, + tx_id, + sender_address, + ] ); this.emit('tokensUpdate', contract_id); return result.rowCount; @@ -5836,6 +5855,8 @@ export class PgDataStore decimals: r.decimals, symbol: r.symbol, contract_id: r.contract_id, + tx_id: r.tx_id, + sender_address: r.sender_address, })); return { results: parsed, total: totalQuery.rows[0].count }; }); @@ -5873,6 +5894,8 @@ export class PgDataStore image_uri: r.image_uri, image_canonical_uri: r.image_canonical_uri, contract_id: r.contract_id, + tx_id: r.tx_id, + sender_address: r.sender_address, })); return { results: parsed, total: totalQuery.rows[0].count }; }); diff --git a/src/event-stream/event-server.ts b/src/event-stream/event-server.ts index 0d8b0b1546..93d7a8facb 100644 --- a/src/event-stream/event-server.ts +++ b/src/event-stream/event-server.ts @@ -321,13 +321,14 @@ function handleTokenContract( tx.core_tx.contract_abi && hasTokens(tx.core_tx.contract_abi) ) { - const handler = new TokensContractHandler( - tx.sender_address, - tx.parsed_tx.payload.name, - tx.core_tx.contract_abi, - db, - chainId - ); + const handler = new TokensContractHandler({ + contractAddress: tx.sender_address, + contractName: tx.parsed_tx.payload.name, + smartContractAbi: tx.core_tx.contract_abi, + datastore: db, + chainId: chainId, + tx_id: tx.core_tx.txid, + }); tokenProcessorQueue.queueHandler(handler); } } diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 0253870fe1..2d9c21e207 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -173,6 +173,15 @@ interface FtTokenContractInfo { decimals?: number; } +export interface TokenHandlerArgs { + contractAddress: string; + contractName: string; + smartContractAbi: ClarityAbi; + datastore: DataStore; + chainId: ChainID; + tx_id: string; +} + export class TokensProcessorQueue { readonly queue: PQueue; constructor() { @@ -206,19 +215,15 @@ export class TokensContractHandler { private chainId: ChainID; private stacksNetwork: StacksNetwork; private address: string; + private txId: string; - constructor( - contractAddress: string, - contractName: string, - smartContractAbi: ClarityAbi, - datastore: DataStore, - chainId: ChainID - ) { - this.contractAddress = contractAddress; - this.contractName = contractName; - this.contractAbi = smartContractAbi; - this.db = datastore; - this.chainId = chainId; + constructor(args: TokenHandlerArgs) { + this.contractAddress = args.contractAddress; + this.contractName = args.contractName; + this.contractAbi = args.smartContractAbi; + this.db = args.datastore; + this.chainId = args.chainId; + this.txId = args.tx_id; this.stacksNetwork = GetStacksNetwork(this.chainId); this.address = getAddressFromPrivateKey( @@ -281,6 +286,8 @@ export class TokensContractHandler { symbol: symbolCV ? symbolCV.data : '', decimals: decimalsCV ? Number(decimalsCV.value) : 0, contract_id: `${this.contractAddress}.${this.contractName}`, + tx_id: this.txId, + sender_address: this.contractAddress, }; //store metadata in db @@ -296,6 +303,8 @@ export class TokensContractHandler { symbol: ftTokenContractInfo.symbol || '', decimals: Number(ftTokenContractInfo.decimals), contract_id: `${this.contractAddress}.${this.contractName}`, + tx_id: this.txId, + sender_address: this.contractAddress, }; await this.storeFtMetadata(fungibleTokenMetadata); logger.error('error handling FT contract', error); @@ -326,6 +335,8 @@ export class TokensContractHandler { image_uri: metadata.imageUrl ? this.getImageUrl(metadata.imageUrl) : '', image_canonical_uri: metadata.imageUrl || '', contract_id: `${this.contractAddress}.${this.contractName}`, + tx_id: this.txId, + sender_address: this.contractAddress, }; await this.storeNftMetadata(nonFungibleTokenMetadata); } diff --git a/src/migrations/1621511823381_nft-metadata.ts b/src/migrations/1621511823381_nft-metadata.ts index 7e0859b398..575501b59a 100644 --- a/src/migrations/1621511823381_nft-metadata.ts +++ b/src/migrations/1621511823381_nft-metadata.ts @@ -32,6 +32,14 @@ export async function up(pgm: MigrationBuilder): Promise { contract_id: { type: 'string', notNull: true, + }, + tx_id: { + type: 'string', + notNull: true, + }, + sender_address: { + type: 'string', + notNull: true, } }); diff --git a/src/migrations/1621511832113_ft-metadata.ts b/src/migrations/1621511832113_ft-metadata.ts index a2fbec1438..27a141d768 100644 --- a/src/migrations/1621511832113_ft-metadata.ts +++ b/src/migrations/1621511832113_ft-metadata.ts @@ -40,6 +40,14 @@ export async function up(pgm: MigrationBuilder): Promise { decimals: { type: 'integer', notNull: true, + }, + tx_id: { + type: 'string', + notNull: true, + }, + sender_address: { + type: 'string', + notNull: true, } }); diff --git a/src/tests-tokens/tokens-metadata-tests.ts b/src/tests-tokens/tokens-metadata-tests.ts index 32f2e1368a..284d04d629 100644 --- a/src/tests-tokens/tokens-metadata-tests.ts +++ b/src/tests-tokens/tokens-metadata-tests.ts @@ -138,6 +138,8 @@ describe('api tests', () => { expect(query1.body).toHaveProperty('description'); expect(query1.body).toHaveProperty('image_uri'); expect(query1.body).toHaveProperty('image_canonical_uri'); + expect(query1.body).toHaveProperty('tx_id'); + expect(query1.body).toHaveProperty('sender_address'); }); test('token nft-metadata data URL base64 w/o media type', async () => { @@ -158,6 +160,8 @@ describe('api tests', () => { expect(query1.body).toHaveProperty('description'); expect(query1.body).toHaveProperty('image_uri'); expect(query1.body).toHaveProperty('image_canonical_uri'); + expect(query1.body).toHaveProperty('tx_id'); + expect(query1.body).toHaveProperty('sender_address'); }); test('token nft-metadata data URL plain non-encoded', async () => { @@ -178,6 +182,8 @@ describe('api tests', () => { expect(query1.body).toHaveProperty('description'); expect(query1.body).toHaveProperty('image_uri'); expect(query1.body).toHaveProperty('image_canonical_uri'); + expect(query1.body).toHaveProperty('tx_id'); + expect(query1.body).toHaveProperty('sender_address'); }); test('token nft-metadata', async () => { @@ -219,6 +225,8 @@ describe('api tests', () => { expect(query1.body.description).toBe(nftMetadata.description); expect(query1.body.image_uri).toBe(nftMetadata.imageUrl); expect(query1.body).toHaveProperty('image_canonical_uri'); + expect(query1.body).toHaveProperty('tx_id'); + expect(query1.body).toHaveProperty('sender_address'); }); test('token ft-metadata tests', async () => { @@ -258,6 +266,8 @@ describe('api tests', () => { expect(query1.body.description).toBe(ftMetadata.description); expect(query1.body.image_uri).toBe(ftMetadata.image); expect(query1.body).toHaveProperty('image_canonical_uri'); + expect(query1.body).toHaveProperty('tx_id'); + expect(query1.body).toHaveProperty('sender_address'); }); test('token ft-metadata list', async () => { @@ -271,6 +281,8 @@ describe('api tests', () => { image_uri: 'ft-metadata image uri example', image_canonical_uri: 'ft-metadata image canonical uri example', contract_id: 'ABCDEFGHIJ.ft-metadata', + tx_id: '0x123456', + sender_address: 'ABCDEFGHIJ', }; await db.updateFtMetadata(ftMetadata); } @@ -301,6 +313,8 @@ describe('api tests', () => { image_uri: 'nft-metadata image uri example', image_canonical_uri: 'nft-metadata image canonical uri example', contract_id: 'ABCDEFGHIJ.nft-metadata' + i, + tx_id: '0x1234567', + sender_address: 'ABCDEFGHIJ', }; await db.updateNFtMetadata(nftMetadata); From 16bb0806f247a04e0b5be8409fe8b3ec23f58ca0 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Thu, 12 Aug 2021 11:46:37 -0600 Subject: [PATCH 31/44] chore(test): minor test fixes --- src/tests/datastore-tests.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/tests/datastore-tests.ts b/src/tests/datastore-tests.ts index 81da212ba9..13db357974 100644 --- a/src/tests/datastore-tests.ts +++ b/src/tests/datastore-tests.ts @@ -4097,6 +4097,8 @@ describe('postgres datastore', () => { image_uri: 'nft-metadata image uri example', image_canonical_uri: 'nft-metadata image canonical uri example', contract_id: 'ABCDEFGHIJ.nft-metadata', + tx_id: '0x1234', + sender_address: 'sender-addr-test', }; const rowCount = await db.updateNFtMetadata(nftMetadata); @@ -4117,6 +4119,8 @@ describe('postgres datastore', () => { image_uri: 'ft-metadata image uri example', image_canonical_uri: 'ft-metadata image canonical uri example', contract_id: 'ABCDEFGHIJ.ft-metadata', + tx_id: '0x1234', + sender_address: 'sender-addr-test', }; const rowCount = await db.updateFtMetadata(ftMetadata); From 54194c77da26d7d8e62044de35c97e253cf11309 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Thu, 12 Aug 2021 12:19:06 -0600 Subject: [PATCH 32/44] chore: less strict metadata image property parsing due to inconsistencies in schema adherence --- src/event-stream/tokens-contract-handler.ts | 46 ++++++++++++++++----- 1 file changed, 36 insertions(+), 10 deletions(-) diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 2d9c21e207..e1a21c3bba 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -156,13 +156,13 @@ const NFT_FUNCTIONS: ClarityAbiFunction[] = [ interface NftTokenMetadata { name: string; - imageUrl: string; + imageUri: string; description: string; } interface FtTokenMetadata { name: string; - image: string; + imageUri: string; description: string; } @@ -244,6 +244,31 @@ export class TokensContractHandler { } } + /** + * Token metadata schema is not well defined or adhered to for image URIs. + * This function looks for a handful of possible properties that could be used to + * specify the image, and returns a metadata object with a normalized image property. + */ + patchTokenMetadataImageUri(metadata: T): T { + // compare using lowercase + const allowedImageProperties = ['image', 'imageurl', 'imageuri', 'image_url', 'image_uri']; + const objectKeys = new Map(Object.keys(metadata).map(prop => [prop.toLowerCase(), prop])); + for (const possibleProp of allowedImageProperties) { + const existingProp = objectKeys.get(possibleProp); + if (existingProp) { + const imageUriVal = (metadata as Record)[existingProp]; + if (typeof imageUriVal !== 'string') { + continue; + } + return { + ...metadata, + imageUri: imageUriVal, + }; + } + } + return { ...metadata }; + } + /** * fetch Fungible contract metadata */ @@ -271,18 +296,19 @@ export class TokensContractHandler { const decimalsCV = this.checkAndParseUintCV(contractCallDecimals); ftTokenContractInfo.decimals = decimalsCV?.value; - let metadata: FtTokenMetadata = { name: '', description: '', image: '' }; + let metadata: FtTokenMetadata = { name: '', description: '', imageUri: '' }; //fetch metadata from the uri if possible if (uriCV) { metadata = (await this.getMetadataFromUri(uriCV.data)) || metadata; } - const { name, description, image } = metadata; + metadata = this.patchTokenMetadataImageUri(metadata); + const { name, description, imageUri } = metadata; const fungibleTokenMetadata: DbFungibleTokenMetadata = { token_uri: uriCV ? uriCV.data : '', name: nameCV ? nameCV.data : name, // prefer the on-chain name description: description, - image_uri: image ? this.getImageUrl(image) : '', - image_canonical_uri: image || '', + image_uri: imageUri ? this.getImageUrl(imageUri) : '', + image_canonical_uri: imageUri || '', symbol: symbolCV ? symbolCV.data : '', decimals: decimalsCV ? Number(decimalsCV.value) : 0, contract_id: `${this.contractAddress}.${this.contractName}`, @@ -323,17 +349,17 @@ export class TokensContractHandler { const contractCallUri = await this.makeReadOnlyContractCall('get-token-uri', [tokenId]); const uriCV = this.checkAndParseOptionalString(contractCallUri); - let metadata: NftTokenMetadata = { name: '', description: '', imageUrl: '' }; + let metadata: NftTokenMetadata = { name: '', description: '', imageUri: '' }; if (uriCV) { metadata = (await this.getMetadataFromUri(uriCV.data)) || metadata; } - + metadata = this.patchTokenMetadataImageUri(metadata); const nonFungibleTokenMetadata: DbNonFungibleTokenMetadata = { token_uri: uriCV ? uriCV.data : '', name: metadata.name, description: metadata.description, - image_uri: metadata.imageUrl ? this.getImageUrl(metadata.imageUrl) : '', - image_canonical_uri: metadata.imageUrl || '', + image_uri: metadata.imageUri ? this.getImageUrl(metadata.imageUri) : '', + image_canonical_uri: metadata.imageUri || '', contract_id: `${this.contractAddress}.${this.contractName}`, tx_id: this.txId, sender_address: this.contractAddress, From f6949ee10dcf03c3a6f77f7ed2aa1de4ae6a3fe5 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Thu, 12 Aug 2021 14:37:29 -0600 Subject: [PATCH 33/44] chore: increase fault tolerance when fetching readonly contract data --- src/event-stream/tokens-contract-handler.ts | 321 ++++++++++++-------- 1 file changed, 193 insertions(+), 128 deletions(-) diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index e1a21c3bba..1ac73b6459 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -16,15 +16,20 @@ import { StringAsciiCV, StringUtf8CV, TransactionVersion, + uintCV, UIntCV, } from '@stacks/transactions'; import { GetStacksNetwork } from '../bns-helpers'; -import { logError, logger, parseDataUrl } from '../helpers'; +import { logError, logger, parseDataUrl, stopwatch } from '../helpers'; import { StacksNetwork } from '@stacks/network'; import PQueue from 'p-queue'; import * as querystring from 'querystring'; import fetch from 'node-fetch'; +// The maximum number of token metadata parsing operations that can be ran concurrently before +// being added to a FIFO queue. +const TOKEN_METADATA_PARSING_CONCURRENCY_LIMIT = 5; + const PUBLIC_IPFS = 'https://ipfs.io'; const FT_FUNCTIONS: ClarityAbiFunction[] = [ @@ -166,13 +171,6 @@ interface FtTokenMetadata { description: string; } -interface FtTokenContractInfo { - name?: string; - tokenUri?: string; - symbol?: string; - decimals?: number; -} - export interface TokenHandlerArgs { contractAddress: string; contractName: string; @@ -185,7 +183,7 @@ export interface TokenHandlerArgs { export class TokensProcessorQueue { readonly queue: PQueue; constructor() { - this.queue = new PQueue({ concurrency: 1 }); + this.queue = new PQueue({ concurrency: TOKEN_METADATA_PARSING_CONCURRENCY_LIMIT }); } queueHandler(tokenContractHandler: TokensContractHandler) { // TODO: This could get backed up quite a bit, for example while syncing from scratch. @@ -199,7 +197,7 @@ export class TokensProcessorQueue { .catch(error => { // TODO: should this be a fatal error? logError( - `Error processing token contract: ${tokenContractHandler.contractAddress} ${tokenContractHandler.contractName}`, + `[token-metadata] error processing token contract: ${tokenContractHandler.contractAddress} ${tokenContractHandler.contractName} from tx ${tokenContractHandler.txId}`, error ); }); @@ -207,19 +205,21 @@ export class TokensProcessorQueue { } export class TokensContractHandler { - contractAddress: string; - contractName: string; - private contractAbi: ClarityAbi; - private db: DataStore; - private randomPrivKey = makeRandomPrivKey(); - private chainId: ChainID; - private stacksNetwork: StacksNetwork; - private address: string; - private txId: string; + readonly contractAddress: string; + readonly contractName: string; + readonly contractId: string; + readonly txId: string; + private readonly contractAbi: ClarityAbi; + private readonly db: DataStore; + private readonly randomPrivKey = makeRandomPrivKey(); + private readonly chainId: ChainID; + private readonly stacksNetwork: StacksNetwork; + private readonly address: string; constructor(args: TokenHandlerArgs) { this.contractAddress = args.contractAddress; this.contractName = args.contractName; + this.contractId = `${args.contractAddress}.${args.contractName}`; this.contractAbi = args.smartContractAbi; this.db = args.datastore; this.chainId = args.chainId; @@ -234,22 +234,42 @@ export class TokensContractHandler { async start() { if (this.contractAbi.fungible_tokens.length > 0) { if (this.isCompliant(FT_FUNCTIONS)) { - await this.handleFtContract(); + logger.info( + `[token-metadata] found sip-010-ft-standard compliant contract ${this.contractId} in tx ${this.txId}, begin retrieving metadata...` + ); + const sw = stopwatch(); + try { + await this.handleFtContract(); + } finally { + logger.info( + `[token-metadata] finished processing FT ${this.contractId} in ${sw.getElapsed()} ms` + ); + } } } if (this.contractAbi.non_fungible_tokens.length > 0) { if (this.isCompliant(NFT_FUNCTIONS)) { - await this.handleNftContract(); + logger.info( + `[token-metadata] found sip-009-nft-standard compliant contract ${this.contractId} in tx ${this.txId}, begin retrieving metadata...` + ); + const sw = stopwatch(); + try { + await this.handleNftContract(); + } finally { + logger.info( + `[token-metadata] finished processing NFT ${this.contractId} in ${sw.getElapsed()} ms` + ); + } } } } /** - * Token metadata schema is not well defined or adhered to for image URIs. + * Token metadata schema for 'image uri' is not well defined or adhered to. * This function looks for a handful of possible properties that could be used to * specify the image, and returns a metadata object with a normalized image property. */ - patchTokenMetadataImageUri(metadata: T): T { + private patchTokenMetadataImageUri(metadata: T): T { // compare using lowercase const allowedImageProperties = ['image', 'imageurl', 'imageuri', 'image_url', 'image_uri']; const objectKeys = new Map(Object.keys(metadata).map(prop => [prop.toLowerCase(), prop])); @@ -273,103 +293,113 @@ export class TokensContractHandler { * fetch Fungible contract metadata */ private async handleFtContract() { - const ftTokenContractInfo: FtTokenContractInfo = {}; + let metadata: FtTokenMetadata | undefined; + let contractCallName: string | undefined; + let contractCallUri: string | undefined; + let contractCallSymbol: string | undefined; + let contractCallDecimals: number | undefined; try { - //get name value - const contractCallName = await this.makeReadOnlyContractCall('get-name', []); - const nameCV = this.checkAndParseString(contractCallName); - ftTokenContractInfo.name = nameCV?.data; - - //get token uri - const contractCallUri = await this.makeReadOnlyContractCall('get-token-uri', []); - const uriCV = this.checkAndParseOptionalString(contractCallUri); - ftTokenContractInfo.tokenUri = uriCV?.data; - - //get token symbol - const contractCallSymbol = await this.makeReadOnlyContractCall('get-symbol', []); - const symbolCV = this.checkAndParseString(contractCallSymbol); - ftTokenContractInfo.symbol = symbolCV?.data; - - //get decimals - const contractCallDecimals = await this.makeReadOnlyContractCall('get-decimals', []); - const decimalsCV = this.checkAndParseUintCV(contractCallDecimals); - ftTokenContractInfo.decimals = decimalsCV?.value; - - let metadata: FtTokenMetadata = { name: '', description: '', imageUri: '' }; - //fetch metadata from the uri if possible - if (uriCV) { - metadata = (await this.getMetadataFromUri(uriCV.data)) || metadata; + // get name value + contractCallName = await this.readStringFromContract('get-name', []); + + // get token uri + contractCallUri = await this.readStringFromContract('get-token-uri', []); + + // get token symbol + contractCallSymbol = await this.readStringFromContract('get-symbol', []); + + // get decimals + const decimalsResult = await this.readUIntFromContract('get-decimals', []); + if (decimalsResult) { + contractCallDecimals = Number(decimalsResult.toString()); + } + + if (contractCallUri) { + try { + metadata = await this.getMetadataFromUri(contractCallUri); + metadata = this.patchTokenMetadataImageUri(metadata); + } catch (error) { + logger.warn( + `[token-metadata] error fetching metadata while processing FT contract ${this.contractId}`, + error + ); + } } - metadata = this.patchTokenMetadataImageUri(metadata); - const { name, description, imageUri } = metadata; - const fungibleTokenMetadata: DbFungibleTokenMetadata = { - token_uri: uriCV ? uriCV.data : '', - name: nameCV ? nameCV.data : name, // prefer the on-chain name - description: description, - image_uri: imageUri ? this.getImageUrl(imageUri) : '', - image_canonical_uri: imageUri || '', - symbol: symbolCV ? symbolCV.data : '', - decimals: decimalsCV ? Number(decimalsCV.value) : 0, - contract_id: `${this.contractAddress}.${this.contractName}`, - tx_id: this.txId, - sender_address: this.contractAddress, - }; - - //store metadata in db - await this.storeFtMetadata(fungibleTokenMetadata); } catch (error) { - //store with missing information - const fungibleTokenMetadata: DbFungibleTokenMetadata = { - token_uri: ftTokenContractInfo.tokenUri || '', - name: ftTokenContractInfo.tokenUri || '', - description: error, - image_uri: '', - image_canonical_uri: '', - symbol: ftTokenContractInfo.symbol || '', - decimals: Number(ftTokenContractInfo.decimals), - contract_id: `${this.contractAddress}.${this.contractName}`, - tx_id: this.txId, - sender_address: this.contractAddress, - }; - await this.storeFtMetadata(fungibleTokenMetadata); - logger.error('error handling FT contract', error); + // Note: something is wrong with the above error handling if this is ever reached. + logError( + `[token-metadata] unexpected error processing FT contract ${this.contractId}`, + error + ); } + + const fungibleTokenMetadata: DbFungibleTokenMetadata = { + token_uri: contractCallUri ?? '', + name: contractCallName ?? metadata?.name ?? '', // prefer the on-chain name + description: metadata?.description ?? '', + image_uri: metadata?.imageUri ? this.getImageUrl(metadata.imageUri) : '', + image_canonical_uri: metadata?.imageUri || '', + symbol: contractCallSymbol ?? '', + decimals: contractCallDecimals ?? 0, + contract_id: this.contractId, + tx_id: this.txId, + sender_address: this.contractAddress, + }; + + //store metadata in db + await this.storeFtMetadata(fungibleTokenMetadata); } /** * fetch Non Fungible contract metadata */ private async handleNftContract() { - try { - const contractCallTokenId = await this.makeReadOnlyContractCall('get-last-token-id', []); - const tokenId = this.checkAndParseUintCV(contractCallTokenId); + let metadata: NftTokenMetadata | undefined; + let contractCallUri: string | undefined; + try { + // TODO: This is incorrectly attempting to fetch the metadata for a specific + // NFT and applying it to the entire NFT type/contract. A new SIP needs created + // to define how generic metadata for an NFT type/contract should be retrieved. + // In the meantime, this will often fail or result in weird data, but at least + // the NFT type enumeration endpoints will have data like the contract ID and txid. + const tokenId = await this.readUIntFromContract('get-last-token-id', []); if (tokenId) { - const contractCallUri = await this.makeReadOnlyContractCall('get-token-uri', [tokenId]); - const uriCV = this.checkAndParseOptionalString(contractCallUri); - - let metadata: NftTokenMetadata = { name: '', description: '', imageUri: '' }; - if (uriCV) { - metadata = (await this.getMetadataFromUri(uriCV.data)) || metadata; + contractCallUri = await this.readStringFromContract('get-token-uri', [ + uintCV(tokenId.toString()), + ]); + if (contractCallUri) { + try { + metadata = await this.getMetadataFromUri(contractCallUri); + metadata = this.patchTokenMetadataImageUri(metadata); + } catch (error) { + logger.warn( + `[token-metadata] error fetching metadata while processing NFT contract ${this.contractId}`, + error + ); + } } - metadata = this.patchTokenMetadataImageUri(metadata); - const nonFungibleTokenMetadata: DbNonFungibleTokenMetadata = { - token_uri: uriCV ? uriCV.data : '', - name: metadata.name, - description: metadata.description, - image_uri: metadata.imageUri ? this.getImageUrl(metadata.imageUri) : '', - image_canonical_uri: metadata.imageUri || '', - contract_id: `${this.contractAddress}.${this.contractName}`, - tx_id: this.txId, - sender_address: this.contractAddress, - }; - await this.storeNftMetadata(nonFungibleTokenMetadata); } } catch (error) { - logger.error('error: error handling NFT contract', error); - throw error; + // Note: something is wrong with the above error handling if this is ever reached. + logError( + `[token-metadata] unexpected error processing NFT contract ${this.contractId}`, + error + ); } + + const nonFungibleTokenMetadata: DbNonFungibleTokenMetadata = { + token_uri: contractCallUri ?? '', + name: metadata?.name ?? '', + description: metadata?.description ?? '', + image_uri: metadata?.imageUri ? this.getImageUrl(metadata.imageUri) : '', + image_canonical_uri: metadata?.imageUri ?? '', + contract_id: `${this.contractId}`, + tx_id: this.txId, + sender_address: this.contractAddress, + }; + await this.storeNftMetadata(nonFungibleTokenMetadata); } /** @@ -409,7 +439,7 @@ export class TokensContractHandler { /** * fetch metadata from uri */ - private async getMetadataFromUri(token_uri: string): Promise { + private async getMetadataFromUri(token_uri: string): Promise { // Support JSON embedded in a Data URL if (new URL(token_uri).protocol === 'data:') { const dataUrl = parseDataUrl(token_uri); @@ -458,6 +488,38 @@ export class TokensContractHandler { return await callReadOnlyFunction(txOptions); } + private async readStringFromContract( + functionName: string, + functionArgs: ClarityValue[] + ): Promise { + try { + const clarityValue = await this.makeReadOnlyContractCall(functionName, functionArgs); + const stringVal = this.checkAndParseString(clarityValue); + return stringVal; + } catch (error) { + logger.warn( + `[token-metadata] error extracting string with contract function call '${functionName}' while processing ${this.contractId}`, + error + ); + } + } + + private async readUIntFromContract( + functionName: string, + functionArgs: ClarityValue[] + ): Promise { + try { + const clarityValue = await this.makeReadOnlyContractCall(functionName, functionArgs); + const uintVal = this.checkAndParseUintCV(clarityValue); + return BigInt(uintVal.value.toString()); + } catch (error) { + logger.warn( + `[token-metadata] error extracting string with contract function call '${functionName}' while processing ${this.contractId}`, + error + ); + } + } + /** * Store ft metadata to db */ @@ -508,34 +570,38 @@ export class TokensContractHandler { return found !== undefined; } - private checkAndParseUintCV(responseCV: ClarityValue): UIntCV | undefined { - if (responseCV.type === ClarityType.ResponseOk && responseCV.value.type === ClarityType.UInt) { - return responseCV.value; + private unwrapClarityType(clarityValue: ClarityValue): ClarityValue { + let unwrappedClarityValue: ClarityValue = clarityValue; + while ( + unwrappedClarityValue.type === ClarityType.ResponseOk || + unwrappedClarityValue.type === ClarityType.OptionalSome + ) { + unwrappedClarityValue = unwrappedClarityValue.value; } - return; + return unwrappedClarityValue; } - private checkAndParseOptionalString( - responseCV: ClarityValue - ): StringUtf8CV | StringAsciiCV | undefined { - if ( - responseCV.type === ClarityType.ResponseOk && - responseCV.value.type === ClarityType.OptionalSome && - (responseCV.value.value.type === ClarityType.StringASCII || - responseCV.value.value.type === ClarityType.StringUTF8) - ) { - return responseCV.value.value; + private checkAndParseUintCV(responseCV: ClarityValue): UIntCV { + const unwrappedClarityValue = this.unwrapClarityType(responseCV); + if (unwrappedClarityValue.type === ClarityType.UInt) { + return unwrappedClarityValue; } + throw new Error( + `Unexpected Clarity type '${unwrappedClarityValue.type}' while unwrapping uint` + ); } - private checkAndParseString(responseCV: ClarityValue): StringUtf8CV | StringAsciiCV | undefined { + private checkAndParseString(responseCV: ClarityValue): string { + const unwrappedClarityValue = this.unwrapClarityType(responseCV); if ( - responseCV.type === ClarityType.ResponseOk && - (responseCV.value.type === ClarityType.StringASCII || - responseCV.value.type === ClarityType.StringUTF8) + unwrappedClarityValue.type === ClarityType.StringASCII || + unwrappedClarityValue.type === ClarityType.StringUTF8 ) { - return responseCV.value; + return unwrappedClarityValue.data; } + throw new Error( + `Unexpected Clarity type '${unwrappedClarityValue.type}' while unwrapping string` + ); } } @@ -548,7 +614,7 @@ export function hasTokens(contract_abi: ClarityAbi): boolean { return contract_abi.fungible_tokens.length > 0 || contract_abi.non_fungible_tokens.length > 0; } -export async function performFetch(url: string): Promise { +export async function performFetch(url: string): Promise { const MAX_PAYLOAD_SIZE = 1_000_000; // 1 megabyte const result = await fetch(url, { size: MAX_PAYLOAD_SIZE }); if (!result.ok) { @@ -556,15 +622,14 @@ export async function performFetch(url: string): Promise try { msg = await result.text(); } catch (error) { - logError(`Error getting text`, error); + // ignore errors from fetching error text } throw new Error(`Response ${result.status}: ${result.statusText} fetching ${url} - ${msg}`); } - + const resultString = await result.text(); try { - const resultString = await result.text(); return JSON.parse(resultString) as Type; } catch (error) { - logError(`Error reading response from ${url}`, error); + throw new Error(`Error parsing response from ${url} as JSON: ${error}`); } } From c7c149d6174971ab78c5751fb5888db4b9d976a6 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Thu, 12 Aug 2021 15:56:00 -0600 Subject: [PATCH 34/44] chore: add notification events to the token process instance --- package-lock.json | 22 +++ package.json | 1 + src/event-stream/event-server.ts | 12 +- src/event-stream/tokens-contract-handler.ts | 173 ++++++++++++-------- src/tests-tokens/tokens-metadata-tests.ts | 20 +-- 5 files changed, 149 insertions(+), 79 deletions(-) diff --git a/package-lock.json b/package-lock.json index 5328343434..997ed8898c 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6395,6 +6395,15 @@ "safe-buffer": "^5.1.1" } }, + "evt": { + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/evt/-/evt-1.10.1.tgz", + "integrity": "sha512-0vkCFzH3Q2Qb9gs3yav4p3uu+l4mcIfKPTRFTO1WHYZd0+O/ZR7BgzpuF+FbqOJ6r9q20/sDL/5TQM+de0/hyg==", + "requires": { + "minimal-polyfills": "^2.1.5", + "run-exclusive": "^2.2.14" + } + }, "exec-sh": { "version": "0.3.6", "resolved": "https://registry.npmjs.org/exec-sh/-/exec-sh-0.3.6.tgz", @@ -12749,6 +12758,11 @@ "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", "dev": true }, + "minimal-polyfills": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/minimal-polyfills/-/minimal-polyfills-2.2.1.tgz", + "integrity": "sha512-WLmHQrsZob4rVYf8yHapZPNJZ3sspGa/sN8abuSD59b0FifDEE7HMfLUi24z7mPZqTpBXy4Svp+iGvAmclCmXg==" + }, "minimalistic-assert": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", @@ -15196,6 +15210,14 @@ "integrity": "sha512-nfMOlASu9OnRJo1mbEk2cz0D56a1MBNrJ7orjRZQG10XDyuvwksKbuXNp6qa+kbn839HwjwhBzhFmdsaEAfauA==", "dev": true }, + "run-exclusive": { + "version": "2.2.14", + "resolved": "https://registry.npmjs.org/run-exclusive/-/run-exclusive-2.2.14.tgz", + "integrity": "sha512-NHaQfB3zPJFx7p4M06AcmoK8xz/h8YDMCdy3jxfyoC9VqIbl1U+DiVjUuAYZBRMwvj5qkQnOUGfsmyUC4k46dg==", + "requires": { + "minimal-polyfills": "^2.1.5" + } + }, "run-parallel": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", diff --git a/package.json b/package.json index 70ea83d05e..e5a3f58593 100644 --- a/package.json +++ b/package.json @@ -122,6 +122,7 @@ "dotenv": "^8.2.0", "dotenv-flow": "^3.2.0", "escape-goat": "^3.0.0", + "evt": "^1.10.1", "express": "^4.17.1", "express-list-endpoints": "^5.0.0", "express-winston": "^4.1.0", diff --git a/src/event-stream/event-server.ts b/src/event-stream/event-server.ts index 93d7a8facb..961ba0424a 100644 --- a/src/event-stream/event-server.ts +++ b/src/event-stream/event-server.ts @@ -78,7 +78,11 @@ import { } from '../bns-constants'; import * as zoneFileParser from 'zone-file'; -import { hasTokens, TokensContractHandler, TokensProcessorQueue } from './tokens-contract-handler'; +import { + isCompliantToken, + TokensContractHandler, + TokensProcessorQueue, +} from './tokens-contract-handler'; async function handleRawEventRequest( eventPath: string, @@ -319,7 +323,7 @@ function handleTokenContract( if ( tx.core_tx.status === 'success' && tx.core_tx.contract_abi && - hasTokens(tx.core_tx.contract_abi) + isCompliantToken(tx.core_tx.contract_abi) ) { const handler = new TokensContractHandler({ contractAddress: tx.sender_address, @@ -676,6 +680,7 @@ interface EventMessageHandler { handleBurnBlock(msg: CoreNodeBurnBlockMessage, db: DataStore): Promise | void; handleDroppedMempoolTxs(msg: CoreNodeDropMempoolTxMessage, db: DataStore): Promise | void; handleNewAttachment(msg: CoreNodeAttachmentMessage[], db: DataStore): Promise | void; + readonly tokensProcessorQueue: TokensProcessorQueue; } function createMessageProcessorQueue(): EventMessageHandler { @@ -683,6 +688,7 @@ function createMessageProcessorQueue(): EventMessageHandler { const processorQueue = new PQueue({ concurrency: 1 }); const tokensProcessorQueue = new TokensProcessorQueue(); const handler: EventMessageHandler = { + tokensProcessorQueue, handleRawEventRequest: (eventPath: string, payload: string, db: DataStore) => { return processorQueue .add(() => handleRawEventRequest(eventPath, payload, db)) @@ -746,6 +752,7 @@ function createMessageProcessorQueue(): EventMessageHandler { export type EventStreamServer = net.Server & { serverAddress: net.AddressInfo; + tokensProcessorQueue: TokensProcessorQueue; closeAsync: () => Promise; }; @@ -911,6 +918,7 @@ export async function startEventServer(opts: { }; const eventStreamServer: EventStreamServer = Object.assign(server, { serverAddress: addr as net.AddressInfo, + tokensProcessorQueue: messageHandler.tokensProcessorQueue, closeAsync: closeFn, }); return eventStreamServer; diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 1ac73b6459..2530be6f0a 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -25,6 +25,7 @@ import { StacksNetwork } from '@stacks/network'; import PQueue from 'p-queue'; import * as querystring from 'querystring'; import fetch from 'node-fetch'; +import { Evt } from 'evt'; // The maximum number of token metadata parsing operations that can be ran concurrently before // being added to a FIFO queue. @@ -180,8 +181,73 @@ export interface TokenHandlerArgs { tx_id: string; } +export function isCompliantToken(abi: ClarityAbi): boolean { + return isCompliantFt(abi) || isCompliantNft(abi); +} + +function isCompliantNft(abi: ClarityAbi): boolean { + if (abi.non_fungible_tokens.length > 0) { + if (abiContains(abi, NFT_FUNCTIONS)) { + return true; + } + } + return false; +} + +function isCompliantFt(abi: ClarityAbi): boolean { + if (abi.fungible_tokens.length > 0) { + if (abiContains(abi, FT_FUNCTIONS)) { + return true; + } + } + return false; +} + +/** + * This method check if the contract is compliance with sip-09 and sip-10 + * Ref: https://github.com/stacksgov/sips/tree/main/sips + */ +function abiContains(abi: ClarityAbi, standardFunction: ClarityAbiFunction[]): boolean { + return standardFunction.every(abiFun => findFunction(abiFun, abi.functions)); +} + +/** + * check if the fun exist in the function list + * @param fun - function to be found + * @param functionList - list of functions + * @returns - true if function is in the list false otherwise + */ +function findFunction(fun: ClarityAbiFunction, functionList: ClarityAbiFunction[]): boolean { + const found = functionList.find(standardFunction => { + if (standardFunction.name !== fun.name || standardFunction.args.length !== fun.args.length) + return false; + for (let i = 0; i < fun.args.length; i++) { + if (standardFunction.args[i].type.toString() !== fun.args[i].type.toString()) { + return false; + } + } + return true; + }); + return found !== undefined; +} + export class TokensProcessorQueue { readonly queue: PQueue; + + readonly processStartedEvent: Evt<{ + contractAddress: string; + contractName: string; + contractId: string; + txId: string; + }> = new Evt(); + + readonly processEndEvent: Evt<{ + contractAddress: string; + contractName: string; + contractId: string; + txId: string; + }> = new Evt(); + constructor() { this.queue = new PQueue({ concurrency: TOKEN_METADATA_PARSING_CONCURRENCY_LIMIT }); } @@ -192,6 +258,12 @@ export class TokensProcessorQueue { void this.queue .add(async () => { + this.processStartedEvent.post({ + contractAddress: tokenContractHandler.contractAddress, + contractName: tokenContractHandler.contractName, + contractId: tokenContractHandler.contractId, + txId: tokenContractHandler.txId, + }); await tokenContractHandler.start(); }) .catch(error => { @@ -200,6 +272,14 @@ export class TokensProcessorQueue { `[token-metadata] error processing token contract: ${tokenContractHandler.contractAddress} ${tokenContractHandler.contractName} from tx ${tokenContractHandler.txId}`, error ); + }) + .finally(() => { + this.processEndEvent.post({ + contractAddress: tokenContractHandler.contractAddress, + contractName: tokenContractHandler.contractName, + contractId: tokenContractHandler.contractId, + txId: tokenContractHandler.txId, + }); }); } } @@ -215,6 +295,7 @@ export class TokensContractHandler { private readonly chainId: ChainID; private readonly stacksNetwork: StacksNetwork; private readonly address: string; + private readonly tokenKind: 'ft' | 'nft'; constructor(args: TokenHandlerArgs) { this.contractAddress = args.contractAddress; @@ -230,37 +311,36 @@ export class TokensContractHandler { this.randomPrivKey.data, this.chainId === ChainID.Mainnet ? TransactionVersion.Mainnet : TransactionVersion.Testnet ); + if (isCompliantFt(args.smartContractAbi)) { + this.tokenKind = 'ft'; + } else if (isCompliantNft(args.smartContractAbi)) { + this.tokenKind = 'nft'; + } else { + throw new Error( + `TokenContractHandler passed an ABI that isn't compliant to FT or NFT standards` + ); + } } + async start() { - if (this.contractAbi.fungible_tokens.length > 0) { - if (this.isCompliant(FT_FUNCTIONS)) { - logger.info( - `[token-metadata] found sip-010-ft-standard compliant contract ${this.contractId} in tx ${this.txId}, begin retrieving metadata...` - ); - const sw = stopwatch(); - try { - await this.handleFtContract(); - } finally { - logger.info( - `[token-metadata] finished processing FT ${this.contractId} in ${sw.getElapsed()} ms` - ); - } - } - } - if (this.contractAbi.non_fungible_tokens.length > 0) { - if (this.isCompliant(NFT_FUNCTIONS)) { - logger.info( - `[token-metadata] found sip-009-nft-standard compliant contract ${this.contractId} in tx ${this.txId}, begin retrieving metadata...` - ); - const sw = stopwatch(); - try { - await this.handleNftContract(); - } finally { - logger.info( - `[token-metadata] finished processing NFT ${this.contractId} in ${sw.getElapsed()} ms` - ); - } + logger.info( + `[token-metadata] found ${ + this.tokenKind === 'ft' ? 'sip-010-ft-standard' : 'sip-010-ft-standard' + } compliant contract ${this.contractId} in tx ${this.txId}, begin retrieving metadata...` + ); + const sw = stopwatch(); + try { + if (this.tokenKind === 'ft') { + await this.handleFtContract(); + } else if (this.tokenKind === 'nft') { + await this.handleNftContract(); + } else { + throw new Error(`Unexpected token kind '${this.tokenKind}'`); } + } finally { + logger.info( + `[token-metadata] finished processing ${this.contractId} in ${sw.getElapsed()} ms` + ); } } @@ -542,34 +622,6 @@ export class TokensContractHandler { } } - /** - * This method check if the contract is compliance with sip-09 and sip-10 - * Ref: https://github.com/stacksgov/sips/tree/main/sips - */ - private isCompliant(standardFunction: ClarityAbiFunction[]): boolean { - return standardFunction.every(abiFun => this.findFunction(abiFun, this.contractAbi.functions)); - } - - /** - * check if the fun exist in the function list - * @param fun - function to be found - * @param functionList - list of functions - * @returns - true if function is in the list false otherwise - */ - private findFunction(fun: ClarityAbiFunction, functionList: ClarityAbiFunction[]): boolean { - const found = functionList.find(standardFunction => { - if (standardFunction.name !== fun.name || standardFunction.args.length !== fun.args.length) - return false; - for (let i = 0; i < fun.args.length; i++) { - if (standardFunction.args[i].type.toString() !== fun.args[i].type.toString()) { - return false; - } - } - return true; - }); - return found !== undefined; - } - private unwrapClarityType(clarityValue: ClarityValue): ClarityValue { let unwrappedClarityValue: ClarityValue = clarityValue; while ( @@ -605,15 +657,6 @@ export class TokensContractHandler { } } -/** - * This method checks if a the contract abi has fungible or non fungible tokens - * @param contract_abi - clarity abi of the contract - * @returns true if has tokens false if does not - */ -export function hasTokens(contract_abi: ClarityAbi): boolean { - return contract_abi.fungible_tokens.length > 0 || contract_abi.non_fungible_tokens.length > 0; -} - export async function performFetch(url: string): Promise { const MAX_PAYLOAD_SIZE = 1_000_000; // 1 megabyte const result = await fetch(url, { size: MAX_PAYLOAD_SIZE }); diff --git a/src/tests-tokens/tokens-metadata-tests.ts b/src/tests-tokens/tokens-metadata-tests.ts index 284d04d629..1331afbda3 100644 --- a/src/tests-tokens/tokens-metadata-tests.ts +++ b/src/tests-tokens/tokens-metadata-tests.ts @@ -17,8 +17,7 @@ import { startApiServer, ApiServer } from '../api/init'; import { PgDataStore, cycleMigrations, runMigrations } from '../datastore/postgres-store'; import { PoolClient } from 'pg'; import * as fs from 'fs'; -import { Server } from 'node:net'; -import { startEventServer } from '../event-stream/event-server'; +import { EventStreamServer, startEventServer } from '../event-stream/event-server'; import { getStacksTestnetNetwork } from '../rosetta-helpers'; import { StacksCoreRpcClient } from '../core-rpc/client'; import { logger } from '../helpers'; @@ -34,7 +33,7 @@ describe('api tests', () => { let db: PgDataStore; let client: PoolClient; let api: ApiServer; - let eventServer: Server; + let eventServer: EventStreamServer; function standByForTx(expectedTxId: string): Promise { const broadcastTx = new Promise(resolve => { @@ -55,15 +54,12 @@ describe('api tests', () => { return broadcastTx; } - function standByForTokens(id: string): Promise { - const contractId = new Promise(resolve => { - const listener: (info: string) => void = info => { - if (info === id) { - api.datastore.removeListener('tokensUpdate', listener); - resolve(info); - } - }; - api.datastore.addListener('tokensUpdate', listener); + function standByForTokens(id: string): Promise { + const contractId = new Promise(resolve => { + eventServer.tokensProcessorQueue.processEndEvent.attachOnce( + token => token.contractId === id, + () => resolve() + ); }); return contractId; From 35cf6167d6a90aa2369514005ab115dfc4ce1ec9 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Thu, 12 Aug 2021 17:01:26 -0600 Subject: [PATCH 35/44] chore: add metadata fetch timeout --- src/datastore/postgres-store.ts | 75 +++++++++++---------- src/event-stream/tokens-contract-handler.ts | 38 +++++++++-- src/tests-tokens/tokens-metadata-tests.ts | 38 ++++++++--- src/tests/setup.ts | 2 + 4 files changed, 101 insertions(+), 52 deletions(-) diff --git a/src/datastore/postgres-store.ts b/src/datastore/postgres-store.ts index 728663c26d..78ebf7e169 100644 --- a/src/datastore/postgres-store.ts +++ b/src/datastore/postgres-store.ts @@ -5761,30 +5761,32 @@ export class PgDataStore tx_id, sender_address, } = ftMetadata; - return await this.queryTx(async client => { - const result = await client.query( - ` + try { + return await this.queryTx(async client => { + const result = await client.query( + ` INSERT INTO ft_metadata( token_uri, name, description, image_uri, image_canonical_uri, contract_id, symbol, decimals, tx_id, sender_address ) values($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) `, - [ - token_uri, - name, - description, - image_uri, - image_canonical_uri, - contract_id, - symbol, - decimals, - tx_id, - sender_address, - ] - ); - + [ + token_uri, + name, + description, + image_uri, + image_canonical_uri, + contract_id, + symbol, + decimals, + tx_id, + sender_address, + ] + ); + return result.rowCount; + }); + } finally { this.emit('tokensUpdate', contract_id); - return result.rowCount; - }); + } } async updateNFtMetadata(nftMetadata: DbNonFungibleTokenMetadata): Promise { @@ -5798,27 +5800,30 @@ export class PgDataStore tx_id, sender_address, } = nftMetadata; - return await this.queryTx(async client => { - const result = await client.query( - ` + try { + return await this.queryTx(async client => { + const result = await client.query( + ` INSERT INTO nft_metadata( token_uri, name, description, image_uri, image_canonical_uri, contract_id, tx_id, sender_address ) values($1, $2, $3, $4, $5, $6, $7, $8) `, - [ - token_uri, - name, - description, - image_uri, - image_canonical_uri, - contract_id, - tx_id, - sender_address, - ] - ); + [ + token_uri, + name, + description, + image_uri, + image_canonical_uri, + contract_id, + tx_id, + sender_address, + ] + ); + return result.rowCount; + }); + } finally { this.emit('tokensUpdate', contract_id); - return result.rowCount; - }); + } } getFtMetadataList({ diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 2530be6f0a..0d8e17a008 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -27,10 +27,24 @@ import * as querystring from 'querystring'; import fetch from 'node-fetch'; import { Evt } from 'evt'; -// The maximum number of token metadata parsing operations that can be ran concurrently before -// being added to a FIFO queue. +/** + * The maximum number of token metadata parsing operations that can be ran concurrently before + * being added to a FIFO queue. + */ const TOKEN_METADATA_PARSING_CONCURRENCY_LIMIT = 5; +/** + * Amount of milliseconds to wait when fetching token metadata. + * If the fetch takes longer then it throws and the metadata is not processed. + */ +const METADATA_FETCH_TIMEOUT_MS: number = 10_000; // 10 seconds + +/** + * The maximum number of bytes of metadata to fetch. + * If the fetch encounters more bytes than this limit it throws and the metadata is not processed. + */ +const METADATA_MAX_PAYLOAD_BYTE_SIZE = 1_000_000; // 1 megabyte + const PUBLIC_IPFS = 'https://ipfs.io'; const FT_FUNCTIONS: ClarityAbiFunction[] = [ @@ -251,6 +265,7 @@ export class TokensProcessorQueue { constructor() { this.queue = new PQueue({ concurrency: TOKEN_METADATA_PARSING_CONCURRENCY_LIMIT }); } + queueHandler(tokenContractHandler: TokensContractHandler) { // TODO: This could get backed up quite a bit, for example while syncing from scratch. // If the process is restarted, this queue is not currently persisted and all the queued @@ -546,7 +561,10 @@ export class TokensContractHandler { } } const httpUrl = this.getFetchableUrl(token_uri); - return await performFetch(httpUrl.toString()); + return await performFetch(httpUrl.toString(), { + timeoutMs: METADATA_FETCH_TIMEOUT_MS, + maxResponseBytes: METADATA_MAX_PAYLOAD_BYTE_SIZE, + }); } /** @@ -657,9 +675,17 @@ export class TokensContractHandler { } } -export async function performFetch(url: string): Promise { - const MAX_PAYLOAD_SIZE = 1_000_000; // 1 megabyte - const result = await fetch(url, { size: MAX_PAYLOAD_SIZE }); +export async function performFetch( + url: string, + opts?: { + timeoutMs?: number; + maxResponseBytes?: number; + } +): Promise { + const result = await fetch(url, { + size: opts?.maxResponseBytes ?? METADATA_MAX_PAYLOAD_BYTE_SIZE, + timeout: opts?.timeoutMs ?? METADATA_FETCH_TIMEOUT_MS, + }); if (!result.ok) { let msg = ''; try { diff --git a/src/tests-tokens/tokens-metadata-tests.ts b/src/tests-tokens/tokens-metadata-tests.ts index 1331afbda3..afca63409c 100644 --- a/src/tests-tokens/tokens-metadata-tests.ts +++ b/src/tests-tokens/tokens-metadata-tests.ts @@ -20,7 +20,7 @@ import * as fs from 'fs'; import { EventStreamServer, startEventServer } from '../event-stream/event-server'; import { getStacksTestnetNetwork } from '../rosetta-helpers'; import { StacksCoreRpcClient } from '../core-rpc/client'; -import { logger } from '../helpers'; +import { logger, timeout } from '../helpers'; import * as nock from 'nock'; import { performFetch } from './../event-stream/tokens-contract-handler'; @@ -333,18 +333,34 @@ describe('api tests', () => { expect(query1.body.results.length).toStrictEqual(20); }); - test('large payload test', () => { + test('large metadata payload test', async () => { //mock the response - let random_data = 'abcdefghij'; //10 bytes - //this will make it 1.2MB - for (let i = 0; i < 17; i++) { - random_data += random_data; - } - nock('https://example.com').get('/large_payload').reply(200, random_data); + const maxResponseBytes = 10_000; + const randomData = Buffer.alloc(maxResponseBytes + 100, 'x', 'utf8'); + nock('https://example.com').get('/large_payload').reply(200, randomData.toString()); + + await expect(async () => { + await performFetch('https://example.com/large_payload', { + maxResponseBytes: maxResponseBytes, + }); + }).rejects.toThrow(/over limit/); + }); - void expect(async () => { - await performFetch('https://example.com/large_payload'); - }).rejects.toThrow(); + test('timeout metadata payload test', async () => { + //mock the response + const responseTimeout = 100; + nock('https://example.com') + .get('/timeout_payload') + .reply(200, async (_uri, _requestBody, cb) => { + await timeout(responseTimeout + 200); + cb(null, '{"hello":"world"}'); + }); + + await expect(async () => { + await performFetch('https://example.com/timeout_payload', { + timeoutMs: responseTimeout, + }); + }).rejects.toThrow(/network timeout/); }); afterAll(async () => { diff --git a/src/tests/setup.ts b/src/tests/setup.ts index d3987c542f..6f8c323db1 100644 --- a/src/tests/setup.ts +++ b/src/tests/setup.ts @@ -4,6 +4,7 @@ import { MemoryDataStore } from '../datastore/memory-store'; import { startEventServer } from '../event-stream/event-server'; import { StacksCoreRpcClient } from '../core-rpc/client'; import { ChainID } from '@stacks/transactions'; +import { TokensProcessorQueue } from '../event-stream/tokens-contract-handler'; export default async (): Promise => { console.log('Jest - setup..'); @@ -15,6 +16,7 @@ export default async (): Promise => { chainId: ChainID.Testnet, datastore: new MemoryDataStore(), messageHandler: { + tokensProcessorQueue: new TokensProcessorQueue(), handleBlockMessage: () => {}, handleBurnBlock: () => {}, handleMempoolTxs: () => {}, From 26ec4af97d1b0186ad14b03fe4128b4417c1fd6e Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Fri, 13 Aug 2021 09:46:01 -0600 Subject: [PATCH 36/44] feat: implement external image processor script for use with ingesting and serving token metadata images --- .env | 10 +++ .eslintignore | 1 + config/token-metadata-image-cache-imgix.js | 7 ++ src/event-stream/tokens-contract-handler.ts | 79 +++++++++++++++++++-- 4 files changed, 91 insertions(+), 6 deletions(-) create mode 100755 config/token-metadata-image-cache-imgix.js diff --git a/.env b/.env index 01bb69f4a4..568c0fa1bc 100644 --- a/.env +++ b/.env @@ -51,3 +51,13 @@ MAINNET_SEND_MANY_CONTRACT_ID=SP3FBR2AGK5H9QBDH3EEN6DF8EK8JY7RX8QJ5SVTE.send-man # Override the default file path for the proxy cache control file # STACKS_API_PROXY_CACHE_CONTROL_FILE=/path/to/.proxy-cache-control.json + +# Configure a script to handle image URLs during token metadata processing. +# This example script uses the `imgix.net` service to create CDN URLs. +# Must be an executable script that accepts the URL as the first program argument +# and outputs a result URL to stdout. +# STACKS_API_IMAGE_CACHE_PROCESSOR=./config/token-metadata-image-cache-imgix.js +# Env vars needed for the above sample `imgix` script: +# IMGIX_DOMAIN=https://.imgix.net +# IMGIX_TOKEN= + diff --git a/.eslintignore b/.eslintignore index 06f558e607..26518cf8d5 100644 --- a/.eslintignore +++ b/.eslintignore @@ -14,3 +14,4 @@ src/tests-rosetta/ src/tests-rosetta-cli/ src/tests-bns/ client/src/ +config/ diff --git a/config/token-metadata-image-cache-imgix.js b/config/token-metadata-image-cache-imgix.js new file mode 100755 index 0000000000..e48d99d00d --- /dev/null +++ b/config/token-metadata-image-cache-imgix.js @@ -0,0 +1,7 @@ +#!/usr/bin/env node +const imgUrl = process.argv[2]; +const encodedUrl = encodeURIComponent(imgUrl); +const [imgixDomain, imgixToken] = [process.env['IMGIX_DOMAIN'], process.env['IMGIX_TOKEN']]; +const signature = require('crypto').createHash('md5').update(imgixToken + '/' + encodedUrl).digest('hex'); +const resultUrl = new URL(encodedUrl + '?s=' + signature, imgixDomain); +console.log(resultUrl.toString()); diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 0d8e17a008..8f02406295 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -1,3 +1,4 @@ +import * as child_process from 'child_process'; import { DataStore, DbFungibleTokenMetadata, @@ -13,14 +14,12 @@ import { getAddressFromPrivateKey, makeRandomPrivKey, ReadOnlyFunctionOptions, - StringAsciiCV, - StringUtf8CV, TransactionVersion, uintCV, UIntCV, } from '@stacks/transactions'; import { GetStacksNetwork } from '../bns-helpers'; -import { logError, logger, parseDataUrl, stopwatch } from '../helpers'; +import { logError, logger, parseDataUrl, REPO_DIR, stopwatch } from '../helpers'; import { StacksNetwork } from '@stacks/network'; import PQueue from 'p-queue'; import * as querystring from 'querystring'; @@ -393,6 +392,7 @@ export class TokensContractHandler { let contractCallUri: string | undefined; let contractCallSymbol: string | undefined; let contractCallDecimals: number | undefined; + let imgUrl: string | undefined; try { // get name value @@ -421,6 +421,18 @@ export class TokensContractHandler { ); } } + + if (metadata?.imageUri) { + try { + const normalizedUrl = this.getImageUrl(metadata.imageUri); + imgUrl = await this.processImageUrl(normalizedUrl); + } catch (error) { + logger.warn( + `[token-metadata] error handling image url while processing FT contract ${this.contractId}`, + error + ); + } + } } catch (error) { // Note: something is wrong with the above error handling if this is ever reached. logError( @@ -433,8 +445,8 @@ export class TokensContractHandler { token_uri: contractCallUri ?? '', name: contractCallName ?? metadata?.name ?? '', // prefer the on-chain name description: metadata?.description ?? '', - image_uri: metadata?.imageUri ? this.getImageUrl(metadata.imageUri) : '', - image_canonical_uri: metadata?.imageUri || '', + image_uri: imgUrl ?? '', + image_canonical_uri: metadata?.imageUri ?? '', symbol: contractCallSymbol ?? '', decimals: contractCallDecimals ?? 0, contract_id: this.contractId, @@ -452,6 +464,7 @@ export class TokensContractHandler { private async handleNftContract() { let metadata: NftTokenMetadata | undefined; let contractCallUri: string | undefined; + let imgUrl: string | undefined; try { // TODO: This is incorrectly attempting to fetch the metadata for a specific @@ -476,6 +489,18 @@ export class TokensContractHandler { } } } + + if (metadata?.imageUri) { + try { + const normalizedUrl = this.getImageUrl(metadata.imageUri); + imgUrl = await this.processImageUrl(normalizedUrl); + } catch (error) { + logger.warn( + `[token-metadata] error handling image url while processing NFT contract ${this.contractId}`, + error + ); + } + } } catch (error) { // Note: something is wrong with the above error handling if this is ever reached. logError( @@ -488,7 +513,7 @@ export class TokensContractHandler { token_uri: contractCallUri ?? '', name: metadata?.name ?? '', description: metadata?.description ?? '', - image_uri: metadata?.imageUri ? this.getImageUrl(metadata.imageUri) : '', + image_uri: imgUrl ?? '', image_canonical_uri: metadata?.imageUri ?? '', contract_id: `${this.contractId}`, tx_id: this.txId, @@ -497,6 +522,48 @@ export class TokensContractHandler { await this.storeNftMetadata(nonFungibleTokenMetadata); } + /** + * If an external image processor script is configured, then it will process the given image URL for the purpose + * of caching on a CDN (or whatever else it may be created to do). The script is expected to return a new URL + * for the image. + * If the script is not configured, then the original URL is returned immediately. + * If a data-uri is passed, it is also immediately returned without being passed to the script. + */ + private async processImageUrl(imgUrl: string): Promise { + const imageCacheProcessor = process.env['STACKS_API_IMAGE_CACHE_PROCESSOR']; + if (!imageCacheProcessor) { + return imgUrl; + } + if (imgUrl.startsWith('data:')) { + return imgUrl; + } + const { code, stdout, stderr } = await new Promise<{ + code: number; + stdout: string; + stderr: string; + }>((resolve, reject) => { + const cp = child_process.spawn(imageCacheProcessor, [imgUrl], { cwd: REPO_DIR }); + let stdout = ''; + let stderr = ''; + cp.stdout.on('data', data => (stdout += data)); + cp.stderr.on('data', data => (stderr += data)); + cp.on('close', code => resolve({ code: code ?? 0, stdout, stderr })); + cp.on('error', error => reject(error)); + }); + if (code !== 0 && stderr) { + console.warn(`[token-metadata] stderr from STACKS_API_IMAGE_CACHE_PROCESSOR: ${stderr}`); + } + const result = stdout.trim(); + try { + const url = new URL(result); + return url.toString(); + } catch (error) { + throw new Error( + `Image processing script returned an invalid url for ${imgUrl}: ${result}, stderr: ${stderr}` + ); + } + } + /** * Helper method for creating http/s url for supported protocols. * URLs with `http` or `https` protocols are returned as-is. From 46edd6f2a7c8eb92e90e65332c38d3d7e2109d20 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Fri, 13 Aug 2021 12:22:00 -0600 Subject: [PATCH 37/44] chore: fix token metadata tx_id postgres data type --- src/datastore/common.ts | 12 ++- src/datastore/postgres-store.ts | 98 +++++++++++++------- src/migrations/1621511823381_nft-metadata.ts | 4 +- src/migrations/1621511832113_ft-metadata.ts | 3 +- src/tests-tokens/tokens-metadata-tests.ts | 2 +- 5 files changed, 74 insertions(+), 45 deletions(-) diff --git a/src/datastore/common.ts b/src/datastore/common.ts index 28e96b767c..8835779168 100644 --- a/src/datastore/common.ts +++ b/src/datastore/common.ts @@ -499,6 +499,13 @@ export interface DbRawEventRequest { event_path: string; payload: string; } + +export type BlockIdentifier = + | { hash: string } + | { height: number } + | { burnBlockHash: string } + | { burnBlockHeight: number }; + export interface DbNonFungibleTokenMetadata { token_uri: string; name: string; @@ -510,11 +517,6 @@ export interface DbNonFungibleTokenMetadata { sender_address: string; } -export type BlockIdentifier = - | { hash: string } - | { height: number } - | { burnBlockHash: string } - | { burnBlockHeight: number }; export interface DbFungibleTokenMetadata { token_uri: string; name: string; diff --git a/src/datastore/postgres-store.ts b/src/datastore/postgres-store.ts index 78ebf7e169..38d2ec953a 100644 --- a/src/datastore/postgres-store.ts +++ b/src/datastore/postgres-store.ts @@ -469,6 +469,30 @@ interface TransferQueryResult { amount: string; } +interface NonFungibleTokenMetadataQueryResult { + token_uri: string; + name: string; + description: string; + image_uri: string; + image_canonical_uri: string; + contract_id: string; + tx_id: Buffer; + sender_address: string; +} + +interface FungibleTokenMetadataQueryResult { + token_uri: string; + name: string; + description: string; + image_uri: string; + image_canonical_uri: string; + contract_id: string; + symbol: string; + decimals: number; + tx_id: Buffer; + sender_address: string; +} + export interface RawTxQueryResult { raw_tx: Buffer; } @@ -5684,7 +5708,7 @@ export class PgDataStore } async getFtMetadata(contractId: string): Promise> { return this.query(async client => { - const queryResult = await client.query( + const queryResult = await client.query( ` SELECT token_uri, name, description, image_uri, image_canonical_uri, symbol, decimals, contract_id, tx_id, sender_address FROM ft_metadata @@ -5703,7 +5727,7 @@ export class PgDataStore symbol: queryResult.rows[0].symbol, decimals: queryResult.rows[0].decimals, contract_id: queryResult.rows[0].contract_id, - tx_id: queryResult.rows[0].tx_id, + tx_id: bufferToHexPrefixString(queryResult.rows[0].tx_id), sender_address: queryResult.rows[0].sender_address, }; return { @@ -5718,7 +5742,7 @@ export class PgDataStore async getNftMetadata(contractId: string): Promise> { return this.query(async client => { - const queryResult = await client.query( + const queryResult = await client.query( ` SELECT token_uri, name, description, image_uri, image_canonical_uri, contract_id, tx_id, sender_address FROM nft_metadata @@ -5735,7 +5759,7 @@ export class PgDataStore image_uri: queryResult.rows[0].image_uri, image_canonical_uri: queryResult.rows[0].image_canonical_uri, contract_id: queryResult.rows[0].contract_id, - tx_id: queryResult.rows[0].tx_id, + tx_id: bufferToHexPrefixString(queryResult.rows[0].tx_id), sender_address: queryResult.rows[0].sender_address, }; return { @@ -5778,7 +5802,7 @@ export class PgDataStore contract_id, symbol, decimals, - tx_id, + hexToBuffer(tx_id), sender_address, ] ); @@ -5815,7 +5839,7 @@ export class PgDataStore image_uri, image_canonical_uri, contract_id, - tx_id, + hexToBuffer(tx_id), sender_address, ] ); @@ -5833,16 +5857,14 @@ export class PgDataStore limit: number; offset: number; }): Promise<{ results: DbFungibleTokenMetadata[]; total: number }> { - let totalQuery: QueryResult<{ count: number }>; - let resultQuery: QueryResult; return this.queryTx(async client => { - totalQuery = await client.query<{ count: number }>( + const totalQuery = await client.query<{ count: number }>( ` SELECT COUNT(*)::integer FROM ft_metadata ` ); - resultQuery = await client.query( + const resultQuery = await client.query( ` SELECT * FROM ft_metadata @@ -5851,18 +5873,21 @@ export class PgDataStore `, [limit, offset] ); - const parsed = resultQuery.rows.map(r => ({ - name: r.name, - description: r.description, - token_uri: r.token_uri, - image_uri: r.image_uri, - image_canonical_uri: r.image_canonical_uri, - decimals: r.decimals, - symbol: r.symbol, - contract_id: r.contract_id, - tx_id: r.tx_id, - sender_address: r.sender_address, - })); + const parsed = resultQuery.rows.map(r => { + const metadata: DbFungibleTokenMetadata = { + name: r.name, + description: r.description, + token_uri: r.token_uri, + image_uri: r.image_uri, + image_canonical_uri: r.image_canonical_uri, + decimals: r.decimals, + symbol: r.symbol, + contract_id: r.contract_id, + tx_id: bufferToHexPrefixString(r.tx_id), + sender_address: r.sender_address, + }; + return metadata; + }); return { results: parsed, total: totalQuery.rows[0].count }; }); } @@ -5874,16 +5899,14 @@ export class PgDataStore limit: number; offset: number; }): Promise<{ results: DbNonFungibleTokenMetadata[]; total: number }> { - let totalQuery: QueryResult<{ count: number }>; - let resultQuery: QueryResult; return this.queryTx(async client => { - totalQuery = await client.query<{ count: number }>( + const totalQuery = await client.query<{ count: number }>( ` SELECT COUNT(*)::integer FROM nft_metadata ` ); - resultQuery = await client.query( + const resultQuery = await client.query( ` SELECT * FROM nft_metadata @@ -5892,16 +5915,19 @@ export class PgDataStore `, [limit, offset] ); - const parsed = resultQuery.rows.map(r => ({ - name: r.name, - description: r.description, - token_uri: r.token_uri, - image_uri: r.image_uri, - image_canonical_uri: r.image_canonical_uri, - contract_id: r.contract_id, - tx_id: r.tx_id, - sender_address: r.sender_address, - })); + const parsed = resultQuery.rows.map(r => { + const metadata: DbNonFungibleTokenMetadata = { + name: r.name, + description: r.description, + token_uri: r.token_uri, + image_uri: r.image_uri, + image_canonical_uri: r.image_canonical_uri, + contract_id: r.contract_id, + tx_id: bufferToHexPrefixString(r.tx_id), + sender_address: r.sender_address, + }; + return metadata; + }); return { results: parsed, total: totalQuery.rows[0].count }; }); } diff --git a/src/migrations/1621511823381_nft-metadata.ts b/src/migrations/1621511823381_nft-metadata.ts index 575501b59a..80ab2d7650 100644 --- a/src/migrations/1621511823381_nft-metadata.ts +++ b/src/migrations/1621511823381_nft-metadata.ts @@ -34,7 +34,7 @@ export async function up(pgm: MigrationBuilder): Promise { notNull: true, }, tx_id: { - type: 'string', + type: 'bytea', notNull: true, }, sender_address: { @@ -45,7 +45,7 @@ export async function up(pgm: MigrationBuilder): Promise { pgm.createIndex('nft_metadata', 'name'); pgm.createIndex('nft_metadata', 'contract_id'); - + pgm.createIndex('nft_metadata', 'tx_id'); } export async function down(pgm: MigrationBuilder): Promise { diff --git a/src/migrations/1621511832113_ft-metadata.ts b/src/migrations/1621511832113_ft-metadata.ts index 27a141d768..fbbf7a7719 100644 --- a/src/migrations/1621511832113_ft-metadata.ts +++ b/src/migrations/1621511832113_ft-metadata.ts @@ -42,7 +42,7 @@ export async function up(pgm: MigrationBuilder): Promise { notNull: true, }, tx_id: { - type: 'string', + type: 'bytea', notNull: true, }, sender_address: { @@ -54,6 +54,7 @@ export async function up(pgm: MigrationBuilder): Promise { pgm.createIndex('ft_metadata', 'name'); pgm.createIndex('ft_metadata', 'symbol'); pgm.createIndex('ft_metadata', 'contract_id'); + pgm.createIndex('ft_metadata', 'tx_id'); } export async function down(pgm: MigrationBuilder): Promise { diff --git a/src/tests-tokens/tokens-metadata-tests.ts b/src/tests-tokens/tokens-metadata-tests.ts index afca63409c..98841e8bfa 100644 --- a/src/tests-tokens/tokens-metadata-tests.ts +++ b/src/tests-tokens/tokens-metadata-tests.ts @@ -309,7 +309,7 @@ describe('api tests', () => { image_uri: 'nft-metadata image uri example', image_canonical_uri: 'nft-metadata image canonical uri example', contract_id: 'ABCDEFGHIJ.nft-metadata' + i, - tx_id: '0x1234567', + tx_id: '0x12345678', sender_address: 'ABCDEFGHIJ', }; From 9ccc42b9f1f1dd98cc2f81370c474c9b82740461 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Thu, 19 Aug 2021 12:45:00 -0600 Subject: [PATCH 38/44] feat: implement token contract queue in postgres to fix metadata processing after event-replay import --- src/datastore/common.ts | 20 +- src/datastore/memory-store.ts | 8 + src/datastore/postgres-store.ts | 208 ++++++++++++++---- src/event-stream/event-server.ts | 40 +--- src/event-stream/tokens-contract-handler.ts | 206 +++++++++++------ src/index.ts | 7 + .../1621511823100_token-metadata-queue.ts | 36 +++ src/migrations/1621511823381_nft-metadata.ts | 8 +- src/migrations/1621511832113_ft-metadata.ts | 10 +- src/tests-tokens/tokens-metadata-tests.ts | 10 +- src/tests/datastore-tests.ts | 4 +- src/tests/setup.ts | 1 - 12 files changed, 383 insertions(+), 175 deletions(-) create mode 100644 src/migrations/1621511823100_token-metadata-queue.ts diff --git a/src/datastore/common.ts b/src/datastore/common.ts index 8835779168..2700731a29 100644 --- a/src/datastore/common.ts +++ b/src/datastore/common.ts @@ -17,6 +17,7 @@ import { c32address } from 'c32check'; import { AddressTokenOfferingLocked, TransactionType } from '@stacks/stacks-blockchain-api-types'; import { getTxSenderAddress } from '../event-stream/reader'; import { RawTxQueryResult } from './postgres-store'; +import { ClarityAbi } from '@stacks/transactions'; export interface DbBlock { block_hash: string; @@ -342,6 +343,7 @@ export type DataStoreEventEmitter = StrictEventEmitter< addressUpdate: (info: AddressTxUpdateInfo) => void; nameUpdate: (info: string) => void; tokensUpdate: (contractID: string) => void; + tokenMetadataUpdateQueued: (entry: DbTokenMetadataQueueEntry) => void; } >; @@ -530,6 +532,15 @@ export interface DbFungibleTokenMetadata { sender_address: string; } +export interface DbTokenMetadataQueueEntry { + queueId: number; + txId: string; + contractId: string; + contractAbi: ClarityAbi; + blockHeight: number; + processed: boolean; +} + export interface DataStore extends DataStoreEventEmitter { storeRawEventRequest(eventPath: string, payload: string): Promise; getSubdomainResolver(name: { name: string }): Promise>; @@ -794,8 +805,8 @@ export interface DataStore extends DataStoreEventEmitter { getFtMetadata(contractId: string): Promise>; getNftMetadata(contractId: string): Promise>; - updateNFtMetadata(nftMetadata: DbNonFungibleTokenMetadata): Promise; - updateFtMetadata(ftMetadata: DbFungibleTokenMetadata): Promise; + updateNFtMetadata(nftMetadata: DbNonFungibleTokenMetadata, dbQueueId: number): Promise; + updateFtMetadata(ftMetadata: DbFungibleTokenMetadata, dbQueueId: number): Promise; getFtMetadataList(args: { limit: number; @@ -806,6 +817,11 @@ export interface DataStore extends DataStoreEventEmitter { offset: number; }): Promise<{ results: DbNonFungibleTokenMetadata[]; total: number }>; + getTokenMetadataQueue( + limit: number, + excludingEntries: number[] + ): Promise; + close(): Promise; } diff --git a/src/datastore/memory-store.ts b/src/datastore/memory-store.ts index 3b4a919768..3235a15de9 100644 --- a/src/datastore/memory-store.ts +++ b/src/datastore/memory-store.ts @@ -37,6 +37,7 @@ import { StxUnlockEvent, DbFungibleTokenMetadata, DbNonFungibleTokenMetadata, + DbTokenMetadataQueueEntry, } from './common'; import { logger, FoundOrNot } from '../helpers'; import { AddressTokenOfferingLocked, TransactionType } from '@stacks/stacks-blockchain-api-types'; @@ -730,4 +731,11 @@ export class MemoryDataStore }): Promise<{ results: DbNonFungibleTokenMetadata[]; total: number }> { throw new Error('Method not implemented.'); } + + getTokenMetadataQueue( + _limit: number, + _excludingEntries: number[] + ): Promise { + throw new Error('Method not implemented.'); + } } diff --git a/src/datastore/postgres-store.ts b/src/datastore/postgres-store.ts index 38d2ec953a..afa80b716d 100644 --- a/src/datastore/postgres-store.ts +++ b/src/datastore/postgres-store.ts @@ -74,6 +74,7 @@ import { StxUnlockEvent, DbNonFungibleTokenMetadata, DbFungibleTokenMetadata, + DbTokenMetadataQueueEntry, } from './common'; import { AddressTokenOfferingLocked, @@ -81,6 +82,8 @@ import { AddressUnlockSchedule, } from '@stacks/stacks-blockchain-api-types'; import { getTxTypeId } from '../api/controllers/db-controller'; +import { isCompliantToken } from '../event-stream/tokens-contract-handler'; +import { ClarityAbi } from '@stacks/transactions'; const MIGRATIONS_TABLE = 'pgmigrations'; const MIGRATIONS_DIR = path.join(APP_DIR, 'migrations'); @@ -493,6 +496,15 @@ interface FungibleTokenMetadataQueryResult { sender_address: string; } +interface DbTokenMetadataQueueEntryQuery { + queue_id: number; + tx_id: Buffer; + contract_id: string; + contract_abi: string; + block_height: number; + processed: boolean; +} + export interface RawTxQueryResult { raw_tx: Buffer; } @@ -913,6 +925,7 @@ export class PgDataStore } async update(data: DataStoreBlockUpdateData): Promise { + const tokenMetadataQueueEntries: DbTokenMetadataQueueEntry[] = []; await this.queryTx(async client => { const chainTip = await this.getChainTip(client); await this.handleReorg(client, data.block, chainTip.blockHeight); @@ -1039,6 +1052,28 @@ export class PgDataStore await this.updateNamespaces(client, entry.tx, namespace); } } + + const tokenContractDeployments = data.txs + .filter(entry => entry.tx.type_id === DbTxTypeId.SmartContract) + .filter(entry => entry.tx.status === DbTxStatus.Success) + .map(entry => { + const smartContract = entry.smartContracts[0]; + const contractAbi: ClarityAbi = JSON.parse(smartContract.abi); + const queueEntry: DbTokenMetadataQueueEntry = { + queueId: -1, + txId: entry.tx.tx_id, + contractId: smartContract.contract_id, + contractAbi: contractAbi, + blockHeight: entry.tx.block_height, + processed: false, + }; + return queueEntry; + }) + .filter(entry => isCompliantToken(entry.contractAbi)); + for (const pendingQueueEntry of tokenContractDeployments) { + const queueEntry = await this.updateTokenMetadataQueue(client, pendingQueueEntry); + tokenMetadataQueueEntries.push(queueEntry); + } } }); @@ -1057,6 +1092,9 @@ export class PgDataStore this.emit('txUpdate', entry.tx); }); this.emitAddressTxUpdates(data); + for (const tokenMetadataQueueEntry of tokenMetadataQueueEntries) { + this.emit('tokenMetadataUpdateQueued', tokenMetadataQueueEntry); + } } async updateMicroCanonical( @@ -3871,6 +3909,64 @@ export class PgDataStore ); } + async getTokenMetadataQueue( + limit: number, + excludingEntries: number[] + ): Promise { + const result = await this.queryTx(async client => { + const queryResult = await client.query( + ` + SELECT * + FROM token_metadata_queue + WHERE NOT (queue_id = ANY($1)) + AND processed = false + ORDER BY block_height ASC, queue_id ASC + LIMIT $2 + `, + [excludingEntries, limit] + ); + return queryResult; + }); + const entries = result.rows.map(row => { + const entry: DbTokenMetadataQueueEntry = { + queueId: row.queue_id, + txId: bufferToHexPrefixString(row.tx_id), + contractId: row.contract_id, + contractAbi: JSON.parse(row.contract_abi), + blockHeight: row.block_height, + processed: row.processed, + }; + return entry; + }); + return entries; + } + + async updateTokenMetadataQueue( + client: ClientBase, + entry: DbTokenMetadataQueueEntry + ): Promise { + const queryResult = await client.query<{ queue_id: number }>( + ` + INSERT INTO token_metadata_queue( + tx_id, contract_id, contract_abi, block_height, processed + ) values($1, $2, $3, $4, $5) + RETURNING queue_id + `, + [ + hexToBuffer(entry.txId), + entry.contractId, + JSON.stringify(entry.contractAbi), + entry.blockHeight, + false, + ] + ); + const result: DbTokenMetadataQueueEntry = { + ...entry, + queueId: queryResult.rows[0].queue_id, + }; + return result; + } + async updateSmartContract(client: ClientBase, tx: DbTx, smartContract: DbSmartContract) { await client.query( ` @@ -5772,7 +5868,7 @@ export class PgDataStore }); } - async updateFtMetadata(ftMetadata: DbFungibleTokenMetadata): Promise { + async updateFtMetadata(ftMetadata: DbFungibleTokenMetadata, dbQueueId: number): Promise { const { token_uri, name, @@ -5785,35 +5881,45 @@ export class PgDataStore tx_id, sender_address, } = ftMetadata; - try { - return await this.queryTx(async client => { - const result = await client.query( - ` + + const rowCount = await this.queryTx(async client => { + const result = await client.query( + ` INSERT INTO ft_metadata( token_uri, name, description, image_uri, image_canonical_uri, contract_id, symbol, decimals, tx_id, sender_address - ) values($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) - `, - [ - token_uri, - name, - description, - image_uri, - image_canonical_uri, - contract_id, - symbol, - decimals, - hexToBuffer(tx_id), - sender_address, - ] - ); - return result.rowCount; - }); - } finally { - this.emit('tokensUpdate', contract_id); - } + ) values($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) + `, + [ + token_uri, + name, + description, + image_uri, + image_canonical_uri, + contract_id, + symbol, + decimals, + hexToBuffer(tx_id), + sender_address, + ] + ); + await client.query( + ` + UPDATE token_metadata_queue + SET processed = true + WHERE queue_id = $1 + `, + [dbQueueId] + ); + return result.rowCount; + }); + this.emit('tokensUpdate', contract_id); + return rowCount; } - async updateNFtMetadata(nftMetadata: DbNonFungibleTokenMetadata): Promise { + async updateNFtMetadata( + nftMetadata: DbNonFungibleTokenMetadata, + dbQueueId: number + ): Promise { const { token_uri, name, @@ -5824,30 +5930,36 @@ export class PgDataStore tx_id, sender_address, } = nftMetadata; - try { - return await this.queryTx(async client => { - const result = await client.query( - ` + const rowCount = await this.queryTx(async client => { + const result = await client.query( + ` INSERT INTO nft_metadata( token_uri, name, description, image_uri, image_canonical_uri, contract_id, tx_id, sender_address - ) values($1, $2, $3, $4, $5, $6, $7, $8) - `, - [ - token_uri, - name, - description, - image_uri, - image_canonical_uri, - contract_id, - hexToBuffer(tx_id), - sender_address, - ] - ); - return result.rowCount; - }); - } finally { - this.emit('tokensUpdate', contract_id); - } + ) values($1, $2, $3, $4, $5, $6, $7, $8) + `, + [ + token_uri, + name, + description, + image_uri, + image_canonical_uri, + contract_id, + hexToBuffer(tx_id), + sender_address, + ] + ); + await client.query( + ` + UPDATE token_metadata_queue + SET processed = true + WHERE queue_id = $1 + `, + [dbQueueId] + ); + return result.rowCount; + }); + this.emit('tokensUpdate', contract_id); + return rowCount; } getFtMetadataList({ diff --git a/src/event-stream/event-server.ts b/src/event-stream/event-server.ts index 961ba0424a..401cec31a2 100644 --- a/src/event-stream/event-server.ts +++ b/src/event-stream/event-server.ts @@ -228,8 +228,7 @@ async function handleMicroblockMessage( async function handleBlockMessage( chainId: ChainID, msg: CoreNodeBlockMessage, - db: DataStore, - tokenProcessorQueue: TokensProcessorQueue + db: DataStore ): Promise { const parsedTxs: CoreNodeParsedTxMessage[] = []; const blockData: CoreNodeMsgBlockData = { @@ -242,8 +241,6 @@ async function handleBlockMessage( } }); - handleTokenContract(parsedTxs, db, chainId, tokenProcessorQueue); - const dbBlock: DbBlock = { canonical: true, block_hash: msg.block_hash, @@ -311,34 +308,6 @@ async function handleBlockMessage( await db.update(dbData); } -function handleTokenContract( - coreMessages: CoreNodeParsedTxMessage[], - db: DataStore, - chainId: ChainID, - tokenProcessorQueue: TokensProcessorQueue -) { - for (const tx of coreMessages) { - if (tx.parsed_tx.payload.typeId === TransactionPayloadTypeID.SmartContract) { - //check if this contract uses fungible/non fungible tokens - if ( - tx.core_tx.status === 'success' && - tx.core_tx.contract_abi && - isCompliantToken(tx.core_tx.contract_abi) - ) { - const handler = new TokensContractHandler({ - contractAddress: tx.sender_address, - contractName: tx.parsed_tx.payload.name, - smartContractAbi: tx.core_tx.contract_abi, - datastore: db, - chainId: chainId, - tx_id: tx.core_tx.txid, - }); - tokenProcessorQueue.queueHandler(handler); - } - } - } -} - function parseDataStoreTxEventData( parsedTxs: CoreNodeParsedTxMessage[], events: CoreNodeEvent[], @@ -680,15 +649,12 @@ interface EventMessageHandler { handleBurnBlock(msg: CoreNodeBurnBlockMessage, db: DataStore): Promise | void; handleDroppedMempoolTxs(msg: CoreNodeDropMempoolTxMessage, db: DataStore): Promise | void; handleNewAttachment(msg: CoreNodeAttachmentMessage[], db: DataStore): Promise | void; - readonly tokensProcessorQueue: TokensProcessorQueue; } function createMessageProcessorQueue(): EventMessageHandler { // Create a promise queue so that only one message is handled at a time. const processorQueue = new PQueue({ concurrency: 1 }); - const tokensProcessorQueue = new TokensProcessorQueue(); const handler: EventMessageHandler = { - tokensProcessorQueue, handleRawEventRequest: (eventPath: string, payload: string, db: DataStore) => { return processorQueue .add(() => handleRawEventRequest(eventPath, payload, db)) @@ -699,7 +665,7 @@ function createMessageProcessorQueue(): EventMessageHandler { }, handleBlockMessage: (chainId: ChainID, msg: CoreNodeBlockMessage, db: DataStore) => { return processorQueue - .add(() => handleBlockMessage(chainId, msg, db, tokensProcessorQueue)) + .add(() => handleBlockMessage(chainId, msg, db)) .catch(e => { logError(`Error processing core node block message`, e, msg); throw e; @@ -752,7 +718,6 @@ function createMessageProcessorQueue(): EventMessageHandler { export type EventStreamServer = net.Server & { serverAddress: net.AddressInfo; - tokensProcessorQueue: TokensProcessorQueue; closeAsync: () => Promise; }; @@ -918,7 +883,6 @@ export async function startEventServer(opts: { }; const eventStreamServer: EventStreamServer = Object.assign(server, { serverAddress: addr as net.AddressInfo, - tokensProcessorQueue: messageHandler.tokensProcessorQueue, closeAsync: closeFn, }); return eventStreamServer; diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 8f02406295..310de6f060 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -3,6 +3,7 @@ import { DataStore, DbFungibleTokenMetadata, DbNonFungibleTokenMetadata, + DbTokenMetadataQueueEntry, } from '../datastore/common'; import { callReadOnlyFunction, @@ -186,12 +187,12 @@ interface FtTokenMetadata { } export interface TokenHandlerArgs { - contractAddress: string; - contractName: string; + contractId: string; smartContractAbi: ClarityAbi; datastore: DataStore; chainId: ChainID; - tx_id: string; + txId: string; + dbQueueId: number; } export function isCompliantToken(abi: ClarityAbi): boolean { @@ -244,65 +245,12 @@ function findFunction(fun: ClarityAbiFunction, functionList: ClarityAbiFunction[ return found !== undefined; } -export class TokensProcessorQueue { - readonly queue: PQueue; - - readonly processStartedEvent: Evt<{ - contractAddress: string; - contractName: string; - contractId: string; - txId: string; - }> = new Evt(); - - readonly processEndEvent: Evt<{ - contractAddress: string; - contractName: string; - contractId: string; - txId: string; - }> = new Evt(); - - constructor() { - this.queue = new PQueue({ concurrency: TOKEN_METADATA_PARSING_CONCURRENCY_LIMIT }); - } - - queueHandler(tokenContractHandler: TokensContractHandler) { - // TODO: This could get backed up quite a bit, for example while syncing from scratch. - // If the process is restarted, this queue is not currently persisted and all the queued - // contracts will be thrown away. Eventually this should probably persist the queue in the db. - - void this.queue - .add(async () => { - this.processStartedEvent.post({ - contractAddress: tokenContractHandler.contractAddress, - contractName: tokenContractHandler.contractName, - contractId: tokenContractHandler.contractId, - txId: tokenContractHandler.txId, - }); - await tokenContractHandler.start(); - }) - .catch(error => { - // TODO: should this be a fatal error? - logError( - `[token-metadata] error processing token contract: ${tokenContractHandler.contractAddress} ${tokenContractHandler.contractName} from tx ${tokenContractHandler.txId}`, - error - ); - }) - .finally(() => { - this.processEndEvent.post({ - contractAddress: tokenContractHandler.contractAddress, - contractName: tokenContractHandler.contractName, - contractId: tokenContractHandler.contractId, - txId: tokenContractHandler.txId, - }); - }); - } -} - export class TokensContractHandler { readonly contractAddress: string; readonly contractName: string; readonly contractId: string; readonly txId: string; + readonly dbQueueId: number; private readonly contractAbi: ClarityAbi; private readonly db: DataStore; private readonly randomPrivKey = makeRandomPrivKey(); @@ -312,13 +260,13 @@ export class TokensContractHandler { private readonly tokenKind: 'ft' | 'nft'; constructor(args: TokenHandlerArgs) { - this.contractAddress = args.contractAddress; - this.contractName = args.contractName; - this.contractId = `${args.contractAddress}.${args.contractName}`; + [this.contractAddress, this.contractName] = args.contractId.split('.'); + this.contractId = args.contractId; this.contractAbi = args.smartContractAbi; this.db = args.datastore; this.chainId = args.chainId; - this.txId = args.tx_id; + this.txId = args.txId; + this.dbQueueId = args.dbQueueId; this.stacksNetwork = GetStacksNetwork(this.chainId); this.address = getAddressFromPrivateKey( @@ -339,7 +287,7 @@ export class TokensContractHandler { async start() { logger.info( `[token-metadata] found ${ - this.tokenKind === 'ft' ? 'sip-010-ft-standard' : 'sip-010-ft-standard' + this.tokenKind === 'ft' ? 'sip-010-ft-standard' : 'sip-009-nft-standard' } compliant contract ${this.contractId} in tx ${this.txId}, begin retrieving metadata...` ); const sw = stopwatch(); @@ -472,6 +420,10 @@ export class TokensContractHandler { // to define how generic metadata for an NFT type/contract should be retrieved. // In the meantime, this will often fail or result in weird data, but at least // the NFT type enumeration endpoints will have data like the contract ID and txid. + + // TODO: this should instead use the SIP-012 draft https://github.com/stacksgov/sips/pull/18 + // function `(get-nft-meta () (response (optional {name: (string-uft8 30), image: (string-ascii 255)}) uint))` + const tokenId = await this.readUIntFromContract('get-last-token-id', []); if (tokenId) { contractCallUri = await this.readStringFromContract('get-token-uri', [ @@ -598,8 +550,9 @@ export class TokensContractHandler { const fetchableUrl = this.getFetchableUrl(uri); return fetchableUrl.toString(); } + /** - * fetch metadata from uri + * Fetch metadata from uri */ private async getMetadataFromUri(token_uri: string): Promise { // Support JSON embedded in a Data URL @@ -635,9 +588,8 @@ export class TokensContractHandler { } /** - * make readonly contract call + * Make readonly contract call */ - private async makeReadOnlyContractCall( functionName: string, functionArgs: ClarityValue[] @@ -688,22 +640,22 @@ export class TokensContractHandler { /** * Store ft metadata to db */ - private async storeFtMetadata(ft_metadata: DbFungibleTokenMetadata) { + private async storeFtMetadata(ftMetadata: DbFungibleTokenMetadata) { try { - await this.db.updateFtMetadata(ft_metadata); + await this.db.updateFtMetadata(ftMetadata, this.dbQueueId); } catch (error) { - throw new Error(`error occurred while updating FT metadata ${error}`); + throw new Error(`Error occurred while updating FT metadata ${error}`); } } /** * Store NFT Metadata to db */ - private async storeNftMetadata(nft_metadata: DbNonFungibleTokenMetadata) { + private async storeNftMetadata(nftMetadata: DbNonFungibleTokenMetadata) { try { - await this.db.updateNFtMetadata(nft_metadata); + await this.db.updateNFtMetadata(nftMetadata, this.dbQueueId); } catch (error) { - throw new Error(`error occurred while updating NFT metadata ${error}`); + throw new Error(`Error occurred while updating NFT metadata ${error}`); } } @@ -742,6 +694,118 @@ export class TokensContractHandler { } } +export class TokensProcessorQueue { + readonly queue: PQueue; + readonly db: DataStore; + readonly chainId: ChainID; + + readonly processStartedEvent: Evt<{ + contractId: string; + txId: string; + }> = new Evt(); + + readonly processEndEvent: Evt<{ + contractId: string; + txId: string; + }> = new Evt(); + + /** The entries currently queued for processing in memory, keyed by the queue entry db id. */ + readonly queuedEntries: Map = new Map(); + + constructor(db: DataStore, chainId: ChainID) { + this.db = db; + this.chainId = chainId; + this.queue = new PQueue({ concurrency: TOKEN_METADATA_PARSING_CONCURRENCY_LIMIT }); + this.db.on('tokenMetadataUpdateQueued', entry => { + // Only add to queue if it's not already backed up. + // if (this.queue.size < this.queue.concurrency && this.queue.pending < this.queue.concurrency) { + if (this.queuedEntries.size < this.queue.concurrency) { + this.queueHandler(entry); + } + }); + } + + async drainDbQueue(): Promise { + let entries: DbTokenMetadataQueueEntry[] = []; + do { + const queuedEntries = [...this.queuedEntries.keys()]; + entries = await this.db.getTokenMetadataQueue( + TOKEN_METADATA_PARSING_CONCURRENCY_LIMIT, + queuedEntries + ); + for (const entry of entries) { + this.queueHandler(entry); + } + await this.queue.onEmpty(); + // await this.queue.onIdle(); + } while (entries.length > 0 || this.queuedEntries.size > 0); + } + + async checkDbQueue(): Promise { + const queuedEntries = [...this.queuedEntries.keys()]; + const limit = TOKEN_METADATA_PARSING_CONCURRENCY_LIMIT - this.queuedEntries.size; + if (limit > 0) { + const entries = await this.db.getTokenMetadataQueue( + TOKEN_METADATA_PARSING_CONCURRENCY_LIMIT, + queuedEntries + ); + for (const entry of entries) { + this.queueHandler(entry); + } + } + } + + queueHandler(queueEntry: DbTokenMetadataQueueEntry) { + if ( + this.queuedEntries.has(queueEntry.queueId) || + this.queuedEntries.size >= this.queue.concurrency + ) { + return; + } + logger.info( + `[token-metadata] queueing token contract for processing: ${queueEntry.contractId} from tx ${queueEntry.txId}` + ); + this.queuedEntries.set(queueEntry.queueId, queueEntry); + + const tokenContractHandler = new TokensContractHandler({ + contractId: queueEntry.contractId, + smartContractAbi: queueEntry.contractAbi, + datastore: this.db, + chainId: this.chainId, + txId: queueEntry.txId, + dbQueueId: queueEntry.queueId, + }); + + void this.queue + .add(async () => { + this.processStartedEvent.post({ + contractId: queueEntry.contractId, + txId: queueEntry.txId, + }); + await tokenContractHandler.start(); + }) + .catch(error => { + logError( + `[token-metadata] error processing token contract: ${tokenContractHandler.contractAddress} ${tokenContractHandler.contractName} from tx ${tokenContractHandler.txId}`, + error + ); + }) + .finally(() => { + this.queuedEntries.delete(queueEntry.queueId); + this.processEndEvent.post({ + contractId: queueEntry.contractId, + txId: queueEntry.txId, + }); + logger.info( + `[token-metadata] finished token contract processing for: ${queueEntry.contractId} from tx ${queueEntry.txId}` + ); + if (this.queuedEntries.size < this.queue.concurrency) { + void this.checkDbQueue(); + } + }); + } +} + export async function performFetch( url: string, opts?: { diff --git a/src/index.ts b/src/index.ts index d232e3a67f..77d132ab39 100644 --- a/src/index.ts +++ b/src/index.ts @@ -13,6 +13,7 @@ import { cycleMigrations, dangerousDropAllTables, PgDataStore } from './datastor import { MemoryDataStore } from './datastore/memory-store'; import { startApiServer } from './api/init'; import { startEventServer } from './event-stream/event-server'; +import { TokensProcessorQueue } from './event-stream/tokens-contract-handler'; import { StacksCoreRpcClient } from './core-rpc/client'; import { createServer as createPrometheusServer } from '@promster/server'; import { ChainID } from '@stacks/transactions'; @@ -112,6 +113,7 @@ async function init(): Promise { } const configuredChainID = getConfiguredChainID(); + const eventServer = await startEventServer({ datastore: db, chainId: configuredChainID, @@ -135,6 +137,11 @@ async function init(): Promise { monitorCoreRpcConnection().catch(error => { logger.error(`Error monitoring RPC connection: ${error}`, error); }); + + // TODO: register an exit-handler for the tokenProcessorQueue instance + const tokenMetadataProcessor = new TokensProcessorQueue(db, configuredChainID); + // check if db has any non-processed token queues and await them all here + await tokenMetadataProcessor.drainDbQueue(); } const apiServer = await startApiServer({ datastore: db, chainId: getConfiguredChainID() }); diff --git a/src/migrations/1621511823100_token-metadata-queue.ts b/src/migrations/1621511823100_token-metadata-queue.ts new file mode 100644 index 0000000000..a79247102c --- /dev/null +++ b/src/migrations/1621511823100_token-metadata-queue.ts @@ -0,0 +1,36 @@ +/* eslint-disable @typescript-eslint/camelcase */ +import { MigrationBuilder, ColumnDefinitions } from 'node-pg-migrate'; + +export const shorthands: ColumnDefinitions | undefined = undefined; + +export async function up(pgm: MigrationBuilder): Promise { + pgm.createTable('token_metadata_queue', { + queue_id: { + type: 'serial', + primaryKey: true, + }, + tx_id: { + type: 'bytea', + notNull: true, + }, + contract_id: { + type: 'string', + notNull: true, + }, + contract_abi: { + type: 'string', + notNull: true, + }, + block_height: { + type: 'integer', + notNull: true, + }, + processed: { + type: 'boolean', + notNull: true, + } + }); + + pgm.createIndex('token_metadata_queue', 'block_height'); + pgm.createIndex('token_metadata_queue', 'processed'); +} diff --git a/src/migrations/1621511823381_nft-metadata.ts b/src/migrations/1621511823381_nft-metadata.ts index 80ab2d7650..5038d812a2 100644 --- a/src/migrations/1621511823381_nft-metadata.ts +++ b/src/migrations/1621511823381_nft-metadata.ts @@ -41,11 +41,11 @@ export async function up(pgm: MigrationBuilder): Promise { type: 'string', notNull: true, } - }); + }); - pgm.createIndex('nft_metadata', 'name'); - pgm.createIndex('nft_metadata', 'contract_id'); - pgm.createIndex('nft_metadata', 'tx_id'); + pgm.createIndex('nft_metadata', 'name'); + pgm.createIndex('nft_metadata', 'contract_id'); + pgm.createIndex('nft_metadata', 'tx_id'); } export async function down(pgm: MigrationBuilder): Promise { diff --git a/src/migrations/1621511832113_ft-metadata.ts b/src/migrations/1621511832113_ft-metadata.ts index fbbf7a7719..0358fa752b 100644 --- a/src/migrations/1621511832113_ft-metadata.ts +++ b/src/migrations/1621511832113_ft-metadata.ts @@ -49,12 +49,12 @@ export async function up(pgm: MigrationBuilder): Promise { type: 'string', notNull: true, } - }); + }); - pgm.createIndex('ft_metadata', 'name'); - pgm.createIndex('ft_metadata', 'symbol'); - pgm.createIndex('ft_metadata', 'contract_id'); - pgm.createIndex('ft_metadata', 'tx_id'); + pgm.createIndex('ft_metadata', 'name'); + pgm.createIndex('ft_metadata', 'symbol'); + pgm.createIndex('ft_metadata', 'contract_id'); + pgm.createIndex('ft_metadata', 'tx_id'); } export async function down(pgm: MigrationBuilder): Promise { diff --git a/src/tests-tokens/tokens-metadata-tests.ts b/src/tests-tokens/tokens-metadata-tests.ts index 98841e8bfa..51c9e5fdb7 100644 --- a/src/tests-tokens/tokens-metadata-tests.ts +++ b/src/tests-tokens/tokens-metadata-tests.ts @@ -22,7 +22,7 @@ import { getStacksTestnetNetwork } from '../rosetta-helpers'; import { StacksCoreRpcClient } from '../core-rpc/client'; import { logger, timeout } from '../helpers'; import * as nock from 'nock'; -import { performFetch } from './../event-stream/tokens-contract-handler'; +import { performFetch, TokensProcessorQueue } from './../event-stream/tokens-contract-handler'; const pKey = 'cb3df38053d132895220b9ce471f6b676db5b9bf0b4adefb55f2118ece2478df01'; const stacksNetwork = getStacksTestnetNetwork(); @@ -34,6 +34,7 @@ describe('api tests', () => { let client: PoolClient; let api: ApiServer; let eventServer: EventStreamServer; + let tokensProcessorQueue: TokensProcessorQueue; function standByForTx(expectedTxId: string): Promise { const broadcastTx = new Promise(resolve => { @@ -56,7 +57,7 @@ describe('api tests', () => { function standByForTokens(id: string): Promise { const contractId = new Promise(resolve => { - eventServer.tokensProcessorQueue.processEndEvent.attachOnce( + tokensProcessorQueue.processEndEvent.attachOnce( token => token.contractId === id, () => resolve() ); @@ -111,6 +112,7 @@ describe('api tests', () => { client = await db.pool.connect(); eventServer = await startEventServer({ datastore: db, chainId: ChainID.Testnet }); api = await startApiServer({ datastore: db, chainId: ChainID.Testnet }); + tokensProcessorQueue = new TokensProcessorQueue(db, ChainID.Testnet); }); beforeEach(() => { @@ -280,7 +282,7 @@ describe('api tests', () => { tx_id: '0x123456', sender_address: 'ABCDEFGHIJ', }; - await db.updateFtMetadata(ftMetadata); + await db.updateFtMetadata(ftMetadata, 0); } const query = await supertest(api.server).get(`/extended/v1/tokens/ft/metadata`); @@ -313,7 +315,7 @@ describe('api tests', () => { sender_address: 'ABCDEFGHIJ', }; - await db.updateNFtMetadata(nftMetadata); + await db.updateNFtMetadata(nftMetadata, 0); } const query = await supertest(api.server).get(`/extended/v1/tokens/nft/metadata`); diff --git a/src/tests/datastore-tests.ts b/src/tests/datastore-tests.ts index 13db357974..f23429412c 100644 --- a/src/tests/datastore-tests.ts +++ b/src/tests/datastore-tests.ts @@ -4101,7 +4101,7 @@ describe('postgres datastore', () => { sender_address: 'sender-addr-test', }; - const rowCount = await db.updateNFtMetadata(nftMetadata); + const rowCount = await db.updateNFtMetadata(nftMetadata, 0); expect(rowCount).toBe(1); const query = await db.getNftMetadata(nftMetadata.contract_id); @@ -4123,7 +4123,7 @@ describe('postgres datastore', () => { sender_address: 'sender-addr-test', }; - const rowCount = await db.updateFtMetadata(ftMetadata); + const rowCount = await db.updateFtMetadata(ftMetadata, 0); expect(rowCount).toBe(1); const query = await db.getFtMetadata(ftMetadata.contract_id); diff --git a/src/tests/setup.ts b/src/tests/setup.ts index 6f8c323db1..fbb8b0d0d2 100644 --- a/src/tests/setup.ts +++ b/src/tests/setup.ts @@ -16,7 +16,6 @@ export default async (): Promise => { chainId: ChainID.Testnet, datastore: new MemoryDataStore(), messageHandler: { - tokensProcessorQueue: new TokensProcessorQueue(), handleBlockMessage: () => {}, handleBurnBlock: () => {}, handleMempoolTxs: () => {}, From 8bf8496110a1babd84d3a98a03a32dd368631402 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Thu, 19 Aug 2021 12:58:26 -0600 Subject: [PATCH 39/44] chore: simplify initial version of nft-class metadata fetching --- src/event-stream/tokens-contract-handler.ts | 25 +++++++++------------ 1 file changed, 10 insertions(+), 15 deletions(-) diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 310de6f060..f78708f815 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -424,21 +424,16 @@ export class TokensContractHandler { // TODO: this should instead use the SIP-012 draft https://github.com/stacksgov/sips/pull/18 // function `(get-nft-meta () (response (optional {name: (string-uft8 30), image: (string-ascii 255)}) uint))` - const tokenId = await this.readUIntFromContract('get-last-token-id', []); - if (tokenId) { - contractCallUri = await this.readStringFromContract('get-token-uri', [ - uintCV(tokenId.toString()), - ]); - if (contractCallUri) { - try { - metadata = await this.getMetadataFromUri(contractCallUri); - metadata = this.patchTokenMetadataImageUri(metadata); - } catch (error) { - logger.warn( - `[token-metadata] error fetching metadata while processing NFT contract ${this.contractId}`, - error - ); - } + contractCallUri = await this.readStringFromContract('get-token-uri', [uintCV(0)]); + if (contractCallUri) { + try { + metadata = await this.getMetadataFromUri(contractCallUri); + metadata = this.patchTokenMetadataImageUri(metadata); + } catch (error) { + logger.warn( + `[token-metadata] error fetching metadata while processing NFT contract ${this.contractId}`, + error + ); } } From 0f0b04638fce1d04f62b0b8e222b1bf624bf0dbd Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Fri, 20 Aug 2021 10:01:05 -0600 Subject: [PATCH 40/44] chore: add shutdown config for the token metadata processor --- src/event-stream/tokens-contract-handler.ts | 23 ++++++++++++++------- src/index.ts | 6 +++++- 2 files changed, 21 insertions(+), 8 deletions(-) diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index f78708f815..228e04e8c9 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -707,22 +707,28 @@ export class TokensProcessorQueue { /** The entries currently queued for processing in memory, keyed by the queue entry db id. */ readonly queuedEntries: Map = new Map(); + readonly onTokenMetadataUpdateQueued: (entry: DbTokenMetadataQueueEntry) => void; + constructor(db: DataStore, chainId: ChainID) { this.db = db; this.chainId = chainId; this.queue = new PQueue({ concurrency: TOKEN_METADATA_PARSING_CONCURRENCY_LIMIT }); - this.db.on('tokenMetadataUpdateQueued', entry => { - // Only add to queue if it's not already backed up. - // if (this.queue.size < this.queue.concurrency && this.queue.pending < this.queue.concurrency) { - if (this.queuedEntries.size < this.queue.concurrency) { - this.queueHandler(entry); - } - }); + this.onTokenMetadataUpdateQueued = entry => this.queueHandler(entry); + this.db.on('tokenMetadataUpdateQueued', this.onTokenMetadataUpdateQueued); + } + + close() { + this.db.off('tokenMetadataUpdateQueued', this.onTokenMetadataUpdateQueued); + this.queue.pause(); + this.queue.clear(); } async drainDbQueue(): Promise { let entries: DbTokenMetadataQueueEntry[] = []; do { + if (this.queue.isPaused) { + return; + } const queuedEntries = [...this.queuedEntries.keys()]; entries = await this.db.getTokenMetadataQueue( TOKEN_METADATA_PARSING_CONCURRENCY_LIMIT, @@ -737,6 +743,9 @@ export class TokensProcessorQueue { } async checkDbQueue(): Promise { + if (this.queue.isPaused) { + return; + } const queuedEntries = [...this.queuedEntries.keys()]; const limit = TOKEN_METADATA_PARSING_CONCURRENCY_LIMIT - this.queuedEntries.size; if (limit > 0) { diff --git a/src/index.ts b/src/index.ts index 77d132ab39..99db783dfd 100644 --- a/src/index.ts +++ b/src/index.ts @@ -138,8 +138,12 @@ async function init(): Promise { logger.error(`Error monitoring RPC connection: ${error}`, error); }); - // TODO: register an exit-handler for the tokenProcessorQueue instance const tokenMetadataProcessor = new TokensProcessorQueue(db, configuredChainID); + registerShutdownConfig({ + name: 'Token Metadata Processor', + handler: () => tokenMetadataProcessor.close(), + forceKillable: true, + }); // check if db has any non-processed token queues and await them all here await tokenMetadataProcessor.drainDbQueue(); } From 7a58c7a43485c2cb7eb0961eff650cf92ef3a0fa Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Fri, 20 Aug 2021 10:05:27 -0600 Subject: [PATCH 41/44] chore: cleanup token json schema examples --- .../get-fungible-tokens-metadata-list.example.schema.json | 4 +++- .../get-non-fungible-tokens-metadata-list.example.schema.json | 4 +++- docs/entities/tokens/fungible-token.schema.example.json | 4 +++- docs/entities/tokens/non-fungible-token.schema.example.json | 2 -- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/docs/api/tokens/get-fungible-tokens-metadata-list.example.schema.json b/docs/api/tokens/get-fungible-tokens-metadata-list.example.schema.json index 3d914c70b8..d0f0c1ea4c 100644 --- a/docs/api/tokens/get-fungible-tokens-metadata-list.example.schema.json +++ b/docs/api/tokens/get-fungible-tokens-metadata-list.example.schema.json @@ -9,7 +9,9 @@ "description": "Heystack is a SIP-010-compliant fungible token on the Stacks Blockchain, used on the Heystack app", "image_uri": "https://heystack.xyz/assets/Stacks128w.png", "image_canonical_uri": "https://heystack.xyz/assets/Stacks128w.png", - "symbol": "stx", + "tx_id": "0xef2ac1126e16f46843228b1dk4830e19eb7599129e4jf392cab9e65ae83a45c0", + "sender_address": "ST399W7Z9WS0GMSNQGJGME5JAENKN56D65VGMGKGA", + "symbol": "HEY", "decimals": 5 } ] diff --git a/docs/api/tokens/get-non-fungible-tokens-metadata-list.example.schema.json b/docs/api/tokens/get-non-fungible-tokens-metadata-list.example.schema.json index d803a2a647..4130b33a76 100644 --- a/docs/api/tokens/get-non-fungible-tokens-metadata-list.example.schema.json +++ b/docs/api/tokens/get-non-fungible-tokens-metadata-list.example.schema.json @@ -8,7 +8,9 @@ "name": "Friedger Pool", "description": "Enjoying the stacking pool.", "image_uri": "https://pool.friedger.de/nft.webp", - "image_canonical_uri": "https://pool.friedger.de/nft.webp" + "image_canonical_uri": "https://pool.friedger.de/nft.webp", + "tx_id": "0xef2ac1126e16f46843228b1dk4830e19eb7599129e4jf392cab9e65ae83a45c0", + "sender_address": "ST399W7Z9WS0GMSNQGJGME5JAENKN56D65VGMGKGA" } ] } diff --git a/docs/entities/tokens/fungible-token.schema.example.json b/docs/entities/tokens/fungible-token.schema.example.json index ebe0e53d01..cffa6ab3a0 100644 --- a/docs/entities/tokens/fungible-token.schema.example.json +++ b/docs/entities/tokens/fungible-token.schema.example.json @@ -5,5 +5,7 @@ "image_uri": "https://heystack.xyz/assets/Stacks128w.png", "image_canonical_uri": "https://heystack.xyz/assets/Stacks128w.png", "tx_id": "0xef2ac1126e16f46843228b1dk4830e19eb7599129e4jf392cab9e65ae83a45c0", - "sender_address": "ST399W7Z9WS0GMSNQGJGME5JAENKN56D65VGMGKGA" + "sender_address": "ST399W7Z9WS0GMSNQGJGME5JAENKN56D65VGMGKGA", + "symbol": "HEY", + "decimals": 5 } diff --git a/docs/entities/tokens/non-fungible-token.schema.example.json b/docs/entities/tokens/non-fungible-token.schema.example.json index 015d0a093b..57f9613e1c 100644 --- a/docs/entities/tokens/non-fungible-token.schema.example.json +++ b/docs/entities/tokens/non-fungible-token.schema.example.json @@ -4,8 +4,6 @@ "description": "Enjoying the stacking pool.", "image_uri": "https://pool.friedger.de/nft.webp", "image_canonical_uri": "https://pool.friedger.de/nft.webp", - "symbol": "stx", - "decimals": 5, "tx_id": "0xef2ac1126e16f46843228b1dk4830e19eb7599129e4jf392cab9e65ae83a45c0", "sender_address": "ST399W7Z9WS0GMSNQGJGME5JAENKN56D65VGMGKGA" } From b9b598437c0f1585091ef5cd5be158c0cb1806d3 Mon Sep 17 00:00:00 2001 From: Matthew Little Date: Fri, 20 Aug 2021 10:22:29 -0600 Subject: [PATCH 42/44] chore: cleanup unused imports --- src/event-stream/event-server.ts | 6 +----- src/tests/setup.ts | 1 - 2 files changed, 1 insertion(+), 6 deletions(-) diff --git a/src/event-stream/event-server.ts b/src/event-stream/event-server.ts index 401cec31a2..2307ed65d0 100644 --- a/src/event-stream/event-server.ts +++ b/src/event-stream/event-server.ts @@ -78,11 +78,6 @@ import { } from '../bns-constants'; import * as zoneFileParser from 'zone-file'; -import { - isCompliantToken, - TokensContractHandler, - TokensProcessorQueue, -} from './tokens-contract-handler'; async function handleRawEventRequest( eventPath: string, @@ -298,6 +293,7 @@ async function handleBlockMessage( }; return microblock; }); + const dbData: DataStoreBlockUpdateData = { block: dbBlock, microblocks: dbMicroblocks, diff --git a/src/tests/setup.ts b/src/tests/setup.ts index fbb8b0d0d2..d3987c542f 100644 --- a/src/tests/setup.ts +++ b/src/tests/setup.ts @@ -4,7 +4,6 @@ import { MemoryDataStore } from '../datastore/memory-store'; import { startEventServer } from '../event-stream/event-server'; import { StacksCoreRpcClient } from '../core-rpc/client'; import { ChainID } from '@stacks/transactions'; -import { TokensProcessorQueue } from '../event-stream/tokens-contract-handler'; export default async (): Promise => { console.log('Jest - setup..'); From 2515bcfbdff30cf835d61ff50385ec5d11a59c2f Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Tue, 24 Aug 2021 18:42:09 +0500 Subject: [PATCH 43/44] feat: handle re-org for ft and nft metadata --- .../tokens/fungible-token.schema.example.json | 4 +- .../tokens/fungible-token.schema.json | 12 +- .../non-fungible-token.schema.example.json | 4 +- .../tokens/non-fungible-token.schema.json | 12 +- docs/generated.d.ts | 23 ++- src/api/routes/tokens/tokens.ts | 45 +----- src/datastore/common.ts | 30 +++- src/datastore/postgres-store.ts | 141 ++++++++++++++---- src/event-stream/tokens-contract-handler.ts | 31 +++- .../1621511823100_token-metadata-queue.ts | 23 ++- src/migrations/1621511823381_nft-metadata.ts | 25 +++- src/migrations/1621511832113_ft-metadata.ts | 25 +++- src/tests-tokens/tokens-metadata-tests.ts | 10 ++ src/tests/datastore-tests.ts | 22 ++- 14 files changed, 320 insertions(+), 87 deletions(-) diff --git a/docs/entities/tokens/fungible-token.schema.example.json b/docs/entities/tokens/fungible-token.schema.example.json index cffa6ab3a0..8aade14433 100644 --- a/docs/entities/tokens/fungible-token.schema.example.json +++ b/docs/entities/tokens/fungible-token.schema.example.json @@ -7,5 +7,7 @@ "tx_id": "0xef2ac1126e16f46843228b1dk4830e19eb7599129e4jf392cab9e65ae83a45c0", "sender_address": "ST399W7Z9WS0GMSNQGJGME5JAENKN56D65VGMGKGA", "symbol": "HEY", - "decimals": 5 + "decimals": 5, + "microblock_hash": "0x", + "microblock_sequence": "-1" } diff --git a/docs/entities/tokens/fungible-token.schema.json b/docs/entities/tokens/fungible-token.schema.json index 32aca641fa..767639d056 100644 --- a/docs/entities/tokens/fungible-token.schema.json +++ b/docs/entities/tokens/fungible-token.schema.json @@ -13,7 +13,9 @@ "symbol", "decimals", "tx_id", - "sender_address" + "sender_address", + "microblock_hash", + "microblock_sequence" ], "properties": { "token_uri": { @@ -51,6 +53,14 @@ "sender_address": { "type": "string", "description": "principle that deployed the contract" + }, + "microblock_hash": { + "type": "string", + "description": "The microblock hash that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be an empty string." + }, + "microblock_sequence": { + "type": "integer", + "description": "The microblock sequence number that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be 2147483647 (0x7fffffff, the max int32 value), this value preserves logical transaction ordering on (block_height, microblock_sequence, tx_index)." } } } diff --git a/docs/entities/tokens/non-fungible-token.schema.example.json b/docs/entities/tokens/non-fungible-token.schema.example.json index 57f9613e1c..cf00c0ab76 100644 --- a/docs/entities/tokens/non-fungible-token.schema.example.json +++ b/docs/entities/tokens/non-fungible-token.schema.example.json @@ -5,5 +5,7 @@ "image_uri": "https://pool.friedger.de/nft.webp", "image_canonical_uri": "https://pool.friedger.de/nft.webp", "tx_id": "0xef2ac1126e16f46843228b1dk4830e19eb7599129e4jf392cab9e65ae83a45c0", - "sender_address": "ST399W7Z9WS0GMSNQGJGME5JAENKN56D65VGMGKGA" + "sender_address": "ST399W7Z9WS0GMSNQGJGME5JAENKN56D65VGMGKGA", + "microblock_hash": "0x", + "microblock_sequence": "-1" } diff --git a/docs/entities/tokens/non-fungible-token.schema.json b/docs/entities/tokens/non-fungible-token.schema.json index bc2801b889..812be3e542 100644 --- a/docs/entities/tokens/non-fungible-token.schema.json +++ b/docs/entities/tokens/non-fungible-token.schema.json @@ -11,7 +11,9 @@ "image_uri", "image_canonical_uri", "tx_id", - "sender_address" + "sender_address", + "microblock_hash", + "microblock_sequence" ], "properties": { "token_uri": { @@ -41,6 +43,14 @@ "sender_address": { "type": "string", "description": "principle that deployed the contract" + }, + "microblock_hash": { + "type": "string", + "description": "The microblock hash that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be an empty string." + }, + "microblock_sequence": { + "type": "integer", + "description": "The microblock sequence number that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be 2147483647 (0x7fffffff, the max int32 value), this value preserves logical transaction ordering on (block_height, microblock_sequence, tx_index)." } } } diff --git a/docs/generated.d.ts b/docs/generated.d.ts index f07a8ee95f..3468d3f3d3 100644 --- a/docs/generated.d.ts +++ b/docs/generated.d.ts @@ -248,6 +248,7 @@ export type TransactionEventSmartContractLog = { [k: string]: unknown | undefined; } & { event_type: "smart_contract_log"; + tx_id: string; contract_log: { contract_id: string; topic: string; @@ -266,6 +267,7 @@ export type TransactionEventStxLock = { [k: string]: unknown | undefined; } & { event_type: "stx_lock"; + tx_id: string; stx_lock_event: { locked_amount: string; unlock_height: number; @@ -281,6 +283,7 @@ export type TransactionEventStxAsset = { [k: string]: unknown | undefined; } & { event_type: "stx_asset"; + tx_id: string; asset: TransactionEventAsset; [k: string]: unknown | undefined; }; @@ -290,6 +293,7 @@ export type TransactionEventFungibleAsset = { [k: string]: unknown | undefined; } & { event_type: "fungible_token_asset"; + tx_id: string; asset: { asset_event_type: string; asset_id: string; @@ -304,6 +308,7 @@ export type TransactionEventNonFungibleAsset = { [k: string]: unknown | undefined; } & { event_type: "non_fungible_token_asset"; + tx_id: string; asset: { asset_event_type: string; asset_id: string; @@ -2025,7 +2030,7 @@ export interface OtherTransactionIdentifier { */ export interface RosettaBlockTransactionRequest { network_identifier: NetworkIdentifier; - block_identifier: RosettaBlockIdentifier; + block_identifier: RosettaPartialBlockIdentifier; transaction_identifier: TransactionIdentifier; } /** @@ -2733,6 +2738,14 @@ export interface FungibleTokenMetadata { * principle that deployed the contract */ sender_address: string; + /** + * The microblock hash that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be an empty string. + */ + microblock_hash: string; + /** + * The microblock sequence number that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be 2147483647 (0x7fffffff, the max int32 value), this value preserves logical transaction ordering on (block_height, microblock_sequence, tx_index). + */ + microblock_sequence: number; } /** * List of non fungible tokens metadata @@ -2782,6 +2795,14 @@ export interface NonFungibleTokenMetadata { * principle that deployed the contract */ sender_address: string; + /** + * The microblock hash that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be an empty string. + */ + microblock_hash: string; + /** + * The microblock sequence number that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be 2147483647 (0x7fffffff, the max int32 value), this value preserves logical transaction ordering on (block_height, microblock_sequence, tx_index). + */ + microblock_sequence: number; } /** * GET request that returns transactions diff --git a/src/api/routes/tokens/tokens.ts b/src/api/routes/tokens/tokens.ts index 076e4bd4c2..81d862f562 100644 --- a/src/api/routes/tokens/tokens.ts +++ b/src/api/routes/tokens/tokens.ts @@ -61,29 +61,7 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { return; } - const { - token_uri, - name, - description, - image_uri, - image_canonical_uri, - symbol, - decimals, - tx_id, - sender_address, - } = metadata.result; - - const response: FungibleTokenMetadata = { - token_uri: token_uri, - name: name, - description: description, - image_uri: image_uri, - image_canonical_uri: image_canonical_uri, - symbol: symbol, - decimals: decimals, - tx_id: tx_id, - sender_address: sender_address, - }; + const response: FungibleTokenMetadata = metadata.result; res.status(200).json(response); }); @@ -96,25 +74,8 @@ export function createTokenRouter(db: DataStore): RouterWithAsync { res.status(404).json({ error: 'tokens not found' }); return; } - const { - token_uri, - name, - description, - image_uri, - image_canonical_uri, - tx_id, - sender_address, - } = metadata.result; - - const response: NonFungibleTokenMetadata = { - token_uri: token_uri, - name: name, - description: description, - image_uri: image_uri, - image_canonical_uri: image_canonical_uri, - tx_id: tx_id, - sender_address: sender_address, - }; + + const response: NonFungibleTokenMetadata = metadata.result; res.status(200).json(response); }); diff --git a/src/datastore/common.ts b/src/datastore/common.ts index 2700731a29..9108286b9b 100644 --- a/src/datastore/common.ts +++ b/src/datastore/common.ts @@ -14,7 +14,12 @@ import { Transaction, } from '../p2p/tx'; import { c32address } from 'c32check'; -import { AddressTokenOfferingLocked, TransactionType } from '@stacks/stacks-blockchain-api-types'; +import { + AddressTokenOfferingLocked, + FungibleTokenMetadata, + NonFungibleTokenMetadata, + TransactionType, +} from '@stacks/stacks-blockchain-api-types'; import { getTxSenderAddress } from '../event-stream/reader'; import { RawTxQueryResult } from './postgres-store'; import { ClarityAbi } from '@stacks/transactions'; @@ -517,6 +522,11 @@ export interface DbNonFungibleTokenMetadata { contract_id: string; tx_id: string; sender_address: string; + canonical: boolean; + index_block_hash: string; + microblock_hash: string; + microblock_sequence: number; + microblock_canonical: boolean; } export interface DbFungibleTokenMetadata { @@ -530,6 +540,11 @@ export interface DbFungibleTokenMetadata { decimals: number; tx_id: string; sender_address: string; + canonical: boolean; + index_block_hash: string; + microblock_hash: string; + microblock_sequence: number; + microblock_canonical: boolean; } export interface DbTokenMetadataQueueEntry { @@ -539,6 +554,11 @@ export interface DbTokenMetadataQueueEntry { contractAbi: ClarityAbi; blockHeight: number; processed: boolean; + index_block_hash: string; + microblock_hash: string; + microblock_sequence: number; + canonical: boolean; + microblock_canonical: boolean; } export interface DataStore extends DataStoreEventEmitter { @@ -802,8 +822,8 @@ export interface DataStore extends DataStoreEventEmitter { ): Promise>; getUnlockedAddressesAtBlock(block: DbBlock): Promise; - getFtMetadata(contractId: string): Promise>; - getNftMetadata(contractId: string): Promise>; + getFtMetadata(contractId: string): Promise>; + getNftMetadata(contractId: string): Promise>; updateNFtMetadata(nftMetadata: DbNonFungibleTokenMetadata, dbQueueId: number): Promise; updateFtMetadata(ftMetadata: DbFungibleTokenMetadata, dbQueueId: number): Promise; @@ -811,11 +831,11 @@ export interface DataStore extends DataStoreEventEmitter { getFtMetadataList(args: { limit: number; offset: number; - }): Promise<{ results: DbFungibleTokenMetadata[]; total: number }>; + }): Promise<{ results: FungibleTokenMetadata[]; total: number }>; getNftMetadataList(args: { limit: number; offset: number; - }): Promise<{ results: DbNonFungibleTokenMetadata[]; total: number }>; + }): Promise<{ results: NonFungibleTokenMetadata[]; total: number }>; getTokenMetadataQueue( limit: number, diff --git a/src/datastore/postgres-store.ts b/src/datastore/postgres-store.ts index afa80b716d..2a5cb117aa 100644 --- a/src/datastore/postgres-store.ts +++ b/src/datastore/postgres-store.ts @@ -67,7 +67,6 @@ import { DbTxAnchorMode, DbGetBlockWithMetadataOpts, DbGetBlockWithMetadataResponse, - DbMicroblockPartial, DataStoreTxEventData, DbRawEventRequest, BlockIdentifier, @@ -80,6 +79,8 @@ import { AddressTokenOfferingLocked, TransactionType, AddressUnlockSchedule, + FungibleTokenMetadata, + NonFungibleTokenMetadata, } from '@stacks/stacks-blockchain-api-types'; import { getTxTypeId } from '../api/controllers/db-controller'; import { isCompliantToken } from '../event-stream/tokens-contract-handler'; @@ -444,6 +445,8 @@ interface UpdatedEntities { names: number; namespaces: number; subdomains: number; + ftMetadata: number; + nftMetadata: number; }; markedNonCanonical: { blocks: number; @@ -459,6 +462,8 @@ interface UpdatedEntities { names: number; namespaces: number; subdomains: number; + ftMetadata: number; + nftMetadata: number; }; } @@ -481,6 +486,8 @@ interface NonFungibleTokenMetadataQueryResult { contract_id: string; tx_id: Buffer; sender_address: string; + microblock_hash: Buffer; + microblock_sequence: number; } interface FungibleTokenMetadataQueryResult { @@ -494,6 +501,8 @@ interface FungibleTokenMetadataQueryResult { decimals: number; tx_id: Buffer; sender_address: string; + microblock_hash: Buffer; + microblock_sequence: number; } interface DbTokenMetadataQueueEntryQuery { @@ -503,6 +512,11 @@ interface DbTokenMetadataQueueEntryQuery { contract_abi: string; block_height: number; processed: boolean; + index_block_hash: Buffer; + microblock_hash: Buffer; + microblock_sequence: number; + canonical: boolean; + microblock_canonical: boolean; } export interface RawTxQueryResult { @@ -523,6 +537,8 @@ const TX_METADATA_TABLES = [ 'names', 'namespaces', 'subdomains', + 'ft_metadata', + 'nft_metadata', ] as const; function getSqlQueryString(query: QueryConfig | string): string { @@ -1066,6 +1082,11 @@ export class PgDataStore contractAbi: contractAbi, blockHeight: entry.tx.block_height, processed: false, + index_block_hash: entry.tx.index_block_hash, + microblock_hash: entry.tx.microblock_hash, + microblock_sequence: entry.tx.microblock_sequence, + canonical: entry.tx.canonical, + microblock_canonical: entry.tx.microblock_canonical, }; return queueEntry; }) @@ -1904,6 +1925,34 @@ export class PgDataStore updatedEntities.markedNonCanonical.subdomains += subdomainResult.rowCount; } + const ftMetadataResult = await client.query( + ` + UPDATE ft_metadata + SET canonical = $2 + WHERE index_block_hash = $1 AND canonical != $2 + `, + [indexBlockHash, canonical] + ); + if (canonical) { + updatedEntities.markedCanonical.ftMetadata += ftMetadataResult.rowCount; + } else { + updatedEntities.markedNonCanonical.ftMetadata += ftMetadataResult.rowCount; + } + + const nft_metadata = await client.query( + ` + UPDATE nft_metadata + SET canonical = $2 + WHERE index_block_hash = $1 AND canonical != $2 + `, + [indexBlockHash, canonical] + ); + if (canonical) { + updatedEntities.markedCanonical.nftMetadata += nft_metadata.rowCount; + } else { + updatedEntities.markedNonCanonical.nftMetadata += nft_metadata.rowCount; + } + return { txsMarkedCanonical: canonical ? txIds.map(t => t.tx_id) : [], txsMarkedNonCanonical: canonical ? [] : txIds.map(t => t.tx_id), @@ -2041,6 +2090,8 @@ export class PgDataStore names: 0, namespaces: 0, subdomains: 0, + ftMetadata: 0, + nftMetadata: 0, }, markedNonCanonical: { blocks: 0, @@ -2056,6 +2107,8 @@ export class PgDataStore names: 0, namespaces: 0, subdomains: 0, + ftMetadata: 0, + nftMetadata: 0, }, }; @@ -3935,6 +3988,11 @@ export class PgDataStore contractAbi: JSON.parse(row.contract_abi), blockHeight: row.block_height, processed: row.processed, + index_block_hash: bufferToHexPrefixString(row.index_block_hash), + microblock_hash: bufferToHexPrefixString(row.microblock_hash), + microblock_sequence: row.microblock_sequence, + canonical: row.canonical, + microblock_canonical: row.microblock_canonical, }; return entry; }); @@ -3948,14 +4006,19 @@ export class PgDataStore const queryResult = await client.query<{ queue_id: number }>( ` INSERT INTO token_metadata_queue( - tx_id, contract_id, contract_abi, block_height, processed - ) values($1, $2, $3, $4, $5) + tx_id, contract_id, contract_abi, canonical, index_block_hash, microblock_hash, microblock_sequence, microblock_canonical, block_height, processed + ) values($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) RETURNING queue_id `, [ hexToBuffer(entry.txId), entry.contractId, JSON.stringify(entry.contractAbi), + entry.canonical, + entry.index_block_hash, + hexToBuffer(entry.microblock_hash), + entry.microblock_sequence, + entry.microblock_canonical, entry.blockHeight, false, ] @@ -5802,19 +5865,19 @@ export class PgDataStore return { found: false }; }); } - async getFtMetadata(contractId: string): Promise> { + async getFtMetadata(contractId: string): Promise> { return this.query(async client => { const queryResult = await client.query( ` - SELECT token_uri, name, description, image_uri, image_canonical_uri, symbol, decimals, contract_id, tx_id, sender_address + SELECT token_uri, name, description, image_uri, image_canonical_uri, symbol, decimals, contract_id, tx_id, sender_address, microblock_hash, microblock_sequence FROM ft_metadata - WHERE contract_id = $1 + WHERE contract_id = $1 AND canonical = true AND microblock_canonical = true LIMIT 1 `, [contractId] ); if (queryResult.rowCount > 0) { - const metadata: DbFungibleTokenMetadata = { + const metadata: FungibleTokenMetadata = { token_uri: queryResult.rows[0].token_uri, name: queryResult.rows[0].name, description: queryResult.rows[0].description, @@ -5822,9 +5885,10 @@ export class PgDataStore image_canonical_uri: queryResult.rows[0].image_canonical_uri, symbol: queryResult.rows[0].symbol, decimals: queryResult.rows[0].decimals, - contract_id: queryResult.rows[0].contract_id, tx_id: bufferToHexPrefixString(queryResult.rows[0].tx_id), sender_address: queryResult.rows[0].sender_address, + microblock_hash: bufferToHexPrefixString(queryResult.rows[0].microblock_hash), + microblock_sequence: queryResult.rows[0].microblock_sequence, }; return { found: true, @@ -5836,27 +5900,28 @@ export class PgDataStore }); } - async getNftMetadata(contractId: string): Promise> { + async getNftMetadata(contractId: string): Promise> { return this.query(async client => { const queryResult = await client.query( ` - SELECT token_uri, name, description, image_uri, image_canonical_uri, contract_id, tx_id, sender_address + SELECT token_uri, name, description, image_uri, image_canonical_uri, contract_id, tx_id, sender_address, microblock_hash, microblock_sequence FROM nft_metadata - WHERE contract_id = $1 + WHERE contract_id = $1 AND canonical = true AND microblock_canonical = true LIMIT 1 `, [contractId] ); if (queryResult.rowCount > 0) { - const metadata: DbNonFungibleTokenMetadata = { + const metadata: NonFungibleTokenMetadata = { token_uri: queryResult.rows[0].token_uri, name: queryResult.rows[0].name, description: queryResult.rows[0].description, image_uri: queryResult.rows[0].image_uri, image_canonical_uri: queryResult.rows[0].image_canonical_uri, - contract_id: queryResult.rows[0].contract_id, tx_id: bufferToHexPrefixString(queryResult.rows[0].tx_id), sender_address: queryResult.rows[0].sender_address, + microblock_hash: bufferToHexPrefixString(queryResult.rows[0].microblock_hash), + microblock_sequence: queryResult.rows[0].microblock_sequence, }; return { found: true, @@ -5880,15 +5945,20 @@ export class PgDataStore decimals, tx_id, sender_address, + canonical, + microblock_canonical, + microblock_hash, + microblock_sequence, + index_block_hash, } = ftMetadata; const rowCount = await this.queryTx(async client => { const result = await client.query( ` INSERT INTO ft_metadata( - token_uri, name, description, image_uri, image_canonical_uri, contract_id, symbol, decimals, tx_id, sender_address - ) values($1, $2, $3, $4, $5, $6, $7, $8, $9, $10) - `, + token_uri, name, description, image_uri, image_canonical_uri, contract_id, symbol, decimals, tx_id, sender_address, canonical, microblock_canonical, microblock_hash, microblock_sequence, index_block_hash + ) values($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13, $14, $15) +`, [ token_uri, name, @@ -5900,6 +5970,11 @@ export class PgDataStore decimals, hexToBuffer(tx_id), sender_address, + canonical, + microblock_canonical, + hexToBuffer(microblock_hash), + microblock_sequence, + hexToBuffer(index_block_hash), ] ); await client.query( @@ -5929,14 +6004,19 @@ export class PgDataStore contract_id, tx_id, sender_address, + canonical, + microblock_canonical, + microblock_hash, + microblock_sequence, + index_block_hash, } = nftMetadata; const rowCount = await this.queryTx(async client => { const result = await client.query( ` INSERT INTO nft_metadata( - token_uri, name, description, image_uri, image_canonical_uri, contract_id, tx_id, sender_address - ) values($1, $2, $3, $4, $5, $6, $7, $8) - `, + token_uri, name, description, image_uri, image_canonical_uri, contract_id, tx_id, sender_address, canonical, microblock_canonical, microblock_hash, microblock_sequence, index_block_hash + ) values($1, $2, $3, $4, $5, $6, $7, $8, $9, $10, $11, $12, $13) + `, [ token_uri, name, @@ -5946,6 +6026,11 @@ export class PgDataStore contract_id, hexToBuffer(tx_id), sender_address, + canonical, + microblock_canonical, + hexToBuffer(microblock_hash), + microblock_sequence, + hexToBuffer(index_block_hash), ] ); await client.query( @@ -5968,25 +6053,27 @@ export class PgDataStore }: { limit: number; offset: number; - }): Promise<{ results: DbFungibleTokenMetadata[]; total: number }> { + }): Promise<{ results: FungibleTokenMetadata[]; total: number }> { return this.queryTx(async client => { const totalQuery = await client.query<{ count: number }>( ` SELECT COUNT(*)::integer FROM ft_metadata + WHERE canonical = true AND microblock_canonical = true ` ); const resultQuery = await client.query( ` SELECT * FROM ft_metadata + WHERE canonical = true AND microblock_canonical = true LIMIT $1 OFFSET $2 `, [limit, offset] ); const parsed = resultQuery.rows.map(r => { - const metadata: DbFungibleTokenMetadata = { + const metadata: FungibleTokenMetadata = { name: r.name, description: r.description, token_uri: r.token_uri, @@ -5994,9 +6081,10 @@ export class PgDataStore image_canonical_uri: r.image_canonical_uri, decimals: r.decimals, symbol: r.symbol, - contract_id: r.contract_id, tx_id: bufferToHexPrefixString(r.tx_id), sender_address: r.sender_address, + microblock_hash: bufferToHexPrefixString(r.microblock_hash), + microblock_sequence: r.microblock_sequence, }; return metadata; }); @@ -6010,33 +6098,36 @@ export class PgDataStore }: { limit: number; offset: number; - }): Promise<{ results: DbNonFungibleTokenMetadata[]; total: number }> { + }): Promise<{ results: NonFungibleTokenMetadata[]; total: number }> { return this.queryTx(async client => { const totalQuery = await client.query<{ count: number }>( ` SELECT COUNT(*)::integer FROM nft_metadata + WHERE canonical = true AND microblock_canonical = true ` ); const resultQuery = await client.query( ` SELECT * FROM nft_metadata + WHERE canonical = true AND microblock_canonical = true LIMIT $1 OFFSET $2 `, [limit, offset] ); const parsed = resultQuery.rows.map(r => { - const metadata: DbNonFungibleTokenMetadata = { + const metadata: NonFungibleTokenMetadata = { name: r.name, description: r.description, token_uri: r.token_uri, image_uri: r.image_uri, image_canonical_uri: r.image_canonical_uri, - contract_id: r.contract_id, tx_id: bufferToHexPrefixString(r.tx_id), sender_address: r.sender_address, + microblock_hash: bufferToHexPrefixString(r.microblock_hash), + microblock_sequence: r.microblock_sequence, }; return metadata; }); diff --git a/src/event-stream/tokens-contract-handler.ts b/src/event-stream/tokens-contract-handler.ts index 228e04e8c9..6b41753386 100644 --- a/src/event-stream/tokens-contract-handler.ts +++ b/src/event-stream/tokens-contract-handler.ts @@ -193,6 +193,11 @@ export interface TokenHandlerArgs { chainId: ChainID; txId: string; dbQueueId: number; + canonical: boolean; + index_block_hash: string; + microblock_hash: string | null; + microblock_sequence: number | null; + microblock_canonical: boolean; } export function isCompliantToken(abi: ClarityAbi): boolean { @@ -258,6 +263,11 @@ export class TokensContractHandler { private readonly stacksNetwork: StacksNetwork; private readonly address: string; private readonly tokenKind: 'ft' | 'nft'; + private readonly microblockHash: string | null; + private readonly miroblockSequence: number | null; + private readonly microblockCanonical: boolean; + private readonly canonical: boolean; + private readonly index_block_hash: string; constructor(args: TokenHandlerArgs) { [this.contractAddress, this.contractName] = args.contractId.split('.'); @@ -267,6 +277,11 @@ export class TokensContractHandler { this.chainId = args.chainId; this.txId = args.txId; this.dbQueueId = args.dbQueueId; + this.microblockHash = args.microblock_hash; + this.miroblockSequence = args.microblock_sequence; + this.index_block_hash = args.index_block_hash; + this.canonical = args.canonical; + this.microblockCanonical = args.microblock_canonical; this.stacksNetwork = GetStacksNetwork(this.chainId); this.address = getAddressFromPrivateKey( @@ -400,8 +415,12 @@ export class TokensContractHandler { contract_id: this.contractId, tx_id: this.txId, sender_address: this.contractAddress, + canonical: this.canonical, + microblock_canonical: this.microblockCanonical, + microblock_hash: this.microblockHash ?? '0x', + microblock_sequence: this.miroblockSequence ?? 0, + index_block_hash: this.index_block_hash, }; - //store metadata in db await this.storeFtMetadata(fungibleTokenMetadata); } @@ -465,6 +484,11 @@ export class TokensContractHandler { contract_id: `${this.contractId}`, tx_id: this.txId, sender_address: this.contractAddress, + canonical: this.canonical, + microblock_canonical: this.microblockCanonical, + microblock_hash: this.microblockHash ?? '0x', + microblock_sequence: this.miroblockSequence ?? 0, + index_block_hash: this.index_block_hash, }; await this.storeNftMetadata(nonFungibleTokenMetadata); } @@ -778,6 +802,11 @@ export class TokensProcessorQueue { chainId: this.chainId, txId: queueEntry.txId, dbQueueId: queueEntry.queueId, + microblock_hash: queueEntry.microblock_hash, + microblock_sequence: queueEntry.microblock_sequence, + index_block_hash: queueEntry.index_block_hash, + canonical: queueEntry.canonical, + microblock_canonical: queueEntry.microblock_canonical, }); void this.queue diff --git a/src/migrations/1621511823100_token-metadata-queue.ts b/src/migrations/1621511823100_token-metadata-queue.ts index a79247102c..e490daf1d6 100644 --- a/src/migrations/1621511823100_token-metadata-queue.ts +++ b/src/migrations/1621511823100_token-metadata-queue.ts @@ -28,7 +28,28 @@ export async function up(pgm: MigrationBuilder): Promise { processed: { type: 'boolean', notNull: true, - } + }, + index_block_hash: { + type: 'bytea', + notNull: false + }, + canonical: { + type: 'boolean', + notNull: true, + default: true + }, + microblock_hash: { + type: 'bytea', + notNull: true, + }, + microblock_sequence: { + type: 'integer', + notNull: true, + }, + microblock_canonical: { + type: 'boolean', + notNull: true, + }, }); pgm.createIndex('token_metadata_queue', 'block_height'); diff --git a/src/migrations/1621511823381_nft-metadata.ts b/src/migrations/1621511823381_nft-metadata.ts index 5038d812a2..e5bf7b3b7b 100644 --- a/src/migrations/1621511823381_nft-metadata.ts +++ b/src/migrations/1621511823381_nft-metadata.ts @@ -40,8 +40,29 @@ export async function up(pgm: MigrationBuilder): Promise { sender_address: { type: 'string', notNull: true, - } - }); + }, + index_block_hash: { + type: 'bytea', + notNull: false + }, + canonical: { + type: 'boolean', + notNull: true, + default: true + }, + microblock_hash: { + type: 'bytea', + notNull: true, + }, + microblock_sequence: { + type: 'integer', + notNull: true, + }, + microblock_canonical: { + type: 'boolean', + notNull: true, + }, + }); pgm.createIndex('nft_metadata', 'name'); pgm.createIndex('nft_metadata', 'contract_id'); diff --git a/src/migrations/1621511832113_ft-metadata.ts b/src/migrations/1621511832113_ft-metadata.ts index 0358fa752b..1d93f42dfe 100644 --- a/src/migrations/1621511832113_ft-metadata.ts +++ b/src/migrations/1621511832113_ft-metadata.ts @@ -48,8 +48,29 @@ export async function up(pgm: MigrationBuilder): Promise { sender_address: { type: 'string', notNull: true, - } - }); + }, + index_block_hash: { + type: 'bytea', + notNull: false + }, + canonical: { + type: 'boolean', + notNull: true, + default: true + }, + microblock_hash: { + type: 'bytea', + notNull: true, + }, + microblock_sequence: { + type: 'integer', + notNull: true, + }, + microblock_canonical: { + type: 'boolean', + notNull: true, + }, + }); pgm.createIndex('ft_metadata', 'name'); pgm.createIndex('ft_metadata', 'symbol'); diff --git a/src/tests-tokens/tokens-metadata-tests.ts b/src/tests-tokens/tokens-metadata-tests.ts index 51c9e5fdb7..51f2d360d7 100644 --- a/src/tests-tokens/tokens-metadata-tests.ts +++ b/src/tests-tokens/tokens-metadata-tests.ts @@ -281,6 +281,11 @@ describe('api tests', () => { contract_id: 'ABCDEFGHIJ.ft-metadata', tx_id: '0x123456', sender_address: 'ABCDEFGHIJ', + canonical: true, + microblock_canonical: true, + microblock_sequence: -1, + microblock_hash: '0x', + index_block_hash: '0x1234567890abcdef', }; await db.updateFtMetadata(ftMetadata, 0); } @@ -313,6 +318,11 @@ describe('api tests', () => { contract_id: 'ABCDEFGHIJ.nft-metadata' + i, tx_id: '0x12345678', sender_address: 'ABCDEFGHIJ', + canonical: true, + microblock_canonical: true, + microblock_sequence: -1, + microblock_hash: '0x', + index_block_hash: '0x1234567890abcdef', }; await db.updateNFtMetadata(nftMetadata, 0); diff --git a/src/tests/datastore-tests.ts b/src/tests/datastore-tests.ts index f23429412c..ecc3fa9a69 100644 --- a/src/tests/datastore-tests.ts +++ b/src/tests/datastore-tests.ts @@ -3030,6 +3030,8 @@ describe('postgres datastore', () => { names: 0, namespaces: 0, subdomains: 0, + ftMetadata: 0, + nftMetadata: 0, }, markedNonCanonical: { blocks: 1, @@ -3045,6 +3047,8 @@ describe('postgres datastore', () => { names: 0, namespaces: 0, subdomains: 0, + ftMetadata: 0, + nftMetadata: 0, }, }); @@ -4099,14 +4103,19 @@ describe('postgres datastore', () => { contract_id: 'ABCDEFGHIJ.nft-metadata', tx_id: '0x1234', sender_address: 'sender-addr-test', + microblock_canonical: true, + canonical: true, + microblock_hash: '0x1234', + microblock_sequence: 5, + index_block_hash: '0x1234', }; const rowCount = await db.updateNFtMetadata(nftMetadata, 0); expect(rowCount).toBe(1); const query = await db.getNftMetadata(nftMetadata.contract_id); - expect(query.found).toBe(true); - if (query.found) expect(query.result).toStrictEqual(nftMetadata); + assert(query.found); + expect(nftMetadata).toMatchObject(query.result); }); test('pg token ft-metadata', async () => { @@ -4121,14 +4130,19 @@ describe('postgres datastore', () => { contract_id: 'ABCDEFGHIJ.ft-metadata', tx_id: '0x1234', sender_address: 'sender-addr-test', + microblock_canonical: true, + canonical: true, + microblock_hash: '0x1234', + microblock_sequence: 5, + index_block_hash: '0x1234', }; const rowCount = await db.updateFtMetadata(ftMetadata, 0); expect(rowCount).toBe(1); const query = await db.getFtMetadata(ftMetadata.contract_id); - expect(query.found).toBe(true); - if (query.found) expect(query.result).toStrictEqual(ftMetadata); + assert(query.found); + expect(ftMetadata).toMatchObject(query.result); }); afterEach(async () => { From c1212caade3b5ec1646501d1bbcb0b19c29a026e Mon Sep 17 00:00:00 2001 From: Asim Mehmood Date: Wed, 25 Aug 2021 17:04:23 +0500 Subject: [PATCH 44/44] chore: remove microblock_hash and microblock_sequence from metadata response --- .../tokens/fungible-token.schema.example.json | 4 +--- docs/entities/tokens/fungible-token.schema.json | 8 -------- .../non-fungible-token.schema.example.json | 4 +--- .../tokens/non-fungible-token.schema.json | 8 -------- docs/generated.d.ts | 16 ---------------- src/datastore/postgres-store.ts | 12 ++---------- 6 files changed, 4 insertions(+), 48 deletions(-) diff --git a/docs/entities/tokens/fungible-token.schema.example.json b/docs/entities/tokens/fungible-token.schema.example.json index 8aade14433..cffa6ab3a0 100644 --- a/docs/entities/tokens/fungible-token.schema.example.json +++ b/docs/entities/tokens/fungible-token.schema.example.json @@ -7,7 +7,5 @@ "tx_id": "0xef2ac1126e16f46843228b1dk4830e19eb7599129e4jf392cab9e65ae83a45c0", "sender_address": "ST399W7Z9WS0GMSNQGJGME5JAENKN56D65VGMGKGA", "symbol": "HEY", - "decimals": 5, - "microblock_hash": "0x", - "microblock_sequence": "-1" + "decimals": 5 } diff --git a/docs/entities/tokens/fungible-token.schema.json b/docs/entities/tokens/fungible-token.schema.json index 767639d056..bfd9b8684a 100644 --- a/docs/entities/tokens/fungible-token.schema.json +++ b/docs/entities/tokens/fungible-token.schema.json @@ -53,14 +53,6 @@ "sender_address": { "type": "string", "description": "principle that deployed the contract" - }, - "microblock_hash": { - "type": "string", - "description": "The microblock hash that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be an empty string." - }, - "microblock_sequence": { - "type": "integer", - "description": "The microblock sequence number that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be 2147483647 (0x7fffffff, the max int32 value), this value preserves logical transaction ordering on (block_height, microblock_sequence, tx_index)." } } } diff --git a/docs/entities/tokens/non-fungible-token.schema.example.json b/docs/entities/tokens/non-fungible-token.schema.example.json index cf00c0ab76..57f9613e1c 100644 --- a/docs/entities/tokens/non-fungible-token.schema.example.json +++ b/docs/entities/tokens/non-fungible-token.schema.example.json @@ -5,7 +5,5 @@ "image_uri": "https://pool.friedger.de/nft.webp", "image_canonical_uri": "https://pool.friedger.de/nft.webp", "tx_id": "0xef2ac1126e16f46843228b1dk4830e19eb7599129e4jf392cab9e65ae83a45c0", - "sender_address": "ST399W7Z9WS0GMSNQGJGME5JAENKN56D65VGMGKGA", - "microblock_hash": "0x", - "microblock_sequence": "-1" + "sender_address": "ST399W7Z9WS0GMSNQGJGME5JAENKN56D65VGMGKGA" } diff --git a/docs/entities/tokens/non-fungible-token.schema.json b/docs/entities/tokens/non-fungible-token.schema.json index 812be3e542..6a945d588f 100644 --- a/docs/entities/tokens/non-fungible-token.schema.json +++ b/docs/entities/tokens/non-fungible-token.schema.json @@ -43,14 +43,6 @@ "sender_address": { "type": "string", "description": "principle that deployed the contract" - }, - "microblock_hash": { - "type": "string", - "description": "The microblock hash that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be an empty string." - }, - "microblock_sequence": { - "type": "integer", - "description": "The microblock sequence number that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be 2147483647 (0x7fffffff, the max int32 value), this value preserves logical transaction ordering on (block_height, microblock_sequence, tx_index)." } } } diff --git a/docs/generated.d.ts b/docs/generated.d.ts index 3468d3f3d3..d1c30cbc98 100644 --- a/docs/generated.d.ts +++ b/docs/generated.d.ts @@ -2738,14 +2738,6 @@ export interface FungibleTokenMetadata { * principle that deployed the contract */ sender_address: string; - /** - * The microblock hash that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be an empty string. - */ - microblock_hash: string; - /** - * The microblock sequence number that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be 2147483647 (0x7fffffff, the max int32 value), this value preserves logical transaction ordering on (block_height, microblock_sequence, tx_index). - */ - microblock_sequence: number; } /** * List of non fungible tokens metadata @@ -2795,14 +2787,6 @@ export interface NonFungibleTokenMetadata { * principle that deployed the contract */ sender_address: string; - /** - * The microblock hash that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be an empty string. - */ - microblock_hash: string; - /** - * The microblock sequence number that this transaction was streamed in. If the transaction was batched in an anchor block (not included within a microblock) then this value will be 2147483647 (0x7fffffff, the max int32 value), this value preserves logical transaction ordering on (block_height, microblock_sequence, tx_index). - */ - microblock_sequence: number; } /** * GET request that returns transactions diff --git a/src/datastore/postgres-store.ts b/src/datastore/postgres-store.ts index 2a5cb117aa..df0e31dba6 100644 --- a/src/datastore/postgres-store.ts +++ b/src/datastore/postgres-store.ts @@ -5869,7 +5869,7 @@ export class PgDataStore return this.query(async client => { const queryResult = await client.query( ` - SELECT token_uri, name, description, image_uri, image_canonical_uri, symbol, decimals, contract_id, tx_id, sender_address, microblock_hash, microblock_sequence + SELECT token_uri, name, description, image_uri, image_canonical_uri, symbol, decimals, contract_id, tx_id, sender_address FROM ft_metadata WHERE contract_id = $1 AND canonical = true AND microblock_canonical = true LIMIT 1 @@ -5887,8 +5887,6 @@ export class PgDataStore decimals: queryResult.rows[0].decimals, tx_id: bufferToHexPrefixString(queryResult.rows[0].tx_id), sender_address: queryResult.rows[0].sender_address, - microblock_hash: bufferToHexPrefixString(queryResult.rows[0].microblock_hash), - microblock_sequence: queryResult.rows[0].microblock_sequence, }; return { found: true, @@ -5904,7 +5902,7 @@ export class PgDataStore return this.query(async client => { const queryResult = await client.query( ` - SELECT token_uri, name, description, image_uri, image_canonical_uri, contract_id, tx_id, sender_address, microblock_hash, microblock_sequence + SELECT token_uri, name, description, image_uri, image_canonical_uri, contract_id, tx_id, sender_address FROM nft_metadata WHERE contract_id = $1 AND canonical = true AND microblock_canonical = true LIMIT 1 @@ -5920,8 +5918,6 @@ export class PgDataStore image_canonical_uri: queryResult.rows[0].image_canonical_uri, tx_id: bufferToHexPrefixString(queryResult.rows[0].tx_id), sender_address: queryResult.rows[0].sender_address, - microblock_hash: bufferToHexPrefixString(queryResult.rows[0].microblock_hash), - microblock_sequence: queryResult.rows[0].microblock_sequence, }; return { found: true, @@ -6083,8 +6079,6 @@ export class PgDataStore symbol: r.symbol, tx_id: bufferToHexPrefixString(r.tx_id), sender_address: r.sender_address, - microblock_hash: bufferToHexPrefixString(r.microblock_hash), - microblock_sequence: r.microblock_sequence, }; return metadata; }); @@ -6126,8 +6120,6 @@ export class PgDataStore image_canonical_uri: r.image_canonical_uri, tx_id: bufferToHexPrefixString(r.tx_id), sender_address: r.sender_address, - microblock_hash: bufferToHexPrefixString(r.microblock_hash), - microblock_sequence: r.microblock_sequence, }; return metadata; });