NFT
Overview
TokenID
1668
Transfers
-
0
Market
Onchain Market Cap
-
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
| # | Exchange | Pair | Price | 24H Volume | % Volume |
|---|
Contract Name:
PunkScape
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 1000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@1001-digital/erc721-extensions/contracts/WithContractMetaData.sol";
import "@1001-digital/erc721-extensions/contracts/RandomlyAssigned.sol";
import "@1001-digital/erc721-extensions/contracts/WithIPFSMetaData.sol";
import "@1001-digital/erc721-extensions/contracts/WithWithdrawals.sol";
import "@1001-digital/erc721-extensions/contracts/WithSaleStart.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "./CryptoPunkInterface.sol";
import "./OneDayPunk.sol";
import "./WithMarketOffers.sol";
// ████████████████████████████████████████████████████████████████████████████████████ //
// ██ ██ //
// ██ ██ //
// ██ ██████ ██ ██ ███ ██ ██ ██ ███████ ██████ █████ ██████ ███████ ██ //
// ██ ██ ██ ██ ██ ████ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ //
// ██ ██████ ██ ██ ██ ██ ██ █████ ███████ ██ ███████ ██████ █████ ██ //
// ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ ██ //
// ██ ██ ██████ ██ ████ ██ ██ ███████ ██████ ██ ██ ██ ███████ ██ //
// ██ ██ //
// ██ ██ //
// ████████████████████████████████████████████████████████████████████████████████████ //
contract PunkScape is
ERC721,
Ownable,
WithSaleStart,
WithWithdrawals,
WithIPFSMetaData,
RandomlyAssigned,
WithMarketOffers,
WithContractMetaData
{
uint256 public price = 0.03 ether;
string constant public provenanceHash = "Qme5GyE2rUHeSSHPeXdvGBAqQdLxzE31J1HTP6aJPJcGgA";
bool public frozen = false;
address private cryptoPunksAddress;
address private oneDayPunkAddress;
/// Stores the PunkScape that was claimed during
/// early access for each OneDayPunk.
mapping(uint256 => uint256) public oneDayPunkToPunkScape;
/// Instantiate the PunkScape Contract
constructor(
address payable _punkscape,
string memory _cid,
uint256 _saleStart,
string memory _contractMetaDataURI,
address _cryptoPunksAddress,
address _oneDayPunkAddress
)
ERC721("PunkScape", "PS")
WithIPFSMetaData(_cid)
WithMarketOffers(_punkscape, 500)
WithSaleStart(_saleStart)
RandomlyAssigned(10000, 1)
WithContractMetaData(_contractMetaDataURI)
{
cryptoPunksAddress = _cryptoPunksAddress;
oneDayPunkAddress = _oneDayPunkAddress;
}
/// Claim a PunkScape for a given OneDayPunk during early access.
/// The scape will be sent to the owner of the OneDayPunk.
function claimForOneDayPunk(uint256 oneDayPunkId) external payable
afterSaleStart
ensureAvailability
{
OneDayPunk oneDayPunk = OneDayPunk(oneDayPunkAddress);
address owner = oneDayPunk.ownerOf(oneDayPunkId);
require(
msg.value >= price,
"Pay up, friend"
);
require(
oneDayPunkToPunkScape[oneDayPunkId] == 0,
"PunkScape for this OneDayPunk has already been claimed"
);
// Get the token ID
uint256 newScape = nextToken();
// Redeem the PunkScape for the given OneDayPunk
oneDayPunkToPunkScape[oneDayPunkId] = newScape;
// Mint the token
_safeMint(owner, newScape);
}
/// General claiming phase starts 618 minutes after OneDayPunk sale start. Why?
/// Because that's the amount of time it took for all OneDayPunks to sell out.
function claimAfter618Minutes(uint256 amount) external payable
ensureAvailabilityFor(amount)
{
uint256 _saleStart = saleStart();
// General claiming only available 618 minutes after sale start.
require(
block.timestamp > (_saleStart + 618 * 60),
"General claiming phase starts 618 minutes after sale start"
);
// Can mint up to three PunkScapes per transaction.
require(
amount > 0,
"Have to mint at least one PunkScape"
);
require(
amount <= 3,
"Can't mint more than 3 PunkScapes per transaction"
);
require(
msg.value >= (price * amount),
"Pay up, friend"
);
// Within the first 24 hours only OneDayPunk / CryptoPunk holders can mint.
if (block.timestamp < (_saleStart + 24 * 60 * 60)) {
CryptoPunks cryptoPunks = CryptoPunks(cryptoPunksAddress);
OneDayPunk oneDayPunk = OneDayPunk(oneDayPunkAddress);
require(
oneDayPunk.balanceOf(msg.sender) == 1 ||
cryptoPunks.balanceOf(msg.sender) >= 1,
"You have to own a CryptoPunk or a OneDayPunk to mint a PunkScape"
);
}
// Mint the new tokens
for (uint256 index = 0; index < amount; index++) {
uint256 newScape = nextToken();
_safeMint(msg.sender, newScape);
}
}
/// Allow the contract owner to update the IPFS content identifier until sale starts.
function setCID(string memory _cid) external onlyOwner {
require(frozen == false, "Metadata is frozen");
_setCID(_cid);
}
/// Allow the contract owner to freeze the metadata.
function freezeCID() external onlyOwner {
frozen = true;
}
/// Get the tokenURI for a specific token
function tokenURI(uint256 tokenId)
public view override(WithIPFSMetaData, ERC721)
returns (string memory)
{
return WithIPFSMetaData.tokenURI(tokenId);
}
/// Configure the baseURI for the tokenURI method
function _baseURI()
internal view override(WithIPFSMetaData, ERC721)
returns (string memory)
{
return WithIPFSMetaData._baseURI();
}
/// We support the `HasSecondarySalesFees` interface
function supportsInterface(bytes4 interfaceId)
public view override(WithMarketOffers, ERC721)
returns (bool)
{
return WithMarketOffers.supportsInterface(interfaceId);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
/// @author 1001.digital
/// @title Link to your collection's contract meta data right from within your smart contract.
abstract contract WithContractMetaData is Ownable {
// The URI to the contract meta data.
string private _contractURI;
/// Instanciate the contract
/// @param uri the URL to the contract metadata
constructor (string memory uri) {
_contractURI = uri;
}
/// Set the contract metadata URI
/// @param uri the URI to set
/// @dev the contract metadata should link to a metadata JSON file.
function setContractURI(string memory uri) public virtual onlyOwner {
_contractURI = uri;
}
/// Expose the contractURI
/// @return the contract metadata URI.
function contractURI() public view virtual returns (string memory) {
return _contractURI;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./WithLimitedSupply.sol";
/// @author 1001.digital
/// @title Randomly assign tokenIDs from a given set of tokens.
abstract contract RandomlyAssigned is WithLimitedSupply {
// Used for random index assignment
mapping(uint256 => uint256) private tokenMatrix;
// The initial token ID
uint256 private startFrom;
/// Instanciate the contract
/// @param _totalSupply how many tokens this collection should hold
/// @param _startFrom the tokenID with which to start counting
constructor (uint256 _totalSupply, uint256 _startFrom)
WithLimitedSupply(_totalSupply)
{
startFrom = _startFrom;
}
/// Get the next token ID
/// @dev Randomly gets a new token ID and keeps track of the ones that are still available.
/// @return the next token ID
function nextToken() internal override ensureAvailability returns (uint256) {
uint256 maxIndex = totalSupply() - tokenCount();
uint256 random = uint256(keccak256(
abi.encodePacked(
msg.sender,
block.coinbase,
block.difficulty,
block.gaslimit,
block.timestamp
)
)) % maxIndex;
uint256 value = 0;
if (tokenMatrix[random] == 0) {
// If this matrix position is empty, set the value to the generated random number.
value = random;
} else {
// Otherwise, use the previously stored number from the matrix.
value = tokenMatrix[random];
}
// If the last available tokenID is still unused...
if (tokenMatrix[maxIndex - 1] == 0) {
// ...store that ID in the current matrix position.
tokenMatrix[random] = maxIndex - 1;
} else {
// ...otherwise copy over the stored number to the current matrix position.
tokenMatrix[random] = tokenMatrix[maxIndex - 1];
}
// Increment counts
super.nextToken();
return value + startFrom;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
/// @author 1001.digital
/// @title Handle NFT Metadata stored on IPFS
abstract contract WithIPFSMetaData is ERC721 {
using Strings for uint256;
/// @dev The content identifier of the folder containing all JSON files.
string public cid;
/// Instantiate the contract
/// @param _cid the content identifier for the token metadata.
/// @dev be careful & make sure your metadata is correct - you can't change this
constructor (string memory _cid) {
_setCID(_cid);
}
/// Get the tokenURI for a tokenID
/// @param tokenId the token id for which to get the matadata URL
/// @dev links to the metadata json file on IPFS.
/// @return the URL to the token metadata file
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
// We don't check whether the _baseURI is set like in the OpenZeppelin implementation
// as we're deploying the contract with the CID.
return string(abi.encodePacked(
_baseURI(), "/", tokenId.toString(), "/metadata.json"
));
}
/// Configure the baseURI for the tokenURI method.
/// @dev override the standard OpenZeppelin implementation
/// @return the IPFS base uri
function _baseURI() internal view virtual override returns (string memory) {
return string(abi.encodePacked("ipfs://", cid));
}
/// Set the content identifier for this collection.
/// @param _cid the new content identifier
/// @dev update the content identifier for this nft.
function _setCID(string memory _cid) internal virtual {
cid = _cid;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
/// @author 1001.digital
/// @title An extension that enables the contract owner to withdraw funds stored in the contract.
abstract contract WithWithdrawals is Ownable
{
/// Withdraws the ETH stored in the contract.
/// @dev only the owner can withdraw funds.
function withdraw() onlyOwner public {
payable(owner()).transfer(address(this).balance);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
/// @author 1001.digital
/// @title An extension that enables the contract owner to set and update the date of a public sale.
abstract contract WithSaleStart is Ownable
{
// Stores the sale start time
uint256 private _saleStart;
/// @dev Emitted when the sale start date changes
event SaleStartChanged(uint256 time);
/// @dev Initialize with a given timestamp when to start the sale
constructor (uint256 time) {
_saleStart = time;
}
/// @dev Sets the start of the sale. Only owners can do so.
function setSaleStart(uint256 time) public virtual onlyOwner beforeSaleStart {
_saleStart = time;
emit SaleStartChanged(time);
}
/// @dev Returns the start of the sale in seconds since the Unix Epoch
function saleStart() public view virtual returns (uint256) {
return _saleStart;
}
/// @dev Returns true if the sale has started
function saleStarted() public view virtual returns (bool) {
return _saleStart <= block.timestamp;
}
/// @dev Modifier to make a function callable only after sale start
modifier afterSaleStart() {
require(saleStarted(), "Sale hasn't started yet");
_;
}
/// @dev Modifier to make a function callable only before sale start
modifier beforeSaleStart() {
require(! saleStarted(), "Sale has already started");
_;
}
}// SPDX-License-Identifier: MIT
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;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension, but not including the Enumerable extension, which is available separately as
* {ERC721Enumerable}.
*/
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to owner address
mapping(uint256 => address) private _owners;
// Mapping owner address to token count
mapping(address => uint256) private _balances;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
/**
* @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
*/
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
require(owner != address(0), "ERC721: balance query for the zero address");
return _balances[owner];
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
address owner = _owners[tokenId];
require(owner != address(0), "ERC721: owner query for nonexistent token");
return owner;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory baseURI = _baseURI();
return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public virtual override {
address owner = ERC721.ownerOf(tokenId);
require(to != owner, "ERC721: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721: approve caller is not owner nor approved for all"
);
_approve(to, tokenId);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
require(_exists(tokenId), "ERC721: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
//solhint-disable-next-line max-line-length
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
_safeTransfer(from, to, tokenId, _data);
}
/**
* @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.
*
* `_data` is additional data, it has no specified format and it is sent in call to `to`.
*
* This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
* implement alternative mechanisms to perform token transfer, such as signature-based.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeTransfer(
address from,
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_transfer(from, to, tokenId);
require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
* and stop existing when they are burned (`_burn`).
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return _owners[tokenId] != address(0);
}
/**
* @dev Returns whether `spender` is allowed to manage `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
require(_exists(tokenId), "ERC721: operator query for nonexistent token");
address owner = ERC721.ownerOf(tokenId);
return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
}
/**
* @dev Safely mints `tokenId` and transfers it to `to`.
*
* Requirements:
*
* - `tokenId` must not exist.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function _safeMint(address to, uint256 tokenId) internal virtual {
_safeMint(to, tokenId, "");
}
/**
* @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
* forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
*/
function _safeMint(
address to,
uint256 tokenId,
bytes memory _data
) internal virtual {
_mint(to, tokenId);
require(
_checkOnERC721Received(address(0), to, tokenId, _data),
"ERC721: transfer to non ERC721Receiver implementer"
);
}
/**
* @dev Mints `tokenId` and transfers it to `to`.
*
* WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
*
* Requirements:
*
* - `tokenId` must not exist.
* - `to` cannot be the zero address.
*
* Emits a {Transfer} event.
*/
function _mint(address to, uint256 tokenId) internal virtual {
require(to != address(0), "ERC721: mint to the zero address");
require(!_exists(tokenId), "ERC721: token already minted");
_beforeTokenTransfer(address(0), to, tokenId);
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(address(0), to, tokenId);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver.onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before any token transfer. This includes minting
* and burning.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, ``from``'s `tokenId` will be burned.
* - `from` and `to` are never both zero.
*
* To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
*/
function _beforeTokenTransfer(
address from,
address to,
uint256 tokenId
) internal virtual {}
}// SPDX-License-Identifier: MIT
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() {
_setOwner(_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 {
_setOwner(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");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface CryptoPunks {
function balanceOf(address owner) external view returns(uint256);
function punkIndexToAddress(uint index) external view returns(address);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@1001-digital/erc721-extensions/contracts/RandomlyAssigned.sol";
import "@1001-digital/erc721-extensions/contracts/WithContractMetaData.sol";
import "@1001-digital/erc721-extensions/contracts/WithIPFSMetaData.sol";
import "@1001-digital/erc721-extensions/contracts/OnePerWallet.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "./CryptoPunkInterface.sol";
// ====================================================================================================================== //
// ______ __ __ ______ _____ ______ __ __ ______ __ __ __ __ __ __ //
// /\ __ \ /\ "-.\ \ /\ ___\ /\ __-. /\ __ \ /\ \_\ \ /\ == \ /\ \/\ \ /\ "-.\ \ /\ \/ / //
// \ \ \/\ \ \ \ \-. \ \ \ __\ \ \ \/\ \ \ \ __ \ \ \____ \ \ \ _-/ \ \ \_\ \ \ \ \-. \ \ \ _"-. //
// \ \_____\ \ \_\\"\_\ \ \_____\ \ \____- \ \_\ \_\ \/\_____\ \ \_\ \ \_____\ \ \_\\"\_\ \ \_\ \_\ //
// \/_____/ \/_/ \/_/ \/_____/ \/____/ \/_/\/_/ \/_____/ \/_/ \/_____/ \/_/ \/_/ \/_/\/_/ //
// //
// ====================================================================================================================== //
// 10k "ONE DAY I'LL BE A PUNK"-punks //
// limited to one per address //
// aim high, fren! //
// ====================================================================================================================== //
contract OneDayPunk is
ERC721,
OnePerWallet,
RandomlyAssigned,
WithIPFSMetaData,
WithContractMetaData
{
address private cryptoPunksAddress;
// Instantiate the OneDayPunk Contract
constructor(
string memory _cid,
string memory _contractMetaDataURI,
address _cryptopunksAddress
)
ERC721("OneDayPunk", "ODP")
RandomlyAssigned(10000, 0)
WithIPFSMetaData(_cid)
WithContractMetaData(_contractMetaDataURI)
{
cryptoPunksAddress = _cryptopunksAddress;
}
// Claim a "One Day I'll Be A Punk"-Punk
function claim() external {
_claim(msg.sender);
}
// Claim a "One Day I'll Be A Punk"-Punk to a specific address
function claimFor(address to) external {
_claim(to);
}
// Claims a token for a specific address.
function _claim (address to) internal ensureAvailability onePerWallet(to) {
CryptoPunks cryptopunks = CryptoPunks(cryptoPunksAddress);
require(cryptopunks.balanceOf(to) == 0, "You lucky one already have a CryptoPunk.");
uint256 next = nextToken();
_safeMint(to, next);
}
// Get the tokenURI for a specific token
function tokenURI(uint256 tokenId)
public view override(WithIPFSMetaData, ERC721)
returns (string memory)
{
return WithIPFSMetaData.tokenURI(tokenId);
}
// Configure the baseURI for the tokenURI method.
function _baseURI()
internal view override(WithIPFSMetaData, ERC721)
returns (string memory)
{
return WithIPFSMetaData._baseURI();
}
// Mark OnePerWallet implementation as override for ERC721, OnePerWallet
function _mint(address to, uint256 tokenId) internal override(ERC721, OnePerWallet) {
OnePerWallet._mint(to, tokenId);
}
// Mark OnePerWallet implementation as override for ERC721, OnePerWallet
function _transfer(address from, address to, uint256 tokenId) internal override(ERC721, OnePerWallet) {
OnePerWallet._transfer(from, to, tokenId);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@1001-digital/erc721-extensions/contracts/WithFees.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
/// @author 1001.digital
/// @title Implement a basic integrated marketplace with fees
abstract contract WithMarketOffers is ERC721, WithFees {
event OfferCreated(uint256 indexed tokenId, uint256 indexed value, address indexed to);
event OfferWithdrawn(uint256 indexed tokenId);
event Sale(uint256 indexed tokenId, address indexed from, address indexed to, uint256 value);
struct Offer {
uint256 price;
address payable specificBuyer;
}
/// @dev All active offers
mapping (uint256 => Offer) private _offers;
/// Instantiate the contract
/// @param _feeRecipient the fee recipient for secondary sales
/// @param _bps the basis points measure for the fees
constructor (address payable _feeRecipient, uint256 _bps)
WithFees(_feeRecipient, _bps)
{}
/// @dev All active offers
function offerFor(uint256 tokenId) external view returns(Offer memory) {
require(_offers[tokenId].price > 0, "No active offer for this item");
return _offers[tokenId];
}
function _makeOffer(uint256 tokenId, uint256 price, address to) internal {
require(_isApprovedOrOwner(_msgSender(), tokenId), "Caller is neither owner nor approved");
require(price > 0, "Price should be higher than 0");
require(price > _offers[tokenId].price, "Price should be higher than existing offer");
_offers[tokenId] = Offer(price, payable(to));
emit OfferCreated(tokenId, price, to);
}
/// @dev Make a new offer
function makeOffer(uint256 tokenId, uint256 price) external {
_makeOffer(tokenId, price, address(0));
}
/// @dev Make a new offer to a specific person
function makeOfferTo(uint256 tokenId, uint256 price, address to) external {
_makeOffer(tokenId, price, to);
}
/// @dev Revoke an active offer
function cancelOffer(uint256 tokenId) external {
require(_isApprovedOrOwner(_msgSender(), tokenId), "Caller is neither owner nor approved");
delete _offers[tokenId];
emit OfferWithdrawn(tokenId);
}
/// @dev Buy an item that is for offer
function buy(uint256 tokenId) external payable isForSale(tokenId) {
Offer memory offer = _offers[tokenId];
address payable seller = payable(ownerOf(tokenId));
// If it is a private sale, make sure the buyer is the private sale recipient.
if (offer.specificBuyer != address(0)) {
require(offer.specificBuyer == msg.sender, "Can't buy a privately offered item");
}
require(msg.value >= offer.price, "Price not met");
// Seller gets msg value - fees set as BPS.
seller.transfer(msg.value - (offer.price * bps / 10000));
// We transfer the token.
_safeTransfer(seller, msg.sender, tokenId, "");
emit Sale(tokenId, seller, msg.sender, offer.price);
delete _offers[tokenId];
}
/// @dev Check whether the token is for sale
modifier isForSale(uint256 tokenId) {
require(_offers[tokenId].price > 0, "Item not for sale");
_;
}
/// We support the `HasSecondarySalesFees` interface
function supportsInterface(bytes4 interfaceId)
public view virtual override(WithFees, ERC721)
returns (bool)
{
return WithFees.supportsInterface(interfaceId);
}
}// SPDX-License-Identifier: MIT
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;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/Counters.sol";
/// @author 1001.digital
/// @title A token tracker that limits the token supply and increments token IDs on each new mint.
abstract contract WithLimitedSupply {
using Counters for Counters.Counter;
// Keeps track of how many we have minted
Counters.Counter private _tokenCount;
/// @dev The maximum count of tokens this token tracker will hold.
uint256 private _totalSupply;
/// Instanciate the contract
/// @param totalSupply_ how many tokens this collection should hold
constructor (uint256 totalSupply_) {
_totalSupply = totalSupply_;
}
/// @dev Get the max Supply
/// @return the maximum token count
function totalSupply() public view returns (uint256) {
return _totalSupply;
}
/// @dev Get the current token count
/// @return the created token count
function tokenCount() public view returns (uint256) {
return _tokenCount.current();
}
/// @dev Check whether tokens are still available
/// @return the available token count
function availableTokenCount() public view returns (uint256) {
return totalSupply() - tokenCount();
}
/// @dev Increment the token count and fetch the latest count
/// @return the next token id
function nextToken() internal virtual ensureAvailability returns (uint256) {
uint256 token = _tokenCount.current();
_tokenCount.increment();
return token;
}
/// @dev Check whether another token is still available
modifier ensureAvailability() {
require(availableTokenCount() > 0, "No more tokens available");
_;
}
/// @param amount Check whether number of tokens are still available
/// @dev Check whether tokens are still available
modifier ensureAvailabilityFor(uint256 amount) {
require(availableTokenCount() >= amount, "Requested number of tokens not available");
_;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title Counters
* @author Matt Condon (@shrugs)
* @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
* of elements in a mapping, issuing ERC721 ids, or counting request ids.
*
* Include with `using Counters for Counters.Counter;`
*/
library Counters {
struct Counter {
// This variable should never be directly accessed by users of the library: interactions must be restricted to
// the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
// this feature: see https://github.com/ethereum/solidity/issues/4637
uint256 _value; // default: 0
}
function current(Counter storage counter) internal view returns (uint256) {
return counter._value;
}
function increment(Counter storage counter) internal {
unchecked {
counter._value += 1;
}
}
function decrement(Counter storage counter) internal {
uint256 value = counter._value;
require(value > 0, "Counter: decrement overflow");
unchecked {
counter._value = value - 1;
}
}
function reset(Counter storage counter) internal {
counter._value = 0;
}
}// SPDX-License-Identifier: MIT
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);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
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);
}
}
}
}// SPDX-License-Identifier: MIT
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;
}
}// SPDX-License-Identifier: MIT
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);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@1001-digital/check-address/contracts/CheckAddress.sol";
/// @author 1001.digital
/// @title An extension that enables checking that an address only holds one token.
abstract contract OnePerWallet is ERC721 {
// Mapping owner address to token
mapping (address => uint256) private _ownedToken;
/// Require an externally owned account to only hold one token.
/// @param wallet the address to check
/// @dev Only allow one token per wallet
modifier onePerWallet(address wallet) {
if (CheckAddress.isExternal(wallet)) {
require(_ownedToken[wallet] == 0, "Can only hold one token per wallet");
}
_;
}
/// Require any account on the network to only hold one token.
/// @param account the address to checkk
/// @dev Only allow one token per account
modifier onePerAccount(address account) {
require(
msg.sender == tx.origin &&
_ownedToken[account] == 0,
"Can only hold one token per account"
);
_;
}
/// Query the owner of a token.
/// @param owner the address of the owner
/// @dev Get the the token of an owner
function tokenOf(address owner) public view virtual returns (uint256) {
require(_ownedToken[owner] > 0, "No token for this account.");
// We subtract 1 as we added 1 to account for 0-index based collections
return _ownedToken[owner] - 1;
}
/// Store `_ownedToken` instead of `_balances`.
/// @param to the address to which to mint the token
/// @param tokenId the tokenId that should be minted
/// @dev overrides the OpenZeppelin `_mint` method to accomodate for our own balance tracker
function _mint(address to, uint256 tokenId) internal virtual override onePerWallet(to) {
super._mint(to, tokenId);
// We add one to account for 0-index based collections
_ownedToken[to] = tokenId + 1;
}
/// Track transfers in `_ownedToken` instead of `_balances`
/// @param from the address from which to transfer the token
/// @param to the address to which to transfer the token
/// @param tokenId the tokenId that is being transferred
/// @dev overrides the OpenZeppelin `_transfer` method to accomodate for our own balance tracker
function _transfer(address from, address to, uint256 tokenId) internal virtual override onePerWallet(to) {
super._transfer(from, to, tokenId);
_ownedToken[from] = 0;
// We add one to account for 0-index based collections
_ownedToken[to] = tokenId + 1;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/// @author 1001.digital
/// @title A helper to distinguish external and contract addresses
library CheckAddress {
/// Check whether an address is a smart contract.
/// @param account the address to check
/// @dev checks if the `extcodesize` of `address` is greater zero
/// @return true for contracts
function isContract(address account) external view returns (bool) {
return getSize(account) > 0;
}
/// Check whether an address is an external wallet.
/// @param account the address to check
/// @dev checks if the `extcodesize` of `address` is zero
/// @return true for external wallets
function isExternal(address account) external view returns (bool) {
return getSize(account) == 0;
}
/// Get the size of the code of an address
/// @param account the address to check
/// @dev gets the `extcodesize` of `address`
/// @return the size of the address
function getSize(address account) internal view returns (uint256) {
uint256 size;
assembly {
size := extcodesize(account)
}
return size;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "./standards/HasSecondarySaleFees.sol";
/// @author 1001.digital
/// @title Implements the various fee standards that are floating around.
/// @dev We need a proper standard for this.
abstract contract WithFees is ERC721, HasSecondarySaleFees {
// The address to pay fees to
address payable internal beneficiary;
// The fee basis points
uint256 internal bps;
/// Instanciate the contract
/// @param _beneficiary the address to send fees to
/// @param _bps the basis points measure for the fees
constructor (address payable _beneficiary, uint256 _bps) {
beneficiary = _beneficiary;
bps = _bps;
}
/// Implement the `HasSecondarySalesFees` Contract
/// @dev implements the standard pushed by Rarible
/// @return list of fee recipients, in our case always one
function getFeeRecipients(uint256) public view override returns (address payable[] memory) {
address payable[] memory recipients = new address payable[](1);
recipients[0] = beneficiary;
return recipients;
}
/// Implement the `HasSecondarySalesFees` Contract
/// @dev implements the standard pushed by Rarible
/// @return list of fee basis points, in our case always one
function getFeeBps(uint256) public view override returns (uint256[] memory) {
uint256[] memory bpsArray = new uint256[](1);
bpsArray[0] = bps;
return bpsArray;
}
/// Make sure the contract reports that it supportsthe `HasSecondarySalesFees` Interface
/// @param interfaceId the interface to check
/// @dev extends the ERC721 method
/// @return whether the given interface is supported
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721, ERC165) returns (bool) {
return interfaceId == type(HasSecondarySaleFees).interfaceId
|| ERC721.supportsInterface(interfaceId);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
abstract contract HasSecondarySaleFees is ERC165 {
function getFeeRecipients(uint256 id) public view virtual returns (address payable[] memory);
function getFeeBps(uint256 id) public view virtual returns (uint256[] memory);
}{
"optimizer": {
"enabled": true,
"runs": 1000
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address payable","name":"_punkscape","type":"address"},{"internalType":"string","name":"_cid","type":"string"},{"internalType":"uint256","name":"_saleStart","type":"uint256"},{"internalType":"string","name":"_contractMetaDataURI","type":"string"},{"internalType":"address","name":"_cryptoPunksAddress","type":"address"},{"internalType":"address","name":"_oneDayPunkAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","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":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"OfferCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"OfferWithdrawn","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Sale","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"time","type":"uint256"}],"name":"SaleStartChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableTokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"buy","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"cancelOffer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cid","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"claimAfter618Minutes","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"oneDayPunkId","type":"uint256"}],"name":"claimForOneDayPunk","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeCID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"frozen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"}],"name":"makeOffer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"makeOfferTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"offerFor","outputs":[{"components":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"address payable","name":"specificBuyer","type":"address"}],"internalType":"struct WithMarketOffers.Offer","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"oneDayPunkToPunkScape","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_cid","type":"string"}],"name":"setCID","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setSaleStart","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":[],"name":"tokenCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
6080604052666a94d74f4300006011556012805460ff191690553480156200002657600080fd5b50604051620037fc380380620037fc833981016040819052620000499162000334565b82866101f481816127106001818c8c6040518060400160405280600981526020016850756e6b536361706560b81b81525060405180604001604052806002815260200161505360f01b8152508160009080519060200190620000ad929190620001e3565b508051620000c3906001906020840190620001e3565b505050620000e0620000da6200017460201b60201c565b62000178565b600755620000ee81620001ca565b50600a55600c5550600d80546001600160a01b0319166001600160a01b039390931692909217909155600e555050805162000131906010906020840190620001e3565b505060128054610100600160a81b0319166101006001600160a01b0394851602179055601380546001600160a01b03191691909216179055506200045192505050565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8051620001df906008906020840190620001e3565b5050565b828054620001f190620003e5565b90600052602060002090601f01602090048101928262000215576000855562000260565b82601f106200023057805160ff191683800117855562000260565b8280016001018555821562000260579182015b828111156200026057825182559160200191906001019062000243565b506200026e92915062000272565b5090565b5b808211156200026e576000815560010162000273565b600082601f8301126200029a578081fd5b81516001600160401b0380821115620002b757620002b762000422565b6040516020601f8401601f1916820181018381118382101715620002df57620002df62000422565b6040528382528584018101871015620002f6578485fd5b8492505b83831015620003195785830181015182840182015291820191620002fa565b838311156200032a57848185840101525b5095945050505050565b60008060008060008060c087890312156200034d578182fd5b86516200035a8162000438565b60208801519096506001600160401b038082111562000377578384fd5b620003858a838b0162000289565b9650604089015195506060890151915080821115620003a2578384fd5b50620003b189828a0162000289565b9350506080870151620003c48162000438565b60a0880151909250620003d78162000438565b809150509295509295509295565b600281046001821680620003fa57607f821691505b602082108114156200041c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146200044e57600080fd5b50565b61339b80620004616000396000f3fe6080604052600436106102c65760003560e01c80638da5cb5b11610179578063c3d6ee7f116100d6578063e14ca3531161008a578063ef706adf11610064578063ef706adf1461070d578063f2fde38b1461072d578063f5853f9a1461074d576102c6565b8063e14ca353146106c3578063e8a3d485146106d8578063e985e9c5146106ed576102c6565b8063c87b56dd116100bb578063c87b56dd14610670578063d801d7e314610690578063d96a094a146106b0576102c6565b8063c3d6ee7f1461063b578063c6ab67a31461065b576102c6565b8063a22cb4651161012d578063ab0bcc4111610112578063ab0bcc41146105d9578063b88d4fde146105ee578063b9c4d9fb1461060e576102c6565b8063a22cb465146105a4578063aa3ec0a9146105c4576102c6565b806395d89b411161015e57806395d89b41146105655780639f181b5e1461057a578063a035b1fe1461058f576102c6565b80638da5cb5b14610530578063938e3d7b14610545576102c6565b8063377a643e116102275780635c474f9e116101db5780636f30abad116101c05780636f30abad146104e657806370a08231146104fb578063715018a61461051b576102c6565b80635c474f9e146104b15780636352211e146104c6576102c6565b806342842e0e1161020c57806342842e0e1461046b57806346b9d3911461048b5780635922b1951461049e576102c6565b8063377a643e146104365780633ccfd60b14610456576102c6565b8063095ea7b31161027e57806318160ddd1161026357806318160ddd146103d457806323b872dd146103f65780632f181f5414610416576102c6565b8063095ea7b3146103875780630ebd4c7f146103a7576102c6565b806305b7cdd3116102af57806305b7cdd31461031657806306fdde0314610338578063081812fc1461035a576102c6565b806301ffc9a7146102cb578063054f7d9c14610301575b600080fd5b3480156102d757600080fd5b506102eb6102e63660046123a9565b61077a565b6040516102f89190612738565b60405180910390f35b34801561030d57600080fd5b506102eb61078d565b34801561032257600080fd5b50610336610331366004612457565b610796565b005b34801561034457600080fd5b5061034d6107a6565b6040516102f89190612743565b34801561036657600080fd5b5061037a610375366004612427565b610838565b6040516102f89190612663565b34801561039357600080fd5b506103366103a236600461237e565b610884565b3480156103b357600080fd5b506103c76103c2366004612427565b61091c565b6040516102f89190612700565b3480156103e057600080fd5b506103e9610977565b6040516102f891906131bd565b34801561040257600080fd5b50610336610411366004612290565b61097d565b34801561042257600080fd5b50610336610431366004612427565b6109b5565b34801561044257600080fd5b506103e9610451366004612427565b610a59565b34801561046257600080fd5b50610336610a6b565b34801561047757600080fd5b50610336610486366004612290565b610aed565b610336610499366004612427565b610b08565b6103366104ac366004612427565b610c6e565b3480156104bd57600080fd5b506102eb610eba565b3480156104d257600080fd5b5061037a6104e1366004612427565b610ec3565b3480156104f257600080fd5b50610336610ef8565b34801561050757600080fd5b506103e9610516366004612219565b610f46565b34801561052757600080fd5b50610336610f8a565b34801561053c57600080fd5b5061037a610fd5565b34801561055157600080fd5b506103366105603660046123e1565b610fe4565b34801561057157600080fd5b5061034d611036565b34801561058657600080fd5b506103e9611045565b34801561059b57600080fd5b506103e9611056565b3480156105b057600080fd5b506103366105bf36600461234d565b61105c565b3480156105d057600080fd5b5061034d61112a565b3480156105e557600080fd5b506103e96111b8565b3480156105fa57600080fd5b506103366106093660046122d0565b6111be565b34801561061a57600080fd5b5061062e610629366004612427565b6111f7565b6040516102f891906126b3565b34801561064757600080fd5b506103366106563660046123e1565b61126a565b34801561066757600080fd5b5061034d6112d5565b34801561067c57600080fd5b5061034d61068b366004612427565b6112f1565b34801561069c57600080fd5b506103366106ab366004612478565b6112fc565b6103366106be366004612427565b611307565b3480156106cf57600080fd5b506103e96114c3565b3480156106e457600080fd5b5061034d6114df565b3480156106f957600080fd5b506102eb610708366004612258565b6114ee565b34801561071957600080fd5b50610336610728366004612427565b61151c565b34801561073957600080fd5b50610336610748366004612219565b61158f565b34801561075957600080fd5b5061076d610768366004612427565b6115fd565b6040516102f8919061319d565b600061078582611663565b90505b919050565b60125460ff1681565b6107a28282600061166e565b5050565b6060600080546107b590613260565b80601f01602080910402602001604051908101604052809291908181526020018280546107e190613260565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b600061084382611764565b6108685760405162461bcd60e51b815260040161085f90612d20565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061088f82610ec3565b9050806001600160a01b0316836001600160a01b031614156108c35760405162461bcd60e51b815260040161085f90612f5d565b806001600160a01b03166108d5611781565b6001600160a01b031614806108f157506108f181610708611781565b61090d5760405162461bcd60e51b815260040161085f90612b40565b6109178383611785565b505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050600e548160008151811061096657634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b600a5490565b61098e610988611781565b826117f3565b6109aa5760405162461bcd60e51b815260040161085f9061304e565b610917838383611878565b6109bd611781565b6001600160a01b03166109ce610fd5565b6001600160a01b0316146109f45760405162461bcd60e51b815260040161085f90612dc9565b6109fc610eba565b15610a195760405162461bcd60e51b815260040161085f90612cb4565b60078190556040517fb751cc79e5d90c9173e2971809c6658fcf527209d16860326bfe7779a9169f0b90610a4e9083906131bd565b60405180910390a150565b60146020526000908152604090205481565b610a73611781565b6001600160a01b0316610a84610fd5565b6001600160a01b031614610aaa5760405162461bcd60e51b815260040161085f90612dc9565b610ab2610fd5565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050158015610aea573d6000803e3d6000fd5b50565b610917838383604051806020016040528060008152506111be565b610b10610eba565b610b2c5760405162461bcd60e51b815260040161085f90612f26565b6000610b366114c3565b11610b535760405162461bcd60e51b815260040161085f90612abd565b6013546040517f6352211e0000000000000000000000000000000000000000000000000000000081526001600160a01b03909116906000908290636352211e90610ba19086906004016131bd565b60206040518083038186803b158015610bb957600080fd5b505afa158015610bcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf1919061223c565b9050601154341015610c155760405162461bcd60e51b815260040161085f90612fba565b60008381526014602052604090205415610c415760405162461bcd60e51b815260040161085f90613140565b6000610c4b6119a5565b60008581526014602052604090208190559050610c688282611aec565b50505050565b8080610c786114c3565b1015610c965760405162461bcd60e51b815260040161085f906129cc565b6000610ca06111b8565b9050610cae816190d86131d2565b4211610ccc5760405162461bcd60e51b815260040161085f9061296f565b60008311610cec5760405162461bcd60e51b815260040161085f90612d6c565b6003831115610d0d5760405162461bcd60e51b815260040161085f90612847565b82601154610d1b91906131fe565b341015610d3a5760405162461bcd60e51b815260040161085f90612fba565b610d4781620151806131d2565b421015610e86576012546013546040516370a0823160e01b81526101009092046001600160a01b039081169291169081906370a0823190610d8c903390600401612663565b60206040518083038186803b158015610da457600080fd5b505afa158015610db8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddc919061243f565b60011480610e6757506040516370a0823160e01b81526001906001600160a01b038416906370a0823190610e14903390600401612663565b60206040518083038186803b158015610e2c57600080fd5b505afa158015610e40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e64919061243f565b10155b610e835760405162461bcd60e51b815260040161085f906130ab565b50505b60005b83811015610c68576000610e9b6119a5565b9050610ea73382611aec565b5080610eb28161329b565b915050610e89565b60075442101590565b6000818152600260205260408120546001600160a01b0316806107855760405162461bcd60e51b815260040161085f90612c57565b610f00611781565b6001600160a01b0316610f11610fd5565b6001600160a01b031614610f375760405162461bcd60e51b815260040161085f90612dc9565b6012805460ff19166001179055565b60006001600160a01b038216610f6e5760405162461bcd60e51b815260040161085f90612bfa565b506001600160a01b031660009081526003602052604090205490565b610f92611781565b6001600160a01b0316610fa3610fd5565b6001600160a01b031614610fc95760405162461bcd60e51b815260040161085f90612dc9565b610fd36000611b06565b565b6006546001600160a01b031690565b610fec611781565b6001600160a01b0316610ffd610fd5565b6001600160a01b0316146110235760405162461bcd60e51b815260040161085f90612dc9565b80516107a29060109060208401906120f9565b6060600180546107b590613260565b60006110516009611b58565b905090565b60115481565b611064611781565b6001600160a01b0316826001600160a01b031614156110955760405162461bcd60e51b815260040161085f90612a86565b80600560006110a2611781565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110e6611781565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161111e9190612738565b60405180910390a35050565b6008805461113790613260565b80601f016020809104026020016040519081016040528092919081815260200182805461116390613260565b80156111b05780601f10611185576101008083540402835291602001916111b0565b820191906000526020600020905b81548152906001019060200180831161119357829003601f168201915b505050505081565b60075490565b6111cf6111c9611781565b836117f3565b6111eb5760405162461bcd60e51b815260040161085f9061304e565b610c6884848484611b5c565b60408051600180825281830190925260609160009190602080830190803683375050600d5482519293506001600160a01b03169183915060009061124b57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03909216602092830291909101909101529050919050565b611272611781565b6001600160a01b0316611283610fd5565b6001600160a01b0316146112a95760405162461bcd60e51b815260040161085f90612dc9565b60125460ff16156112cc5760405162461bcd60e51b815260040161085f90612901565b610aea81611b8f565b6040518060600160405280602e8152602001613338602e913981565b606061078582611ba2565b61091783838361166e565b6000818152600f602052604090205481906113345760405162461bcd60e51b815260040161085f90613109565b6000828152600f60209081526040808320815180830190925280548252600101546001600160a01b0316918101919091529061136f84610ec3565b60208301519091506001600160a01b0316156113b15760208201516001600160a01b031633146113b15760405162461bcd60e51b815260040161085f90612b9d565b81513410156113d25760405162461bcd60e51b815260040161085f90612dfe565b806001600160a01b03166108fc612710600e5485600001516113f491906131fe565b6113fe91906131ea565b611408903461321d565b6040518115909202916000818181858888f19350505050158015611430573d6000803e3d6000fd5b5061144c81338660405180602001604052806000815250611b5c565b336001600160a01b0316816001600160a01b0316857f88863d5e20f64464b554931394e2e4b6f09c10015147215bf26b3ba5070acebe856000015160405161149491906131bd565b60405180910390a45050506000908152600f6020526040812090815560010180546001600160a01b0319169055565b60006114cd611045565b6114d5610977565b611051919061321d565b6060601080546107b590613260565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611527610988611781565b6115435760405162461bcd60e51b815260040161085f90612ff1565b6000818152600f602052604080822082815560010180546001600160a01b03191690555182917facbc44b7f46dc350c99fc0d9e5f61ed5c588cb4cdc6b69ea0deb0c5b28e5efc491a250565b611597611781565b6001600160a01b03166115a8610fd5565b6001600160a01b0316146115ce5760405162461bcd60e51b815260040161085f90612dc9565b6001600160a01b0381166115f45760405162461bcd60e51b815260040161085f906127ea565b610aea81611b06565b61160561217d565b6000828152600f60205260409020546116305760405162461bcd60e51b815260040161085f90612e92565b506000908152600f6020908152604091829020825180840190935280548352600101546001600160a01b03169082015290565b600061078582611c01565b61167f611679611781565b846117f3565b61169b5760405162461bcd60e51b815260040161085f90612ff1565b600082116116bb5760405162461bcd60e51b815260040161085f90612756565b6000838152600f602052604090205482116116e85760405162461bcd60e51b815260040161085f906128a4565b6040805180820182528381526001600160a01b0383811660208084018281526000898152600f9092528582209451855551600190940180546001600160a01b03191694909316939093179091559151849186917f1be7385e5a960aabd206224f90e23bb92719f1749fa15a10c0e39302eec9ab589190a4505050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117ba82610ec3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117fe82611764565b61181a5760405162461bcd60e51b815260040161085f90612af4565b600061182583610ec3565b9050806001600160a01b0316846001600160a01b031614806118605750836001600160a01b031661185584610838565b6001600160a01b0316145b80611870575061187081856114ee565b949350505050565b826001600160a01b031661188b82610ec3565b6001600160a01b0316146118b15760405162461bcd60e51b815260040161085f90612e35565b6001600160a01b0382166118d75760405162461bcd60e51b815260040161085f90612a29565b6118e2838383610917565b6118ed600082611785565b6001600160a01b038316600090815260036020526040812080546001929061191690849061321d565b90915550506001600160a01b03821660009081526003602052604081208054600192906119449084906131d2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806119b06114c3565b116119cd5760405162461bcd60e51b815260040161085f90612abd565b60006119d7611045565b6119df610977565b6119e9919061321d565b90506000813341444542604051602001611a079594939291906124dc565b6040516020818303038152906040528051906020012060001c611a2a91906132b6565b6000818152600b602052604081205491925090611a48575080611a59565b506000818152600b60205260409020545b600b6000611a6860018661321d565b81526020019081526020016000205460001415611a9e57611a8a60018461321d565b6000838152600b6020526040902055611ace565b600b6000611aad60018661321d565b81526020808201929092526040908101600090812054858252600b90935220555b611ad6611c3f565b50600c54611ae490826131d2565b935050505090565b6107a2828260405180602001604052806000815250611c7f565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b5490565b611b67848484611878565b611b7384848484611cb2565b610c685760405162461bcd60e51b815260040161085f9061278d565b80516107a29060089060208401906120f9565b6060611bad82611764565b611bc95760405162461bcd60e51b815260040161085f90612ec9565b611bd1611de6565b611bda83611df0565b604051602001611beb929190612517565b6040516020818303038152906040529050919050565b60006001600160e01b031982167fb7799584000000000000000000000000000000000000000000000000000000001480610785575061078582611f3f565b600080611c4a6114c3565b11611c675760405162461bcd60e51b815260040161085f90612abd565b6000611c736009611b58565b90506110516009611fb1565b611c898383611fba565b611c966000848484611cb2565b6109175760405162461bcd60e51b815260040161085f9061278d565b6000611cc6846001600160a01b0316612099565b15611ddb57836001600160a01b031663150b7a02611ce2611781565b8786866040518563ffffffff1660e01b8152600401611d049493929190612677565b602060405180830381600087803b158015611d1e57600080fd5b505af1925050508015611d4e575060408051601f3d908101601f19168201909252611d4b918101906123c5565b60015b611da8573d808015611d7c576040519150601f19603f3d011682016040523d82523d6000602084013e611d81565b606091505b508051611da05760405162461bcd60e51b815260040161085f9061278d565b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050611870565b506001949350505050565b606061105161209f565b606081611e31575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152610788565b8160005b8115611e5b5780611e458161329b565b9150611e549050600a836131ea565b9150611e35565b60008167ffffffffffffffff811115611e8457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611eae576020820181803683370190505b5090505b841561187057611ec360018361321d565b9150611ed0600a866132b6565b611edb9060306131d2565b60f81b818381518110611efe57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611f38600a866131ea565b9450611eb2565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611fa257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107855750610785826120c7565b80546001019055565b6001600160a01b038216611fe05760405162461bcd60e51b815260040161085f90612ceb565b611fe981611764565b156120065760405162461bcd60e51b815260040161085f90612938565b61201260008383610917565b6001600160a01b038216600090815260036020526040812080546001929061203b9084906131d2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b606060086040516020016120b39190612599565b604051602081830303815290604052905090565b6001600160e01b031981167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b82805461210590613260565b90600052602060002090601f016020900481019282612127576000855561216d565b82601f1061214057805160ff191683800117855561216d565b8280016001018555821561216d579182015b8281111561216d578251825591602001919060010190612152565b50612179929150612194565b5090565b604080518082019091526000808252602082015290565b5b808211156121795760008155600101612195565b600067ffffffffffffffff808411156121c4576121c46132f6565b604051601f8501601f1916810160200182811182821017156121e8576121e86132f6565b60405284815291508183850186101561220057600080fd5b8484602083013760006020868301015250509392505050565b60006020828403121561222a578081fd5b81356122358161330c565b9392505050565b60006020828403121561224d578081fd5b81516122358161330c565b6000806040838503121561226a578081fd5b82356122758161330c565b915060208301356122858161330c565b809150509250929050565b6000806000606084860312156122a4578081fd5b83356122af8161330c565b925060208401356122bf8161330c565b929592945050506040919091013590565b600080600080608085870312156122e5578081fd5b84356122f08161330c565b935060208501356123008161330c565b925060408501359150606085013567ffffffffffffffff811115612322578182fd5b8501601f81018713612332578182fd5b612341878235602084016121a9565b91505092959194509250565b6000806040838503121561235f578182fd5b823561236a8161330c565b915060208301358015158114612285578182fd5b60008060408385031215612390578182fd5b823561239b8161330c565b946020939093013593505050565b6000602082840312156123ba578081fd5b813561223581613321565b6000602082840312156123d6578081fd5b815161223581613321565b6000602082840312156123f2578081fd5b813567ffffffffffffffff811115612408578182fd5b8201601f81018413612418578182fd5b611870848235602084016121a9565b600060208284031215612438578081fd5b5035919050565b600060208284031215612450578081fd5b5051919050565b60008060408385031215612469578182fd5b50508035926020909101359150565b60008060006060848603121561248c578081fd5b833592506020840135915060408401356124a58161330c565b809150509250925092565b600081518084526124c8816020860160208601613234565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff19606096871b811682529490951b909316601485015260288401919091526048830152606882015260880190565b60008351612529818460208801613234565b7f2f000000000000000000000000000000000000000000000000000000000000009083019081528351612563816001840160208801613234565b7f2f6d657461646174612e6a736f6e00000000000000000000000000000000000060019290910191820152600f01949350505050565b60007f697066733a2f2f0000000000000000000000000000000000000000000000000082526007818454836002820490506001808316806125db57607f831692505b60208084108214156125fb57634e487b7160e01b88526022600452602488fd5b81801561260f576001811461262457612654565b60ff1986168a890152848a0188019650612654565b61262d8b6131c6565b895b8681101561264a5781548c82018b015290850190830161262f565b505087858b010196505b50949998505050505050505050565b6001600160a01b0391909116815260200190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526126a960808301846124b0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126f45783516001600160a01b0316835292840192918401916001016126cf565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126f45783518352928401929184019160010161271c565b901515815260200190565b60006020825261223560208301846124b0565b6020808252601d908201527f50726963652073686f756c6420626520686967686572207468616e2030000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526031908201527f43616e2774206d696e74206d6f7265207468616e20332050756e6b536361706560408201527f7320706572207472616e73616374696f6e000000000000000000000000000000606082015260800190565b6020808252602a908201527f50726963652073686f756c6420626520686967686572207468616e206578697360408201527f74696e67206f6666657200000000000000000000000000000000000000000000606082015260800190565b60208082526012908201527f4d657461646174612069732066726f7a656e0000000000000000000000000000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252603a908201527f47656e6572616c20636c61696d696e672070686173652073746172747320363160408201527f38206d696e757465732061667465722073616c65207374617274000000000000606082015260800190565b60208082526028908201527f526571756573746564206e756d626572206f6620746f6b656e73206e6f74206160408201527f7661696c61626c65000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526018908201527f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526022908201527f43616e277420627579206120707269766174656c79206f66666572656420697460408201527f656d000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560408201527f726f206164647265737300000000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f53616c652068617320616c726561647920737461727465640000000000000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526023908201527f4861766520746f206d696e74206174206c65617374206f6e652050756e6b536360408201527f6170650000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600d908201527f5072696365206e6f74206d657400000000000000000000000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606082015260800190565b6020808252601d908201527f4e6f20616374697665206f6666657220666f722074686973206974656d000000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606082015260800190565b60208082526017908201527f53616c65206861736e2774207374617274656420796574000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252600e908201527f5061792075702c20667269656e64000000000000000000000000000000000000604082015260600190565b60208082526024908201527f43616c6c6572206973206e656974686572206f776e6572206e6f72206170707260408201527f6f76656400000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b602080825260409082018190527f596f75206861766520746f206f776e20612043727970746f50756e6b206f7220908201527f61204f6e6544617950756e6b20746f206d696e7420612050756e6b5363617065606082015260800190565b60208082526011908201527f4974656d206e6f7420666f722073616c65000000000000000000000000000000604082015260600190565b60208082526036908201527f50756e6b536361706520666f722074686973204f6e6544617950756e6b20686160408201527f7320616c7265616479206265656e20636c61696d656400000000000000000000606082015260800190565b815181526020918201516001600160a01b03169181019190915260400190565b90815260200190565b60009081526020902090565b600082198211156131e5576131e56132ca565b500190565b6000826131f9576131f96132e0565b500490565b6000816000190483118215151615613218576132186132ca565b500290565b60008282101561322f5761322f6132ca565b500390565b60005b8381101561324f578181015183820152602001613237565b83811115610c685750506000910152565b60028104600182168061327457607f821691505b6020821081141561329557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132af576132af6132ca565b5060010190565b6000826132c5576132c56132e0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610aea57600080fd5b6001600160e01b031981168114610aea57600080fdfe516d6535477945327255486553534850655864764742417151644c787a4533314a3148545036614a504a63476741a2646970667358221220557a3ac41b5b6f0198dd2cd9ddd57b24561702431b9e4d8bfd0cad565a6b3c4564736f6c63430008000033000000000000000000000000ed9198181bbd4e09ff320fa11ae062e140be0c4e00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000614ec7e30000000000000000000000000000000000000000000000000000000000000120000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb0000000000000000000000005537d90a4a2dc9d9b37bab49b490cf67d4c54e91000000000000000000000000000000000000000000000000000000000000002e516d535a456a7278654b5434716e6d6d75555a647555583345417963544d756d4635317733647647485454733441000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003768747470733a2f2f70756e6b73636170652e78797a2f636f6e74726163742d6d657461646174612f70756e6b7363617065732e6a736f6e000000000000000000
Deployed Bytecode
0x6080604052600436106102c65760003560e01c80638da5cb5b11610179578063c3d6ee7f116100d6578063e14ca3531161008a578063ef706adf11610064578063ef706adf1461070d578063f2fde38b1461072d578063f5853f9a1461074d576102c6565b8063e14ca353146106c3578063e8a3d485146106d8578063e985e9c5146106ed576102c6565b8063c87b56dd116100bb578063c87b56dd14610670578063d801d7e314610690578063d96a094a146106b0576102c6565b8063c3d6ee7f1461063b578063c6ab67a31461065b576102c6565b8063a22cb4651161012d578063ab0bcc4111610112578063ab0bcc41146105d9578063b88d4fde146105ee578063b9c4d9fb1461060e576102c6565b8063a22cb465146105a4578063aa3ec0a9146105c4576102c6565b806395d89b411161015e57806395d89b41146105655780639f181b5e1461057a578063a035b1fe1461058f576102c6565b80638da5cb5b14610530578063938e3d7b14610545576102c6565b8063377a643e116102275780635c474f9e116101db5780636f30abad116101c05780636f30abad146104e657806370a08231146104fb578063715018a61461051b576102c6565b80635c474f9e146104b15780636352211e146104c6576102c6565b806342842e0e1161020c57806342842e0e1461046b57806346b9d3911461048b5780635922b1951461049e576102c6565b8063377a643e146104365780633ccfd60b14610456576102c6565b8063095ea7b31161027e57806318160ddd1161026357806318160ddd146103d457806323b872dd146103f65780632f181f5414610416576102c6565b8063095ea7b3146103875780630ebd4c7f146103a7576102c6565b806305b7cdd3116102af57806305b7cdd31461031657806306fdde0314610338578063081812fc1461035a576102c6565b806301ffc9a7146102cb578063054f7d9c14610301575b600080fd5b3480156102d757600080fd5b506102eb6102e63660046123a9565b61077a565b6040516102f89190612738565b60405180910390f35b34801561030d57600080fd5b506102eb61078d565b34801561032257600080fd5b50610336610331366004612457565b610796565b005b34801561034457600080fd5b5061034d6107a6565b6040516102f89190612743565b34801561036657600080fd5b5061037a610375366004612427565b610838565b6040516102f89190612663565b34801561039357600080fd5b506103366103a236600461237e565b610884565b3480156103b357600080fd5b506103c76103c2366004612427565b61091c565b6040516102f89190612700565b3480156103e057600080fd5b506103e9610977565b6040516102f891906131bd565b34801561040257600080fd5b50610336610411366004612290565b61097d565b34801561042257600080fd5b50610336610431366004612427565b6109b5565b34801561044257600080fd5b506103e9610451366004612427565b610a59565b34801561046257600080fd5b50610336610a6b565b34801561047757600080fd5b50610336610486366004612290565b610aed565b610336610499366004612427565b610b08565b6103366104ac366004612427565b610c6e565b3480156104bd57600080fd5b506102eb610eba565b3480156104d257600080fd5b5061037a6104e1366004612427565b610ec3565b3480156104f257600080fd5b50610336610ef8565b34801561050757600080fd5b506103e9610516366004612219565b610f46565b34801561052757600080fd5b50610336610f8a565b34801561053c57600080fd5b5061037a610fd5565b34801561055157600080fd5b506103366105603660046123e1565b610fe4565b34801561057157600080fd5b5061034d611036565b34801561058657600080fd5b506103e9611045565b34801561059b57600080fd5b506103e9611056565b3480156105b057600080fd5b506103366105bf36600461234d565b61105c565b3480156105d057600080fd5b5061034d61112a565b3480156105e557600080fd5b506103e96111b8565b3480156105fa57600080fd5b506103366106093660046122d0565b6111be565b34801561061a57600080fd5b5061062e610629366004612427565b6111f7565b6040516102f891906126b3565b34801561064757600080fd5b506103366106563660046123e1565b61126a565b34801561066757600080fd5b5061034d6112d5565b34801561067c57600080fd5b5061034d61068b366004612427565b6112f1565b34801561069c57600080fd5b506103366106ab366004612478565b6112fc565b6103366106be366004612427565b611307565b3480156106cf57600080fd5b506103e96114c3565b3480156106e457600080fd5b5061034d6114df565b3480156106f957600080fd5b506102eb610708366004612258565b6114ee565b34801561071957600080fd5b50610336610728366004612427565b61151c565b34801561073957600080fd5b50610336610748366004612219565b61158f565b34801561075957600080fd5b5061076d610768366004612427565b6115fd565b6040516102f8919061319d565b600061078582611663565b90505b919050565b60125460ff1681565b6107a28282600061166e565b5050565b6060600080546107b590613260565b80601f01602080910402602001604051908101604052809291908181526020018280546107e190613260565b801561082e5780601f106108035761010080835404028352916020019161082e565b820191906000526020600020905b81548152906001019060200180831161081157829003601f168201915b5050505050905090565b600061084382611764565b6108685760405162461bcd60e51b815260040161085f90612d20565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061088f82610ec3565b9050806001600160a01b0316836001600160a01b031614156108c35760405162461bcd60e51b815260040161085f90612f5d565b806001600160a01b03166108d5611781565b6001600160a01b031614806108f157506108f181610708611781565b61090d5760405162461bcd60e51b815260040161085f90612b40565b6109178383611785565b505050565b6040805160018082528183019092526060916000919060208083019080368337019050509050600e548160008151811061096657634e487b7160e01b600052603260045260246000fd5b602090810291909101015292915050565b600a5490565b61098e610988611781565b826117f3565b6109aa5760405162461bcd60e51b815260040161085f9061304e565b610917838383611878565b6109bd611781565b6001600160a01b03166109ce610fd5565b6001600160a01b0316146109f45760405162461bcd60e51b815260040161085f90612dc9565b6109fc610eba565b15610a195760405162461bcd60e51b815260040161085f90612cb4565b60078190556040517fb751cc79e5d90c9173e2971809c6658fcf527209d16860326bfe7779a9169f0b90610a4e9083906131bd565b60405180910390a150565b60146020526000908152604090205481565b610a73611781565b6001600160a01b0316610a84610fd5565b6001600160a01b031614610aaa5760405162461bcd60e51b815260040161085f90612dc9565b610ab2610fd5565b6001600160a01b03166108fc479081150290604051600060405180830381858888f19350505050158015610aea573d6000803e3d6000fd5b50565b610917838383604051806020016040528060008152506111be565b610b10610eba565b610b2c5760405162461bcd60e51b815260040161085f90612f26565b6000610b366114c3565b11610b535760405162461bcd60e51b815260040161085f90612abd565b6013546040517f6352211e0000000000000000000000000000000000000000000000000000000081526001600160a01b03909116906000908290636352211e90610ba19086906004016131bd565b60206040518083038186803b158015610bb957600080fd5b505afa158015610bcd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf1919061223c565b9050601154341015610c155760405162461bcd60e51b815260040161085f90612fba565b60008381526014602052604090205415610c415760405162461bcd60e51b815260040161085f90613140565b6000610c4b6119a5565b60008581526014602052604090208190559050610c688282611aec565b50505050565b8080610c786114c3565b1015610c965760405162461bcd60e51b815260040161085f906129cc565b6000610ca06111b8565b9050610cae816190d86131d2565b4211610ccc5760405162461bcd60e51b815260040161085f9061296f565b60008311610cec5760405162461bcd60e51b815260040161085f90612d6c565b6003831115610d0d5760405162461bcd60e51b815260040161085f90612847565b82601154610d1b91906131fe565b341015610d3a5760405162461bcd60e51b815260040161085f90612fba565b610d4781620151806131d2565b421015610e86576012546013546040516370a0823160e01b81526101009092046001600160a01b039081169291169081906370a0823190610d8c903390600401612663565b60206040518083038186803b158015610da457600080fd5b505afa158015610db8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ddc919061243f565b60011480610e6757506040516370a0823160e01b81526001906001600160a01b038416906370a0823190610e14903390600401612663565b60206040518083038186803b158015610e2c57600080fd5b505afa158015610e40573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e64919061243f565b10155b610e835760405162461bcd60e51b815260040161085f906130ab565b50505b60005b83811015610c68576000610e9b6119a5565b9050610ea73382611aec565b5080610eb28161329b565b915050610e89565b60075442101590565b6000818152600260205260408120546001600160a01b0316806107855760405162461bcd60e51b815260040161085f90612c57565b610f00611781565b6001600160a01b0316610f11610fd5565b6001600160a01b031614610f375760405162461bcd60e51b815260040161085f90612dc9565b6012805460ff19166001179055565b60006001600160a01b038216610f6e5760405162461bcd60e51b815260040161085f90612bfa565b506001600160a01b031660009081526003602052604090205490565b610f92611781565b6001600160a01b0316610fa3610fd5565b6001600160a01b031614610fc95760405162461bcd60e51b815260040161085f90612dc9565b610fd36000611b06565b565b6006546001600160a01b031690565b610fec611781565b6001600160a01b0316610ffd610fd5565b6001600160a01b0316146110235760405162461bcd60e51b815260040161085f90612dc9565b80516107a29060109060208401906120f9565b6060600180546107b590613260565b60006110516009611b58565b905090565b60115481565b611064611781565b6001600160a01b0316826001600160a01b031614156110955760405162461bcd60e51b815260040161085f90612a86565b80600560006110a2611781565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556110e6611781565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161111e9190612738565b60405180910390a35050565b6008805461113790613260565b80601f016020809104026020016040519081016040528092919081815260200182805461116390613260565b80156111b05780601f10611185576101008083540402835291602001916111b0565b820191906000526020600020905b81548152906001019060200180831161119357829003601f168201915b505050505081565b60075490565b6111cf6111c9611781565b836117f3565b6111eb5760405162461bcd60e51b815260040161085f9061304e565b610c6884848484611b5c565b60408051600180825281830190925260609160009190602080830190803683375050600d5482519293506001600160a01b03169183915060009061124b57634e487b7160e01b600052603260045260246000fd5b6001600160a01b03909216602092830291909101909101529050919050565b611272611781565b6001600160a01b0316611283610fd5565b6001600160a01b0316146112a95760405162461bcd60e51b815260040161085f90612dc9565b60125460ff16156112cc5760405162461bcd60e51b815260040161085f90612901565b610aea81611b8f565b6040518060600160405280602e8152602001613338602e913981565b606061078582611ba2565b61091783838361166e565b6000818152600f602052604090205481906113345760405162461bcd60e51b815260040161085f90613109565b6000828152600f60209081526040808320815180830190925280548252600101546001600160a01b0316918101919091529061136f84610ec3565b60208301519091506001600160a01b0316156113b15760208201516001600160a01b031633146113b15760405162461bcd60e51b815260040161085f90612b9d565b81513410156113d25760405162461bcd60e51b815260040161085f90612dfe565b806001600160a01b03166108fc612710600e5485600001516113f491906131fe565b6113fe91906131ea565b611408903461321d565b6040518115909202916000818181858888f19350505050158015611430573d6000803e3d6000fd5b5061144c81338660405180602001604052806000815250611b5c565b336001600160a01b0316816001600160a01b0316857f88863d5e20f64464b554931394e2e4b6f09c10015147215bf26b3ba5070acebe856000015160405161149491906131bd565b60405180910390a45050506000908152600f6020526040812090815560010180546001600160a01b0319169055565b60006114cd611045565b6114d5610977565b611051919061321d565b6060601080546107b590613260565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b611527610988611781565b6115435760405162461bcd60e51b815260040161085f90612ff1565b6000818152600f602052604080822082815560010180546001600160a01b03191690555182917facbc44b7f46dc350c99fc0d9e5f61ed5c588cb4cdc6b69ea0deb0c5b28e5efc491a250565b611597611781565b6001600160a01b03166115a8610fd5565b6001600160a01b0316146115ce5760405162461bcd60e51b815260040161085f90612dc9565b6001600160a01b0381166115f45760405162461bcd60e51b815260040161085f906127ea565b610aea81611b06565b61160561217d565b6000828152600f60205260409020546116305760405162461bcd60e51b815260040161085f90612e92565b506000908152600f6020908152604091829020825180840190935280548352600101546001600160a01b03169082015290565b600061078582611c01565b61167f611679611781565b846117f3565b61169b5760405162461bcd60e51b815260040161085f90612ff1565b600082116116bb5760405162461bcd60e51b815260040161085f90612756565b6000838152600f602052604090205482116116e85760405162461bcd60e51b815260040161085f906128a4565b6040805180820182528381526001600160a01b0383811660208084018281526000898152600f9092528582209451855551600190940180546001600160a01b03191694909316939093179091559151849186917f1be7385e5a960aabd206224f90e23bb92719f1749fa15a10c0e39302eec9ab589190a4505050565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117ba82610ec3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117fe82611764565b61181a5760405162461bcd60e51b815260040161085f90612af4565b600061182583610ec3565b9050806001600160a01b0316846001600160a01b031614806118605750836001600160a01b031661185584610838565b6001600160a01b0316145b80611870575061187081856114ee565b949350505050565b826001600160a01b031661188b82610ec3565b6001600160a01b0316146118b15760405162461bcd60e51b815260040161085f90612e35565b6001600160a01b0382166118d75760405162461bcd60e51b815260040161085f90612a29565b6118e2838383610917565b6118ed600082611785565b6001600160a01b038316600090815260036020526040812080546001929061191690849061321d565b90915550506001600160a01b03821660009081526003602052604081208054600192906119449084906131d2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000806119b06114c3565b116119cd5760405162461bcd60e51b815260040161085f90612abd565b60006119d7611045565b6119df610977565b6119e9919061321d565b90506000813341444542604051602001611a079594939291906124dc565b6040516020818303038152906040528051906020012060001c611a2a91906132b6565b6000818152600b602052604081205491925090611a48575080611a59565b506000818152600b60205260409020545b600b6000611a6860018661321d565b81526020019081526020016000205460001415611a9e57611a8a60018461321d565b6000838152600b6020526040902055611ace565b600b6000611aad60018661321d565b81526020808201929092526040908101600090812054858252600b90935220555b611ad6611c3f565b50600c54611ae490826131d2565b935050505090565b6107a2828260405180602001604052806000815250611c7f565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b5490565b611b67848484611878565b611b7384848484611cb2565b610c685760405162461bcd60e51b815260040161085f9061278d565b80516107a29060089060208401906120f9565b6060611bad82611764565b611bc95760405162461bcd60e51b815260040161085f90612ec9565b611bd1611de6565b611bda83611df0565b604051602001611beb929190612517565b6040516020818303038152906040529050919050565b60006001600160e01b031982167fb7799584000000000000000000000000000000000000000000000000000000001480610785575061078582611f3f565b600080611c4a6114c3565b11611c675760405162461bcd60e51b815260040161085f90612abd565b6000611c736009611b58565b90506110516009611fb1565b611c898383611fba565b611c966000848484611cb2565b6109175760405162461bcd60e51b815260040161085f9061278d565b6000611cc6846001600160a01b0316612099565b15611ddb57836001600160a01b031663150b7a02611ce2611781565b8786866040518563ffffffff1660e01b8152600401611d049493929190612677565b602060405180830381600087803b158015611d1e57600080fd5b505af1925050508015611d4e575060408051601f3d908101601f19168201909252611d4b918101906123c5565b60015b611da8573d808015611d7c576040519150601f19603f3d011682016040523d82523d6000602084013e611d81565b606091505b508051611da05760405162461bcd60e51b815260040161085f9061278d565b805181602001fd5b6001600160e01b0319167f150b7a0200000000000000000000000000000000000000000000000000000000149050611870565b506001949350505050565b606061105161209f565b606081611e31575060408051808201909152600181527f30000000000000000000000000000000000000000000000000000000000000006020820152610788565b8160005b8115611e5b5780611e458161329b565b9150611e549050600a836131ea565b9150611e35565b60008167ffffffffffffffff811115611e8457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611eae576020820181803683370190505b5090505b841561187057611ec360018361321d565b9150611ed0600a866132b6565b611edb9060306131d2565b60f81b818381518110611efe57634e487b7160e01b600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611f38600a866131ea565b9450611eb2565b60006001600160e01b031982167f80ac58cd000000000000000000000000000000000000000000000000000000001480611fa257506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b806107855750610785826120c7565b80546001019055565b6001600160a01b038216611fe05760405162461bcd60e51b815260040161085f90612ceb565b611fe981611764565b156120065760405162461bcd60e51b815260040161085f90612938565b61201260008383610917565b6001600160a01b038216600090815260036020526040812080546001929061203b9084906131d2565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b606060086040516020016120b39190612599565b604051602081830303815290604052905090565b6001600160e01b031981167f01ffc9a70000000000000000000000000000000000000000000000000000000014919050565b82805461210590613260565b90600052602060002090601f016020900481019282612127576000855561216d565b82601f1061214057805160ff191683800117855561216d565b8280016001018555821561216d579182015b8281111561216d578251825591602001919060010190612152565b50612179929150612194565b5090565b604080518082019091526000808252602082015290565b5b808211156121795760008155600101612195565b600067ffffffffffffffff808411156121c4576121c46132f6565b604051601f8501601f1916810160200182811182821017156121e8576121e86132f6565b60405284815291508183850186101561220057600080fd5b8484602083013760006020868301015250509392505050565b60006020828403121561222a578081fd5b81356122358161330c565b9392505050565b60006020828403121561224d578081fd5b81516122358161330c565b6000806040838503121561226a578081fd5b82356122758161330c565b915060208301356122858161330c565b809150509250929050565b6000806000606084860312156122a4578081fd5b83356122af8161330c565b925060208401356122bf8161330c565b929592945050506040919091013590565b600080600080608085870312156122e5578081fd5b84356122f08161330c565b935060208501356123008161330c565b925060408501359150606085013567ffffffffffffffff811115612322578182fd5b8501601f81018713612332578182fd5b612341878235602084016121a9565b91505092959194509250565b6000806040838503121561235f578182fd5b823561236a8161330c565b915060208301358015158114612285578182fd5b60008060408385031215612390578182fd5b823561239b8161330c565b946020939093013593505050565b6000602082840312156123ba578081fd5b813561223581613321565b6000602082840312156123d6578081fd5b815161223581613321565b6000602082840312156123f2578081fd5b813567ffffffffffffffff811115612408578182fd5b8201601f81018413612418578182fd5b611870848235602084016121a9565b600060208284031215612438578081fd5b5035919050565b600060208284031215612450578081fd5b5051919050565b60008060408385031215612469578182fd5b50508035926020909101359150565b60008060006060848603121561248c578081fd5b833592506020840135915060408401356124a58161330c565b809150509250925092565b600081518084526124c8816020860160208601613234565b601f01601f19169290920160200192915050565b6bffffffffffffffffffffffff19606096871b811682529490951b909316601485015260288401919091526048830152606882015260880190565b60008351612529818460208801613234565b7f2f000000000000000000000000000000000000000000000000000000000000009083019081528351612563816001840160208801613234565b7f2f6d657461646174612e6a736f6e00000000000000000000000000000000000060019290910191820152600f01949350505050565b60007f697066733a2f2f0000000000000000000000000000000000000000000000000082526007818454836002820490506001808316806125db57607f831692505b60208084108214156125fb57634e487b7160e01b88526022600452602488fd5b81801561260f576001811461262457612654565b60ff1986168a890152848a0188019650612654565b61262d8b6131c6565b895b8681101561264a5781548c82018b015290850190830161262f565b505087858b010196505b50949998505050505050505050565b6001600160a01b0391909116815260200190565b60006001600160a01b038087168352808616602084015250836040830152608060608301526126a960808301846124b0565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126f45783516001600160a01b0316835292840192918401916001016126cf565b50909695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126f45783518352928401929184019160010161271c565b901515815260200190565b60006020825261223560208301846124b0565b6020808252601d908201527f50726963652073686f756c6420626520686967686572207468616e2030000000604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527f63656976657220696d706c656d656e7465720000000000000000000000000000606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526031908201527f43616e2774206d696e74206d6f7265207468616e20332050756e6b536361706560408201527f7320706572207472616e73616374696f6e000000000000000000000000000000606082015260800190565b6020808252602a908201527f50726963652073686f756c6420626520686967686572207468616e206578697360408201527f74696e67206f6666657200000000000000000000000000000000000000000000606082015260800190565b60208082526012908201527f4d657461646174612069732066726f7a656e0000000000000000000000000000604082015260600190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252603a908201527f47656e6572616c20636c61696d696e672070686173652073746172747320363160408201527f38206d696e757465732061667465722073616c65207374617274000000000000606082015260800190565b60208082526028908201527f526571756573746564206e756d626572206f6620746f6b656e73206e6f74206160408201527f7661696c61626c65000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526018908201527f4e6f206d6f726520746f6b656e7320617661696c61626c650000000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b60208082526022908201527f43616e277420627579206120707269766174656c79206f66666572656420697460408201527f656d000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560408201527f726f206164647265737300000000000000000000000000000000000000000000606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201527f656e7420746f6b656e0000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f53616c652068617320616c726561647920737461727465640000000000000000604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526023908201527f4861766520746f206d696e74206174206c65617374206f6e652050756e6b536360408201527f6170650000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252600d908201527f5072696365206e6f74206d657400000000000000000000000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201527f73206e6f74206f776e0000000000000000000000000000000000000000000000606082015260800190565b6020808252601d908201527f4e6f20616374697665206f6666657220666f722074686973206974656d000000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000606082015260800190565b60208082526017908201527f53616c65206861736e2774207374617274656420796574000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560408201527f7200000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252600e908201527f5061792075702c20667269656e64000000000000000000000000000000000000604082015260600190565b60208082526024908201527f43616c6c6572206973206e656974686572206f776e6572206e6f72206170707260408201527f6f76656400000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f766564000000000000000000000000000000606082015260800190565b602080825260409082018190527f596f75206861766520746f206f776e20612043727970746f50756e6b206f7220908201527f61204f6e6544617950756e6b20746f206d696e7420612050756e6b5363617065606082015260800190565b60208082526011908201527f4974656d206e6f7420666f722073616c65000000000000000000000000000000604082015260600190565b60208082526036908201527f50756e6b536361706520666f722074686973204f6e6544617950756e6b20686160408201527f7320616c7265616479206265656e20636c61696d656400000000000000000000606082015260800190565b815181526020918201516001600160a01b03169181019190915260400190565b90815260200190565b60009081526020902090565b600082198211156131e5576131e56132ca565b500190565b6000826131f9576131f96132e0565b500490565b6000816000190483118215151615613218576132186132ca565b500290565b60008282101561322f5761322f6132ca565b500390565b60005b8381101561324f578181015183820152602001613237565b83811115610c685750506000910152565b60028104600182168061327457607f821691505b6020821081141561329557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132af576132af6132ca565b5060010190565b6000826132c5576132c56132e0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610aea57600080fd5b6001600160e01b031981168114610aea57600080fdfe516d6535477945327255486553534850655864764742417151644c787a4533314a3148545036614a504a63476741a2646970667358221220557a3ac41b5b6f0198dd2cd9ddd57b24561702431b9e4d8bfd0cad565a6b3c4564736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ed9198181bbd4e09ff320fa11ae062e140be0c4e00000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000614ec7e30000000000000000000000000000000000000000000000000000000000000120000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb0000000000000000000000005537d90a4a2dc9d9b37bab49b490cf67d4c54e91000000000000000000000000000000000000000000000000000000000000002e516d535a456a7278654b5434716e6d6d75555a647555583345417963544d756d4635317733647647485454733441000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003768747470733a2f2f70756e6b73636170652e78797a2f636f6e74726163742d6d657461646174612f70756e6b7363617065732e6a736f6e000000000000000000
-----Decoded View---------------
Arg [0] : _punkscape (address): 0xed9198181BBd4e09ff320Fa11AE062e140Be0c4e
Arg [1] : _cid (string): QmSZEjrxeKT4qnmmuUZduUX3EAycTMumF51w3dvGHTTs4A
Arg [2] : _saleStart (uint256): 1632552931
Arg [3] : _contractMetaDataURI (string): https://punkscape.xyz/contract-metadata/punkscapes.json
Arg [4] : _cryptoPunksAddress (address): 0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB
Arg [5] : _oneDayPunkAddress (address): 0x5537d90A4A2DC9d9b37BAb49B490cF67D4C54E91
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 000000000000000000000000ed9198181bbd4e09ff320fa11ae062e140be0c4e
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 00000000000000000000000000000000000000000000000000000000614ec7e3
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb
Arg [5] : 0000000000000000000000005537d90a4a2dc9d9b37bab49b490cf67d4c54e91
Arg [6] : 000000000000000000000000000000000000000000000000000000000000002e
Arg [7] : 516d535a456a7278654b5434716e6d6d75555a647555583345417963544d756d
Arg [8] : 4635317733647647485454733441000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000037
Arg [10] : 68747470733a2f2f70756e6b73636170652e78797a2f636f6e74726163742d6d
Arg [11] : 657461646174612f70756e6b7363617065732e6a736f6e000000000000000000
Loading...
Loading
Loading...
Loading
[ 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.