ETH Price: $3,327.65 (-4.46%)
Gas: 2 Gwei

Token

Pudgy Holder Gift (PHG)
 

Overview

Max Total Supply

383 PHG

Holders

383

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
leftlost.eth
0xb4bb62cf25a97d75a11d1848ef23ce66ee38d70d
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
PudgyApesSpecials

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 14 : PudgyApesSpecials.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol";

contract PudgyApesSpecials is ERC1155Supply, Pausable, Ownable {
    uint256 constant MAX_SUPPLY = 900;

    string public _baseTokenURI;
    address public pudgyApesAddress;

    string public symbol = "PHG";
    string public name = "Pudgy Holder Gift";

    constructor(string memory _uri, address _pudgyApesAddress) ERC1155(_uri) {
        _pause();

        _baseTokenURI = _uri;
        pudgyApesAddress = _pudgyApesAddress;
    }

    function pause() external onlyOwner {
        _pause();
    }

    function unpause() external onlyOwner {
        _unpause();
    }

    function maxSupply() external pure returns (uint256) {
        return MAX_SUPPLY;
    }

    function claim() external whenNotPaused {
        require(totalSupply(0) < MAX_SUPPLY, "PudgyApesSpecials: Max supply reached");
        require(balanceOf(msg.sender, 0) == 0, "PudgyApesSpecials: You have already claimed the gift!");
        require(IERC721(pudgyApesAddress).balanceOf(msg.sender) > 0, "PudgyApesSpecials: You don't own the PudgyApe!");

        _mint(msg.sender, 0, 1, "");
    }

    function setPudgyApesAddress(address _pudgyApesAddress) external onlyOwner {
        require(_pudgyApesAddress != address(0), "PudgyApesSpecials: PudgyApes address cannot be 0!");
        pudgyApesAddress = _pudgyApesAddress;
    }

    function setBaseTokenURI(string memory _uri) external onlyOwner {
        _baseTokenURI = _uri;
    }

    function uri(uint256 _tokenId) public view override returns (string memory) {
        require(exists(_tokenId), "URI: nonexistent token");
        return string(abi.encodePacked(abi.encodePacked(_baseTokenURI, Strings.toString(_tokenId)), ".json"));
    }
}

File 2 of 14 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

File 3 of 14 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 4 of 14 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 14 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 6 of 14 : ERC1155Supply.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;

import "../ERC1155.sol";

/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        return _totalSupply[id];
    }

    /**
     * @dev Indicates whether any token exist with a given id, or not.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        return ERC1155Supply.totalSupply(id) > 0;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] -= amounts[i];
            }
        }
    }
}

File 7 of 14 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 8 of 14 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 9 of 14 : ERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;

import "./IERC1155.sol";
import "./IERC1155Receiver.sol";
import "./extensions/IERC1155MetadataURI.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/introspection/ERC165.sol";

/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC1155).interfaceId ||
            interfaceId == type(IERC1155MetadataURI).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC1155-isApprovedForAll}.
     */
    function isApprovedForAll(address account, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[account][operator];
    }

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

File 10 of 14 : IERC1155.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

File 11 of 14 : IERC1155Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

File 12 of 14 : IERC1155MetadataURI.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;

import "../IERC1155.sol";

/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

File 13 of 14 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 14 of 14 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.0 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_uri","type":"string"},{"internalType":"address","name":"_pudgyApesAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pudgyApesAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pudgyApesAddress","type":"address"}],"name":"setPudgyApesAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"}]

60806040526040518060400160405280600381526020017f504847000000000000000000000000000000000000000000000000000000000081525060079080519060200190620000519291906200034c565b506040518060400160405280601181526020017f507564677920486f6c6465722047696674000000000000000000000000000000815250600890805190602001906200009f9291906200034c565b50348015620000ad57600080fd5b506040516200484d3803806200484d8339818101604052810190620000d39190620005fe565b81620000e5816200019360201b60201c565b506000600460006101000a81548160ff0219169083151502179055506200012162000115620001af60201b60201c565b620001b760201b60201c565b620001316200027d60201b60201c565b8160059080519060200190620001499291906200034c565b5080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050506200077a565b8060029080519060200190620001ab9291906200034c565b5050565b600033905090565b6000600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200028d6200033560201b60201c565b15620002d0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002c790620006c5565b60405180910390fd5b6001600460006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586200031c620001af60201b60201c565b6040516200032b9190620006f8565b60405180910390a1565b6000600460009054906101000a900460ff16905090565b8280546200035a9062000744565b90600052602060002090601f0160209004810192826200037e5760008555620003ca565b82601f106200039957805160ff1916838001178555620003ca565b82800160010185558215620003ca579182015b82811115620003c9578251825591602001919060010190620003ac565b5b509050620003d99190620003dd565b5090565b5b80821115620003f8576000816000905550600101620003de565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000465826200041a565b810181811067ffffffffffffffff821117156200048757620004866200042b565b5b80604052505050565b60006200049c620003fc565b9050620004aa82826200045a565b919050565b600067ffffffffffffffff821115620004cd57620004cc6200042b565b5b620004d8826200041a565b9050602081019050919050565b60005b8381101562000505578082015181840152602081019050620004e8565b8381111562000515576000848401525b50505050565b6000620005326200052c84620004af565b62000490565b90508281526020810184848401111562000551576200055062000415565b5b6200055e848285620004e5565b509392505050565b600082601f8301126200057e576200057d62000410565b5b8151620005908482602086016200051b565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620005c68262000599565b9050919050565b620005d881620005b9565b8114620005e457600080fd5b50565b600081519050620005f881620005cd565b92915050565b6000806040838503121562000618576200061762000406565b5b600083015167ffffffffffffffff8111156200063957620006386200040b565b5b620006478582860162000566565b92505060206200065a85828601620005e7565b9150509250929050565b600082825260208201905092915050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b6000620006ad60108362000664565b9150620006ba8262000675565b602082019050919050565b60006020820190508181036000830152620006e0816200069e565b9050919050565b620006f281620005b9565b82525050565b60006020820190506200070f6000830184620006e7565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200075d57607f821691505b6020821081141562000774576200077362000715565b5b50919050565b6140c3806200078a6000396000f3fe608060405234801561001057600080fd5b50600436106101575760003560e01c80638456cb59116100c3578063d5abeb011161007c578063d5abeb011461038e578063dc577aa3146103ac578063e985e9c5146103ca578063ea06840b146103fa578063f242432a14610416578063f2fde38b1461043257610157565b80638456cb59146102de5780638da5cb5b146102e857806395d89b4114610306578063a22cb46514610324578063bd85b03914610340578063cfc86f7b1461037057610157565b80633f4ba83a116101155780633f4ba83a146102425780634e1273f41461024c5780634e71d92d1461027c5780634f558e79146102865780635c975abb146102b6578063715018a6146102d457610157565b8062fdd58e1461015c57806301ffc9a71461018c57806306fdde03146101bc5780630e89341c146101da5780632eb2c2d61461020a57806330176e1314610226575b600080fd5b610176600480360381019061017191906125c4565b61044e565b6040516101839190612613565b60405180910390f35b6101a660048036038101906101a19190612686565b610517565b6040516101b391906126ce565b60405180910390f35b6101c46105f9565b6040516101d19190612782565b60405180910390f35b6101f460048036038101906101ef91906127a4565b610687565b6040516102019190612782565b60405180910390f35b610224600480360381019061021f91906129ce565b610722565b005b610240600480360381019061023b9190612b3e565b6107c3565b005b61024a610859565b005b61026660048036038101906102619190612c4a565b6108df565b6040516102739190612d80565b60405180910390f35b6102846109f8565b005b6102a0600480360381019061029b91906127a4565b610be6565b6040516102ad91906126ce565b60405180910390f35b6102be610bfa565b6040516102cb91906126ce565b60405180910390f35b6102dc610c11565b005b6102e6610c99565b005b6102f0610d1f565b6040516102fd9190612db1565b60405180910390f35b61030e610d49565b60405161031b9190612782565b60405180910390f35b61033e60048036038101906103399190612df8565b610dd7565b005b61035a600480360381019061035591906127a4565b610ded565b6040516103679190612613565b60405180910390f35b610378610e0a565b6040516103859190612782565b60405180910390f35b610396610e98565b6040516103a39190612613565b60405180910390f35b6103b4610ea2565b6040516103c19190612db1565b60405180910390f35b6103e460048036038101906103df9190612e38565b610ec8565b6040516103f191906126ce565b60405180910390f35b610414600480360381019061040f9190612e78565b610f5c565b005b610430600480360381019061042b9190612ea5565b61108c565b005b61044c60048036038101906104479190612e78565b61112d565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b690612fae565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f257506105f182611225565b5b9050919050565b6008805461060690612ffd565b80601f016020809104026020016040519081016040528092919081815260200182805461063290612ffd565b801561067f5780601f106106545761010080835404028352916020019161067f565b820191906000526020600020905b81548152906001019060200180831161066257829003601f168201915b505050505081565b606061069282610be6565b6106d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c89061307b565b60405180910390fd5b60056106dc8361128f565b6040516020016106ed92919061316b565b60405160208183030381529060405260405160200161070c9190613222565b6040516020818303038152906040529050919050565b61072a6113f0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610770575061076f8561076a6113f0565b610ec8565b5b6107af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a6906132b6565b60405180910390fd5b6107bc85858585856113f8565b5050505050565b6107cb6113f0565b73ffffffffffffffffffffffffffffffffffffffff166107e9610d1f565b73ffffffffffffffffffffffffffffffffffffffff161461083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690613322565b60405180910390fd5b8060059080519060200190610855929190612479565b5050565b6108616113f0565b73ffffffffffffffffffffffffffffffffffffffff1661087f610d1f565b73ffffffffffffffffffffffffffffffffffffffff16146108d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cc90613322565b60405180910390fd5b6108dd61170c565b565b60608151835114610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c906133b4565b60405180910390fd5b6000835167ffffffffffffffff811115610942576109416127d6565b5b6040519080825280602002602001820160405280156109705781602001602082028036833780820191505090505b50905060005b84518110156109ed576109bd858281518110610995576109946133d4565b5b60200260200101518583815181106109b0576109af6133d4565b5b602002602001015161044e565b8282815181106109d0576109cf6133d4565b5b602002602001018181525050806109e690613432565b9050610976565b508091505092915050565b610a00610bfa565b15610a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a37906134c7565b60405180910390fd5b610384610a4d6000610ded565b10610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490613559565b60405180910390fd5b6000610a9a33600061044e565b14610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad1906135eb565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610b379190612db1565b60206040518083038186803b158015610b4f57600080fd5b505afa158015610b63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b879190613620565b11610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe906136bf565b60405180910390fd5b610be43360006001604051806020016040528060008152506117ae565b565b600080610bf283610ded565b119050919050565b6000600460009054906101000a900460ff16905090565b610c196113f0565b73ffffffffffffffffffffffffffffffffffffffff16610c37610d1f565b73ffffffffffffffffffffffffffffffffffffffff1614610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490613322565b60405180910390fd5b610c976000611944565b565b610ca16113f0565b73ffffffffffffffffffffffffffffffffffffffff16610cbf610d1f565b73ffffffffffffffffffffffffffffffffffffffff1614610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90613322565b60405180910390fd5b610d1d611a0a565b565b6000600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60078054610d5690612ffd565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8290612ffd565b8015610dcf5780601f10610da457610100808354040283529160200191610dcf565b820191906000526020600020905b815481529060010190602001808311610db257829003601f168201915b505050505081565b610de9610de26113f0565b8383611aad565b5050565b600060036000838152602001908152602001600020549050919050565b60058054610e1790612ffd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4390612ffd565b8015610e905780601f10610e6557610100808354040283529160200191610e90565b820191906000526020600020905b815481529060010190602001808311610e7357829003601f168201915b505050505081565b6000610384905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f646113f0565b73ffffffffffffffffffffffffffffffffffffffff16610f82610d1f565b73ffffffffffffffffffffffffffffffffffffffff1614610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90613322565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90613751565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110946113f0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110da57506110d9856110d46113f0565b610ec8565b5b611119576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611110906137e3565b60405180910390fd5b6111268585858585611c1a565b5050505050565b6111356113f0565b73ffffffffffffffffffffffffffffffffffffffff16611153610d1f565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613322565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121090613875565b60405180910390fd5b61122281611944565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b606060008214156112d7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506113eb565b600082905060005b600082146113095780806112f290613432565b915050600a8261130291906138c4565b91506112df565b60008167ffffffffffffffff811115611325576113246127d6565b5b6040519080825280601f01601f1916602001820160405280156113575781602001600182028036833780820191505090505b5090505b600085146113e45760018261137091906138f5565b9150600a8561137f9190613929565b603061138b919061395a565b60f81b8183815181106113a1576113a06133d4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856113dd91906138c4565b945061135b565b8093505050505b919050565b600033905090565b815183511461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613a22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390613ab4565b60405180910390fd5b60006114b66113f0565b90506114c6818787878787611e9c565b60005b84518110156116775760008582815181106114e7576114e66133d4565b5b602002602001015190506000858381518110611506576115056133d4565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90613b46565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461165c919061395a565b925050819055505050508061167090613432565b90506114c9565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516116ee929190613b66565b60405180910390a4611704818787878787612016565b505050505050565b611714610bfa565b611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613be9565b60405180910390fd5b6000600460006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6117976113f0565b6040516117a49190612db1565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613c7b565b60405180910390fd5b60006118286113f0565b90506118498160008761183a886121fd565b611843886121fd565b87611e9c565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a8919061395a565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611926929190613c9b565b60405180910390a461193d81600087878787612277565b5050505050565b6000600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a12610bfa565b15611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a49906134c7565b60405180910390fd5b6001600460006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a966113f0565b604051611aa39190612db1565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1390613d36565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c0d91906126ce565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8190613ab4565b60405180910390fd5b6000611c946113f0565b9050611cb4818787611ca5886121fd565b611cae886121fd565b87611e9c565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4290613b46565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e00919061395a565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611e7d929190613c9b565b60405180910390a4611e93828888888888612277565b50505050505050565b611eaa86868686868661245e565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611f5c5760005b8351811015611f5a57828181518110611efe57611efd6133d4565b5b602002602001015160036000868481518110611f1d57611f1c6133d4565b5b602002602001015181526020019081526020016000206000828254611f42919061395a565b9250508190555080611f5390613432565b9050611ee2565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561200e5760005b835181101561200c57828181518110611fb057611faf6133d4565b5b602002602001015160036000868481518110611fcf57611fce6133d4565b5b602002602001015181526020019081526020016000206000828254611ff491906138f5565b925050819055508061200590613432565b9050611f94565b505b505050505050565b6120358473ffffffffffffffffffffffffffffffffffffffff16612466565b156121f5578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161207b959493929190613da0565b602060405180830381600087803b15801561209557600080fd5b505af19250505080156120c657506040513d601f19601f820116820180604052508101906120c39190613e1d565b60015b61216c576120d2613e57565b806308c379a0141561212f57506120e7613e79565b806120f25750612131565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121269190612782565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216390613f81565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea90614013565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561221c5761221b6127d6565b5b60405190808252806020026020018201604052801561224a5781602001602082028036833780820191505090505b5090508281600081518110612262576122616133d4565b5b60200260200101818152505080915050919050565b6122968473ffffffffffffffffffffffffffffffffffffffff16612466565b15612456578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016122dc959493929190614033565b602060405180830381600087803b1580156122f657600080fd5b505af192505050801561232757506040513d601f19601f820116820180604052508101906123249190613e1d565b60015b6123cd57612333613e57565b806308c379a014156123905750612348613e79565b806123535750612392565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123879190612782565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c490613f81565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244b90614013565b60405180910390fd5b505b505050505050565b505050505050565b600080823b905060008111915050919050565b82805461248590612ffd565b90600052602060002090601f0160209004810192826124a757600085556124ee565b82601f106124c057805160ff19168380011785556124ee565b828001600101855582156124ee579182015b828111156124ed5782518255916020019190600101906124d2565b5b5090506124fb91906124ff565b5090565b5b80821115612518576000816000905550600101612500565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061255b82612530565b9050919050565b61256b81612550565b811461257657600080fd5b50565b60008135905061258881612562565b92915050565b6000819050919050565b6125a18161258e565b81146125ac57600080fd5b50565b6000813590506125be81612598565b92915050565b600080604083850312156125db576125da612526565b5b60006125e985828601612579565b92505060206125fa858286016125af565b9150509250929050565b61260d8161258e565b82525050565b60006020820190506126286000830184612604565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126638161262e565b811461266e57600080fd5b50565b6000813590506126808161265a565b92915050565b60006020828403121561269c5761269b612526565b5b60006126aa84828501612671565b91505092915050565b60008115159050919050565b6126c8816126b3565b82525050565b60006020820190506126e360008301846126bf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612723578082015181840152602081019050612708565b83811115612732576000848401525b50505050565b6000601f19601f8301169050919050565b6000612754826126e9565b61275e81856126f4565b935061276e818560208601612705565b61277781612738565b840191505092915050565b6000602082019050818103600083015261279c8184612749565b905092915050565b6000602082840312156127ba576127b9612526565b5b60006127c8848285016125af565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61280e82612738565b810181811067ffffffffffffffff8211171561282d5761282c6127d6565b5b80604052505050565b600061284061251c565b905061284c8282612805565b919050565b600067ffffffffffffffff82111561286c5761286b6127d6565b5b602082029050602081019050919050565b600080fd5b600061289561289084612851565b612836565b905080838252602082019050602084028301858111156128b8576128b761287d565b5b835b818110156128e157806128cd88826125af565b8452602084019350506020810190506128ba565b5050509392505050565b600082601f830112612900576128ff6127d1565b5b8135612910848260208601612882565b91505092915050565b600080fd5b600067ffffffffffffffff821115612939576129386127d6565b5b61294282612738565b9050602081019050919050565b82818337600083830152505050565b600061297161296c8461291e565b612836565b90508281526020810184848401111561298d5761298c612919565b5b61299884828561294f565b509392505050565b600082601f8301126129b5576129b46127d1565b5b81356129c584826020860161295e565b91505092915050565b600080600080600060a086880312156129ea576129e9612526565b5b60006129f888828901612579565b9550506020612a0988828901612579565b945050604086013567ffffffffffffffff811115612a2a57612a2961252b565b5b612a36888289016128eb565b935050606086013567ffffffffffffffff811115612a5757612a5661252b565b5b612a63888289016128eb565b925050608086013567ffffffffffffffff811115612a8457612a8361252b565b5b612a90888289016129a0565b9150509295509295909350565b600067ffffffffffffffff821115612ab857612ab76127d6565b5b612ac182612738565b9050602081019050919050565b6000612ae1612adc84612a9d565b612836565b905082815260208101848484011115612afd57612afc612919565b5b612b0884828561294f565b509392505050565b600082601f830112612b2557612b246127d1565b5b8135612b35848260208601612ace565b91505092915050565b600060208284031215612b5457612b53612526565b5b600082013567ffffffffffffffff811115612b7257612b7161252b565b5b612b7e84828501612b10565b91505092915050565b600067ffffffffffffffff821115612ba257612ba16127d6565b5b602082029050602081019050919050565b6000612bc6612bc184612b87565b612836565b90508083825260208201905060208402830185811115612be957612be861287d565b5b835b81811015612c125780612bfe8882612579565b845260208401935050602081019050612beb565b5050509392505050565b600082601f830112612c3157612c306127d1565b5b8135612c41848260208601612bb3565b91505092915050565b60008060408385031215612c6157612c60612526565b5b600083013567ffffffffffffffff811115612c7f57612c7e61252b565b5b612c8b85828601612c1c565b925050602083013567ffffffffffffffff811115612cac57612cab61252b565b5b612cb8858286016128eb565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612cf78161258e565b82525050565b6000612d098383612cee565b60208301905092915050565b6000602082019050919050565b6000612d2d82612cc2565b612d378185612ccd565b9350612d4283612cde565b8060005b83811015612d73578151612d5a8882612cfd565b9750612d6583612d15565b925050600181019050612d46565b5085935050505092915050565b60006020820190508181036000830152612d9a8184612d22565b905092915050565b612dab81612550565b82525050565b6000602082019050612dc66000830184612da2565b92915050565b612dd5816126b3565b8114612de057600080fd5b50565b600081359050612df281612dcc565b92915050565b60008060408385031215612e0f57612e0e612526565b5b6000612e1d85828601612579565b9250506020612e2e85828601612de3565b9150509250929050565b60008060408385031215612e4f57612e4e612526565b5b6000612e5d85828601612579565b9250506020612e6e85828601612579565b9150509250929050565b600060208284031215612e8e57612e8d612526565b5b6000612e9c84828501612579565b91505092915050565b600080600080600060a08688031215612ec157612ec0612526565b5b6000612ecf88828901612579565b9550506020612ee088828901612579565b9450506040612ef1888289016125af565b9350506060612f02888289016125af565b925050608086013567ffffffffffffffff811115612f2357612f2261252b565b5b612f2f888289016129a0565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612f98602b836126f4565b9150612fa382612f3c565b604082019050919050565b60006020820190508181036000830152612fc781612f8b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061301557607f821691505b6020821081141561302957613028612fce565b5b50919050565b7f5552493a206e6f6e6578697374656e7420746f6b656e00000000000000000000600082015250565b60006130656016836126f4565b91506130708261302f565b602082019050919050565b6000602082019050818103600083015261309481613058565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546130c881612ffd565b6130d2818661309b565b945060018216600081146130ed57600181146130fe57613131565b60ff19831686528186019350613131565b613107856130a6565b60005b838110156131295781548189015260018201915060208101905061310a565b838801955050505b50505092915050565b6000613145826126e9565b61314f818561309b565b935061315f818560208601612705565b80840191505092915050565b600061317782856130bb565b9150613183828461313a565b91508190509392505050565b600081519050919050565b600081905092915050565b60006131b08261318f565b6131ba818561319a565b93506131ca818560208601612705565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061320c60058361309b565b9150613217826131d6565b600582019050919050565b600061322e82846131a5565b9150613239826131ff565b915081905092915050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006132a06032836126f4565b91506132ab82613244565b604082019050919050565b600060208201905081810360008301526132cf81613293565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061330c6020836126f4565b9150613317826132d6565b602082019050919050565b6000602082019050818103600083015261333b816132ff565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b600061339e6029836126f4565b91506133a982613342565b604082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061343d8261258e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134705761346f613403565b5b600182019050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006134b16010836126f4565b91506134bc8261347b565b602082019050919050565b600060208201905081810360008301526134e0816134a4565b9050919050565b7f5075646779417065735370656369616c733a204d617820737570706c7920726560008201527f6163686564000000000000000000000000000000000000000000000000000000602082015250565b60006135436025836126f4565b915061354e826134e7565b604082019050919050565b6000602082019050818103600083015261357281613536565b9050919050565b7f5075646779417065735370656369616c733a20596f75206861766520616c726560008201527f61647920636c61696d6564207468652067696674210000000000000000000000602082015250565b60006135d56035836126f4565b91506135e082613579565b604082019050919050565b60006020820190508181036000830152613604816135c8565b9050919050565b60008151905061361a81612598565b92915050565b60006020828403121561363657613635612526565b5b60006136448482850161360b565b91505092915050565b7f5075646779417065735370656369616c733a20596f7520646f6e2774206f776e60008201527f2074686520507564677941706521000000000000000000000000000000000000602082015250565b60006136a9602e836126f4565b91506136b48261364d565b604082019050919050565b600060208201905081810360008301526136d88161369c565b9050919050565b7f5075646779417065735370656369616c733a205075646779417065732061646460008201527f726573732063616e6e6f74206265203021000000000000000000000000000000602082015250565b600061373b6031836126f4565b9150613746826136df565b604082019050919050565b6000602082019050818103600083015261376a8161372e565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006137cd6029836126f4565b91506137d882613771565b604082019050919050565b600060208201905081810360008301526137fc816137c0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061385f6026836126f4565b915061386a82613803565b604082019050919050565b6000602082019050818103600083015261388e81613852565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138cf8261258e565b91506138da8361258e565b9250826138ea576138e9613895565b5b828204905092915050565b60006139008261258e565b915061390b8361258e565b92508282101561391e5761391d613403565b5b828203905092915050565b60006139348261258e565b915061393f8361258e565b92508261394f5761394e613895565b5b828206905092915050565b60006139658261258e565b91506139708361258e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139a5576139a4613403565b5b828201905092915050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613a0c6028836126f4565b9150613a17826139b0565b604082019050919050565b60006020820190508181036000830152613a3b816139ff565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a9e6025836126f4565b9150613aa982613a42565b604082019050919050565b60006020820190508181036000830152613acd81613a91565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613b30602a836126f4565b9150613b3b82613ad4565b604082019050919050565b60006020820190508181036000830152613b5f81613b23565b9050919050565b60006040820190508181036000830152613b808185612d22565b90508181036020830152613b948184612d22565b90509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613bd36014836126f4565b9150613bde82613b9d565b602082019050919050565b60006020820190508181036000830152613c0281613bc6565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c656021836126f4565b9150613c7082613c09565b604082019050919050565b60006020820190508181036000830152613c9481613c58565b9050919050565b6000604082019050613cb06000830185612604565b613cbd6020830184612604565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000613d206029836126f4565b9150613d2b82613cc4565b604082019050919050565b60006020820190508181036000830152613d4f81613d13565b9050919050565b600082825260208201905092915050565b6000613d728261318f565b613d7c8185613d56565b9350613d8c818560208601612705565b613d9581612738565b840191505092915050565b600060a082019050613db56000830188612da2565b613dc26020830187612da2565b8181036040830152613dd48186612d22565b90508181036060830152613de88185612d22565b90508181036080830152613dfc8184613d67565b90509695505050505050565b600081519050613e178161265a565b92915050565b600060208284031215613e3357613e32612526565b5b6000613e4184828501613e08565b91505092915050565b60008160e01c9050919050565b600060033d1115613e765760046000803e613e73600051613e4a565b90505b90565b600060443d1015613e8957613f0c565b613e9161251c565b60043d036004823e80513d602482011167ffffffffffffffff82111715613eb9575050613f0c565b808201805167ffffffffffffffff811115613ed75750505050613f0c565b80602083010160043d038501811115613ef4575050505050613f0c565b613f0382602001850186612805565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613f6b6034836126f4565b9150613f7682613f0f565b604082019050919050565b60006020820190508181036000830152613f9a81613f5e565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613ffd6028836126f4565b915061400882613fa1565b604082019050919050565b6000602082019050818103600083015261402c81613ff0565b9050919050565b600060a0820190506140486000830188612da2565b6140556020830187612da2565b6140626040830186612604565b61406f6060830185612604565b81810360808301526140818184613d67565b9050969550505050505056fea26469706673582212203dd9d8ca72a4684a40ebc4a2b83be6559f643a7456542020e2968e331526a07a64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000f9aba9fa6abd858a94f9eefe0f9d51ca2c112250000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d55576b514b74326845755354583676446a464533773347536f6235686d4578453378564d39737965345470412f00000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101575760003560e01c80638456cb59116100c3578063d5abeb011161007c578063d5abeb011461038e578063dc577aa3146103ac578063e985e9c5146103ca578063ea06840b146103fa578063f242432a14610416578063f2fde38b1461043257610157565b80638456cb59146102de5780638da5cb5b146102e857806395d89b4114610306578063a22cb46514610324578063bd85b03914610340578063cfc86f7b1461037057610157565b80633f4ba83a116101155780633f4ba83a146102425780634e1273f41461024c5780634e71d92d1461027c5780634f558e79146102865780635c975abb146102b6578063715018a6146102d457610157565b8062fdd58e1461015c57806301ffc9a71461018c57806306fdde03146101bc5780630e89341c146101da5780632eb2c2d61461020a57806330176e1314610226575b600080fd5b610176600480360381019061017191906125c4565b61044e565b6040516101839190612613565b60405180910390f35b6101a660048036038101906101a19190612686565b610517565b6040516101b391906126ce565b60405180910390f35b6101c46105f9565b6040516101d19190612782565b60405180910390f35b6101f460048036038101906101ef91906127a4565b610687565b6040516102019190612782565b60405180910390f35b610224600480360381019061021f91906129ce565b610722565b005b610240600480360381019061023b9190612b3e565b6107c3565b005b61024a610859565b005b61026660048036038101906102619190612c4a565b6108df565b6040516102739190612d80565b60405180910390f35b6102846109f8565b005b6102a0600480360381019061029b91906127a4565b610be6565b6040516102ad91906126ce565b60405180910390f35b6102be610bfa565b6040516102cb91906126ce565b60405180910390f35b6102dc610c11565b005b6102e6610c99565b005b6102f0610d1f565b6040516102fd9190612db1565b60405180910390f35b61030e610d49565b60405161031b9190612782565b60405180910390f35b61033e60048036038101906103399190612df8565b610dd7565b005b61035a600480360381019061035591906127a4565b610ded565b6040516103679190612613565b60405180910390f35b610378610e0a565b6040516103859190612782565b60405180910390f35b610396610e98565b6040516103a39190612613565b60405180910390f35b6103b4610ea2565b6040516103c19190612db1565b60405180910390f35b6103e460048036038101906103df9190612e38565b610ec8565b6040516103f191906126ce565b60405180910390f35b610414600480360381019061040f9190612e78565b610f5c565b005b610430600480360381019061042b9190612ea5565b61108c565b005b61044c60048036038101906104479190612e78565b61112d565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156104bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104b690612fae565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e257507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f257506105f182611225565b5b9050919050565b6008805461060690612ffd565b80601f016020809104026020016040519081016040528092919081815260200182805461063290612ffd565b801561067f5780601f106106545761010080835404028352916020019161067f565b820191906000526020600020905b81548152906001019060200180831161066257829003601f168201915b505050505081565b606061069282610be6565b6106d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c89061307b565b60405180910390fd5b60056106dc8361128f565b6040516020016106ed92919061316b565b60405160208183030381529060405260405160200161070c9190613222565b6040516020818303038152906040529050919050565b61072a6113f0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610770575061076f8561076a6113f0565b610ec8565b5b6107af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a6906132b6565b60405180910390fd5b6107bc85858585856113f8565b5050505050565b6107cb6113f0565b73ffffffffffffffffffffffffffffffffffffffff166107e9610d1f565b73ffffffffffffffffffffffffffffffffffffffff161461083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690613322565b60405180910390fd5b8060059080519060200190610855929190612479565b5050565b6108616113f0565b73ffffffffffffffffffffffffffffffffffffffff1661087f610d1f565b73ffffffffffffffffffffffffffffffffffffffff16146108d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cc90613322565b60405180910390fd5b6108dd61170c565b565b60608151835114610925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091c906133b4565b60405180910390fd5b6000835167ffffffffffffffff811115610942576109416127d6565b5b6040519080825280602002602001820160405280156109705781602001602082028036833780820191505090505b50905060005b84518110156109ed576109bd858281518110610995576109946133d4565b5b60200260200101518583815181106109b0576109af6133d4565b5b602002602001015161044e565b8282815181106109d0576109cf6133d4565b5b602002602001018181525050806109e690613432565b9050610976565b508091505092915050565b610a00610bfa565b15610a40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a37906134c7565b60405180910390fd5b610384610a4d6000610ded565b10610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490613559565b60405180910390fd5b6000610a9a33600061044e565b14610ada576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad1906135eb565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610b379190612db1565b60206040518083038186803b158015610b4f57600080fd5b505afa158015610b63573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b879190613620565b11610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe906136bf565b60405180910390fd5b610be43360006001604051806020016040528060008152506117ae565b565b600080610bf283610ded565b119050919050565b6000600460009054906101000a900460ff16905090565b610c196113f0565b73ffffffffffffffffffffffffffffffffffffffff16610c37610d1f565b73ffffffffffffffffffffffffffffffffffffffff1614610c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c8490613322565b60405180910390fd5b610c976000611944565b565b610ca16113f0565b73ffffffffffffffffffffffffffffffffffffffff16610cbf610d1f565b73ffffffffffffffffffffffffffffffffffffffff1614610d15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0c90613322565b60405180910390fd5b610d1d611a0a565b565b6000600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60078054610d5690612ffd565b80601f0160208091040260200160405190810160405280929190818152602001828054610d8290612ffd565b8015610dcf5780601f10610da457610100808354040283529160200191610dcf565b820191906000526020600020905b815481529060010190602001808311610db257829003601f168201915b505050505081565b610de9610de26113f0565b8383611aad565b5050565b600060036000838152602001908152602001600020549050919050565b60058054610e1790612ffd565b80601f0160208091040260200160405190810160405280929190818152602001828054610e4390612ffd565b8015610e905780601f10610e6557610100808354040283529160200191610e90565b820191906000526020600020905b815481529060010190602001808311610e7357829003601f168201915b505050505081565b6000610384905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610f646113f0565b73ffffffffffffffffffffffffffffffffffffffff16610f82610d1f565b73ffffffffffffffffffffffffffffffffffffffff1614610fd8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcf90613322565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611048576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103f90613751565b60405180910390fd5b80600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6110946113f0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614806110da57506110d9856110d46113f0565b610ec8565b5b611119576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611110906137e3565b60405180910390fd5b6111268585858585611c1a565b5050505050565b6111356113f0565b73ffffffffffffffffffffffffffffffffffffffff16611153610d1f565b73ffffffffffffffffffffffffffffffffffffffff16146111a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a090613322565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611219576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121090613875565b60405180910390fd5b61122281611944565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b606060008214156112d7576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506113eb565b600082905060005b600082146113095780806112f290613432565b915050600a8261130291906138c4565b91506112df565b60008167ffffffffffffffff811115611325576113246127d6565b5b6040519080825280601f01601f1916602001820160405280156113575781602001600182028036833780820191505090505b5090505b600085146113e45760018261137091906138f5565b9150600a8561137f9190613929565b603061138b919061395a565b60f81b8183815181106113a1576113a06133d4565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856113dd91906138c4565b945061135b565b8093505050505b919050565b600033905090565b815183511461143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390613a22565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a390613ab4565b60405180910390fd5b60006114b66113f0565b90506114c6818787878787611e9c565b60005b84518110156116775760008582815181106114e7576114e66133d4565b5b602002602001015190506000858381518110611506576115056133d4565b5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156115a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159e90613b46565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461165c919061395a565b925050819055505050508061167090613432565b90506114c9565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516116ee929190613b66565b60405180910390a4611704818787878787612016565b505050505050565b611714610bfa565b611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90613be9565b60405180910390fd5b6000600460006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6117976113f0565b6040516117a49190612db1565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561181e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181590613c7b565b60405180910390fd5b60006118286113f0565b90506118498160008761183a886121fd565b611843886121fd565b87611e9c565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118a8919061395a565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051611926929190613c9b565b60405180910390a461193d81600087878787612277565b5050505050565b6000600460019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600460016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611a12610bfa565b15611a52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a49906134c7565b60405180910390fd5b6001600460006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258611a966113f0565b604051611aa39190612db1565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1390613d36565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c0d91906126ce565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611c8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8190613ab4565b60405180910390fd5b6000611c946113f0565b9050611cb4818787611ca5886121fd565b611cae886121fd565b87611e9c565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4290613b46565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611e00919061395a565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051611e7d929190613c9b565b60405180910390a4611e93828888888888612277565b50505050505050565b611eaa86868686868661245e565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611f5c5760005b8351811015611f5a57828181518110611efe57611efd6133d4565b5b602002602001015160036000868481518110611f1d57611f1c6133d4565b5b602002602001015181526020019081526020016000206000828254611f42919061395a565b9250508190555080611f5390613432565b9050611ee2565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561200e5760005b835181101561200c57828181518110611fb057611faf6133d4565b5b602002602001015160036000868481518110611fcf57611fce6133d4565b5b602002602001015181526020019081526020016000206000828254611ff491906138f5565b925050819055508061200590613432565b9050611f94565b505b505050505050565b6120358473ffffffffffffffffffffffffffffffffffffffff16612466565b156121f5578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b815260040161207b959493929190613da0565b602060405180830381600087803b15801561209557600080fd5b505af19250505080156120c657506040513d601f19601f820116820180604052508101906120c39190613e1d565b60015b61216c576120d2613e57565b806308c379a0141561212f57506120e7613e79565b806120f25750612131565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121269190612782565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216390613f81565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146121f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ea90614013565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561221c5761221b6127d6565b5b60405190808252806020026020018201604052801561224a5781602001602082028036833780820191505090505b5090508281600081518110612262576122616133d4565b5b60200260200101818152505080915050919050565b6122968473ffffffffffffffffffffffffffffffffffffffff16612466565b15612456578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016122dc959493929190614033565b602060405180830381600087803b1580156122f657600080fd5b505af192505050801561232757506040513d601f19601f820116820180604052508101906123249190613e1d565b60015b6123cd57612333613e57565b806308c379a014156123905750612348613e79565b806123535750612392565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123879190612782565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c490613f81565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244b90614013565b60405180910390fd5b505b505050505050565b505050505050565b600080823b905060008111915050919050565b82805461248590612ffd565b90600052602060002090601f0160209004810192826124a757600085556124ee565b82601f106124c057805160ff19168380011785556124ee565b828001600101855582156124ee579182015b828111156124ed5782518255916020019190600101906124d2565b5b5090506124fb91906124ff565b5090565b5b80821115612518576000816000905550600101612500565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061255b82612530565b9050919050565b61256b81612550565b811461257657600080fd5b50565b60008135905061258881612562565b92915050565b6000819050919050565b6125a18161258e565b81146125ac57600080fd5b50565b6000813590506125be81612598565b92915050565b600080604083850312156125db576125da612526565b5b60006125e985828601612579565b92505060206125fa858286016125af565b9150509250929050565b61260d8161258e565b82525050565b60006020820190506126286000830184612604565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6126638161262e565b811461266e57600080fd5b50565b6000813590506126808161265a565b92915050565b60006020828403121561269c5761269b612526565b5b60006126aa84828501612671565b91505092915050565b60008115159050919050565b6126c8816126b3565b82525050565b60006020820190506126e360008301846126bf565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612723578082015181840152602081019050612708565b83811115612732576000848401525b50505050565b6000601f19601f8301169050919050565b6000612754826126e9565b61275e81856126f4565b935061276e818560208601612705565b61277781612738565b840191505092915050565b6000602082019050818103600083015261279c8184612749565b905092915050565b6000602082840312156127ba576127b9612526565b5b60006127c8848285016125af565b91505092915050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61280e82612738565b810181811067ffffffffffffffff8211171561282d5761282c6127d6565b5b80604052505050565b600061284061251c565b905061284c8282612805565b919050565b600067ffffffffffffffff82111561286c5761286b6127d6565b5b602082029050602081019050919050565b600080fd5b600061289561289084612851565b612836565b905080838252602082019050602084028301858111156128b8576128b761287d565b5b835b818110156128e157806128cd88826125af565b8452602084019350506020810190506128ba565b5050509392505050565b600082601f830112612900576128ff6127d1565b5b8135612910848260208601612882565b91505092915050565b600080fd5b600067ffffffffffffffff821115612939576129386127d6565b5b61294282612738565b9050602081019050919050565b82818337600083830152505050565b600061297161296c8461291e565b612836565b90508281526020810184848401111561298d5761298c612919565b5b61299884828561294f565b509392505050565b600082601f8301126129b5576129b46127d1565b5b81356129c584826020860161295e565b91505092915050565b600080600080600060a086880312156129ea576129e9612526565b5b60006129f888828901612579565b9550506020612a0988828901612579565b945050604086013567ffffffffffffffff811115612a2a57612a2961252b565b5b612a36888289016128eb565b935050606086013567ffffffffffffffff811115612a5757612a5661252b565b5b612a63888289016128eb565b925050608086013567ffffffffffffffff811115612a8457612a8361252b565b5b612a90888289016129a0565b9150509295509295909350565b600067ffffffffffffffff821115612ab857612ab76127d6565b5b612ac182612738565b9050602081019050919050565b6000612ae1612adc84612a9d565b612836565b905082815260208101848484011115612afd57612afc612919565b5b612b0884828561294f565b509392505050565b600082601f830112612b2557612b246127d1565b5b8135612b35848260208601612ace565b91505092915050565b600060208284031215612b5457612b53612526565b5b600082013567ffffffffffffffff811115612b7257612b7161252b565b5b612b7e84828501612b10565b91505092915050565b600067ffffffffffffffff821115612ba257612ba16127d6565b5b602082029050602081019050919050565b6000612bc6612bc184612b87565b612836565b90508083825260208201905060208402830185811115612be957612be861287d565b5b835b81811015612c125780612bfe8882612579565b845260208401935050602081019050612beb565b5050509392505050565b600082601f830112612c3157612c306127d1565b5b8135612c41848260208601612bb3565b91505092915050565b60008060408385031215612c6157612c60612526565b5b600083013567ffffffffffffffff811115612c7f57612c7e61252b565b5b612c8b85828601612c1c565b925050602083013567ffffffffffffffff811115612cac57612cab61252b565b5b612cb8858286016128eb565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612cf78161258e565b82525050565b6000612d098383612cee565b60208301905092915050565b6000602082019050919050565b6000612d2d82612cc2565b612d378185612ccd565b9350612d4283612cde565b8060005b83811015612d73578151612d5a8882612cfd565b9750612d6583612d15565b925050600181019050612d46565b5085935050505092915050565b60006020820190508181036000830152612d9a8184612d22565b905092915050565b612dab81612550565b82525050565b6000602082019050612dc66000830184612da2565b92915050565b612dd5816126b3565b8114612de057600080fd5b50565b600081359050612df281612dcc565b92915050565b60008060408385031215612e0f57612e0e612526565b5b6000612e1d85828601612579565b9250506020612e2e85828601612de3565b9150509250929050565b60008060408385031215612e4f57612e4e612526565b5b6000612e5d85828601612579565b9250506020612e6e85828601612579565b9150509250929050565b600060208284031215612e8e57612e8d612526565b5b6000612e9c84828501612579565b91505092915050565b600080600080600060a08688031215612ec157612ec0612526565b5b6000612ecf88828901612579565b9550506020612ee088828901612579565b9450506040612ef1888289016125af565b9350506060612f02888289016125af565b925050608086013567ffffffffffffffff811115612f2357612f2261252b565b5b612f2f888289016129a0565b9150509295509295909350565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000612f98602b836126f4565b9150612fa382612f3c565b604082019050919050565b60006020820190508181036000830152612fc781612f8b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061301557607f821691505b6020821081141561302957613028612fce565b5b50919050565b7f5552493a206e6f6e6578697374656e7420746f6b656e00000000000000000000600082015250565b60006130656016836126f4565b91506130708261302f565b602082019050919050565b6000602082019050818103600083015261309481613058565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b600081546130c881612ffd565b6130d2818661309b565b945060018216600081146130ed57600181146130fe57613131565b60ff19831686528186019350613131565b613107856130a6565b60005b838110156131295781548189015260018201915060208101905061310a565b838801955050505b50505092915050565b6000613145826126e9565b61314f818561309b565b935061315f818560208601612705565b80840191505092915050565b600061317782856130bb565b9150613183828461313a565b91508190509392505050565b600081519050919050565b600081905092915050565b60006131b08261318f565b6131ba818561319a565b93506131ca818560208601612705565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061320c60058361309b565b9150613217826131d6565b600582019050919050565b600061322e82846131a5565b9150613239826131ff565b915081905092915050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006132a06032836126f4565b91506132ab82613244565b604082019050919050565b600060208201905081810360008301526132cf81613293565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061330c6020836126f4565b9150613317826132d6565b602082019050919050565b6000602082019050818103600083015261333b816132ff565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b600061339e6029836126f4565b91506133a982613342565b604082019050919050565b600060208201905081810360008301526133cd81613391565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061343d8261258e565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134705761346f613403565b5b600182019050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b60006134b16010836126f4565b91506134bc8261347b565b602082019050919050565b600060208201905081810360008301526134e0816134a4565b9050919050565b7f5075646779417065735370656369616c733a204d617820737570706c7920726560008201527f6163686564000000000000000000000000000000000000000000000000000000602082015250565b60006135436025836126f4565b915061354e826134e7565b604082019050919050565b6000602082019050818103600083015261357281613536565b9050919050565b7f5075646779417065735370656369616c733a20596f75206861766520616c726560008201527f61647920636c61696d6564207468652067696674210000000000000000000000602082015250565b60006135d56035836126f4565b91506135e082613579565b604082019050919050565b60006020820190508181036000830152613604816135c8565b9050919050565b60008151905061361a81612598565b92915050565b60006020828403121561363657613635612526565b5b60006136448482850161360b565b91505092915050565b7f5075646779417065735370656369616c733a20596f7520646f6e2774206f776e60008201527f2074686520507564677941706521000000000000000000000000000000000000602082015250565b60006136a9602e836126f4565b91506136b48261364d565b604082019050919050565b600060208201905081810360008301526136d88161369c565b9050919050565b7f5075646779417065735370656369616c733a205075646779417065732061646460008201527f726573732063616e6e6f74206265203021000000000000000000000000000000602082015250565b600061373b6031836126f4565b9150613746826136df565b604082019050919050565b6000602082019050818103600083015261376a8161372e565b9050919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b60006137cd6029836126f4565b91506137d882613771565b604082019050919050565b600060208201905081810360008301526137fc816137c0565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061385f6026836126f4565b915061386a82613803565b604082019050919050565b6000602082019050818103600083015261388e81613852565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006138cf8261258e565b91506138da8361258e565b9250826138ea576138e9613895565b5b828204905092915050565b60006139008261258e565b915061390b8361258e565b92508282101561391e5761391d613403565b5b828203905092915050565b60006139348261258e565b915061393f8361258e565b92508261394f5761394e613895565b5b828206905092915050565b60006139658261258e565b91506139708361258e565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156139a5576139a4613403565b5b828201905092915050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000613a0c6028836126f4565b9150613a17826139b0565b604082019050919050565b60006020820190508181036000830152613a3b816139ff565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613a9e6025836126f4565b9150613aa982613a42565b604082019050919050565b60006020820190508181036000830152613acd81613a91565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000613b30602a836126f4565b9150613b3b82613ad4565b604082019050919050565b60006020820190508181036000830152613b5f81613b23565b9050919050565b60006040820190508181036000830152613b808185612d22565b90508181036020830152613b948184612d22565b90509392505050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000613bd36014836126f4565b9150613bde82613b9d565b602082019050919050565b60006020820190508181036000830152613c0281613bc6565b9050919050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000613c656021836126f4565b9150613c7082613c09565b604082019050919050565b60006020820190508181036000830152613c9481613c58565b9050919050565b6000604082019050613cb06000830185612604565b613cbd6020830184612604565b9392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000613d206029836126f4565b9150613d2b82613cc4565b604082019050919050565b60006020820190508181036000830152613d4f81613d13565b9050919050565b600082825260208201905092915050565b6000613d728261318f565b613d7c8185613d56565b9350613d8c818560208601612705565b613d9581612738565b840191505092915050565b600060a082019050613db56000830188612da2565b613dc26020830187612da2565b8181036040830152613dd48186612d22565b90508181036060830152613de88185612d22565b90508181036080830152613dfc8184613d67565b90509695505050505050565b600081519050613e178161265a565b92915050565b600060208284031215613e3357613e32612526565b5b6000613e4184828501613e08565b91505092915050565b60008160e01c9050919050565b600060033d1115613e765760046000803e613e73600051613e4a565b90505b90565b600060443d1015613e8957613f0c565b613e9161251c565b60043d036004823e80513d602482011167ffffffffffffffff82111715613eb9575050613f0c565b808201805167ffffffffffffffff811115613ed75750505050613f0c565b80602083010160043d038501811115613ef4575050505050613f0c565b613f0382602001850186612805565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000613f6b6034836126f4565b9150613f7682613f0f565b604082019050919050565b60006020820190508181036000830152613f9a81613f5e565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000613ffd6028836126f4565b915061400882613fa1565b604082019050919050565b6000602082019050818103600083015261402c81613ff0565b9050919050565b600060a0820190506140486000830188612da2565b6140556020830187612da2565b6140626040830186612604565b61406f6060830185612604565b81810360808301526140818184613d67565b9050969550505050505056fea26469706673582212203dd9d8ca72a4684a40ebc4a2b83be6559f643a7456542020e2968e331526a07a64736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000f9aba9fa6abd858a94f9eefe0f9d51ca2c112250000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d55576b514b74326845755354583676446a464533773347536f6235686d4578453378564d39737965345470412f00000000000000000000

-----Decoded View---------------
Arg [0] : _uri (string): ipfs://QmUWkQKt2hEuSTX6vDjFE3w3GSob5hmExE3xVM9sye4TpA/
Arg [1] : _pudgyApesAddress (address): 0x0f9ABa9fA6aBd858a94f9EEfE0F9D51ca2C11225

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000f9aba9fa6abd858a94f9eefe0f9d51ca2c11225
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d55576b514b74326845755354583676446a464533773347
Arg [4] : 536f6235686d4578453378564d39737965345470412f00000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.