ERC-721
Overview
Max Total Supply
431 TPIGT
Holders
251
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TPIGTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TruePlebsInGoblinTown
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.9; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; contract TruePlebsInGoblinTown is ERC721A, Ownable { event Mint(address indexed _from); using MerkleProof for bytes32[]; // State of mint enum MintType{ NOTSTARTED, OG, ALLOWLIST, PUBLIC } MintType public mintType = MintType.NOTSTARTED; uint256 public constant maxSupply = 1669; uint256 public constant price = 0.069 ether; uint256 public totalClaimedCount = 0; // limit per address uint256 public constant claimLimit = 1; uint256 public constant limitPerAddress = 2; uint256 public constant claimableTokensCount = 200; uint256 public partnerReserve = 50; uint256 public teamReserve = 20; // Merkle Roots bytes32 private allowlistMerkleRoot; bytes32 private ogMerkleRoot; bool public isRevealed; address public teamAddress = 0x1703A1847c4c0109e08AA94599446770721FCCdb; address private partnerAddress = 0x5d6788c1609f06A2C895a198e82cFc7a15Ca0dc5; constructor() ERC721A("True Plebs in Goblin Town", "TPIGT") {} // MODIFIERS modifier isOgsale() { require(mintType == MintType.OG, 'Og sale not started!'); _; } modifier isPresale() { require(mintType == MintType.ALLOWLIST, 'Presale not started!'); _; } modifier isPublicSale() { require(mintType == MintType.PUBLIC, 'Public sale not started!'); _; } modifier merkleProofCheckOgs(bytes32[] calldata _merkleProof) { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, ogMerkleRoot, leaf), 'You are not OG!'); _; } modifier merkleProofCheckAllowlist(bytes32[] calldata _merkleProof) { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require(MerkleProof.verify(_merkleProof, allowlistMerkleRoot, leaf), 'You are not in allowlist'); _; } // FUNCTIONS SETTERS function setMintType(MintType _type) external onlyOwner { mintType = _type; } function setIsRevealed(bool _isRevealed) public onlyOwner { isRevealed = _isRevealed; } function setCoverURI(string memory _coverURI) external onlyOwner { coverURI = _coverURI; } function setOgMerkleRoot(bytes32 _ogMerkleRoot) external onlyOwner { ogMerkleRoot = _ogMerkleRoot; } function setAllowlistMerkleRoot(bytes32 _allowlistMerkleRoot) external onlyOwner { allowlistMerkleRoot = _allowlistMerkleRoot; } function devMint() external { require(1 + _numberMinted(msg.sender) <= teamReserve, "Already claimed"); require(msg.sender == teamAddress); _safeMint(msg.sender, teamReserve); emit Mint(msg.sender); } function partnerMint() external { require(1 + _numberMinted(msg.sender) <= partnerReserve, "Already claimed"); require(msg.sender == partnerAddress); _safeMint(msg.sender, partnerReserve); emit Mint(msg.sender); } function claim(bytes32[] calldata _merkleProof) external isOgsale merkleProofCheckOgs(_merkleProof) { require(totalSupply() + 1 <= maxSupply, "Not enough tokens left"); require(totalClaimedCount + 1 <= claimableTokensCount, "Not enough claimable tokens left"); require(1 + _numberMinted(msg.sender) <= claimLimit, "Already claimed"); _safeMint(msg.sender, 1); totalClaimedCount++; emit Mint(msg.sender); } function allowlistMint(uint256 quantity, bytes32[] calldata _merkleProof) external payable isPresale merkleProofCheckAllowlist(_merkleProof) { require(quantity > 0, 'Zero is zero!'); require(quantity + _numberMinted(msg.sender) <= limitPerAddress, "Exceeded the limit"); require(totalSupply() + quantity <= maxSupply, "Not enough tokens left"); require(msg.value >= (price * quantity), "Not enough ether sent"); _safeMint(msg.sender, quantity); emit Mint(msg.sender); } function publicMint(uint256 quantity) external payable isPublicSale { require(quantity > 0, 'Zero is zero!'); require(quantity + _numberMinted(msg.sender) <= limitPerAddress, "Exceeded the limit"); require(totalSupply() + quantity <= maxSupply, "Not enough tokens left"); require(msg.value >= (price * quantity), "Not enough ether sent"); _safeMint(msg.sender, quantity); emit Mint(msg.sender); } // // metadata URI string private _baseTokenURI; string public coverURI; function tokenURI(uint256 id) public view virtual override returns (string memory) { require(_exists(id), "Metadata: URI query for nonexistent token"); if (!isRevealed) { return coverURI; } return string(abi.encodePacked(_baseTokenURI, Strings.toString(id), ".json")); } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawMoney() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. * * WARNING: You should avoid using leaf values that are 64 bytes long prior to * hashing, or use a hash function other than keccak256 for hashing leaves. * This is because the concatenation of a sorted pair of internal nodes in * the merkle tree could be reinterpreted as a leaf value. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; import './IERC721A.sol'; /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. // See `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to `_startTokenId()` unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_AUX); } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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 Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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 { _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 { _transfer(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex < end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint(address to, uint256 quantity) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex < end); _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } }
// SPDX-License-Identifier: MIT // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); // ============================== // IERC721Metadata // ============================== /** * @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 // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"address","name":"_from","type":"address"}],"name":"Mint","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":"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":"uint256","name":"quantity","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"allowlistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimableTokensCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"coverURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","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":[],"name":"isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintType","outputs":[{"internalType":"enum TruePlebsInGoblinTown.MintType","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"partnerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"partnerReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","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":[{"internalType":"bytes32","name":"_allowlistMerkleRoot","type":"bytes32"}],"name":"setAllowlistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_coverURI","type":"string"}],"name":"setCoverURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isRevealed","type":"bool"}],"name":"setIsRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum TruePlebsInGoblinTown.MintType","name":"_type","type":"uint8"}],"name":"setMintType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_ogMerkleRoot","type":"bytes32"}],"name":"setOgMerkleRoot","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":"teamAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalClaimedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600860146101000a81548160ff021916908360038111156200002d576200002c62000358565b5b021790555060006009556032600a556014600b55731703a1847c4c0109e08aa94599446770721fccdb600e60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550735d6788c1609f06a2c895a198e82cfc7a15ca0dc5600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000f857600080fd5b506040518060400160405280601981526020017f5472756520506c65627320696e20476f626c696e20546f776e000000000000008152506040518060400160405280600581526020017f545049475400000000000000000000000000000000000000000000000000000081525081600290805190602001906200017d929190620002a8565b50806003908051906020019062000196929190620002a8565b50620001a7620001d560201b60201c565b6000819055505050620001cf620001c3620001da60201b60201c565b620001e260201b60201c565b620003ec565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002b690620003b6565b90600052602060002090601f016020900481019282620002da576000855562000326565b82601f10620002f557805160ff191683800117855562000326565b8280016001018555821562000326579182015b828111156200032557825182559160200191906001019062000308565b5b50905062000335919062000339565b5090565b5b80821115620003545760008160009055506001016200033a565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003cf57607f821691505b60208210811415620003e657620003e562000387565b5b50919050565b6145f780620003fc6000396000f3fe6080604052600436106102465760003560e01c80637bc9200e11610139578063b391c508116100b6578063d8a7ab891161007a578063d8a7ab8914610806578063e985e9c51461082f578063ecd783c41461086c578063f2fde38b14610895578063f95df414146108be578063fd1d5196146108e757610246565b8063b391c50814610721578063b88d4fde1461074a578063be61067614610773578063c87b56dd1461079e578063d5abeb01146107db57610246565b806396286f9a116100fd57806396286f9a14610660578063a035b1fe1461068b578063a1b4f014146106b6578063a22cb465146106e1578063ac4460021461070a57610246565b80637bc9200e146105ac5780637c69e207146105c85780637e6343d1146105df5780638da5cb5b1461060a57806395d89b411461063557610246565b80634287f14a116101c75780635d9a1b851161018b5780635d9a1b85146104db5780636352211e146105045780636e1e027c1461054157806370a0823114610558578063715018a61461059557610246565b80634287f14a1461040857806349a5980a1461043357806354214f691461045c57806355f804b31461048757806358039706146104b057610246565b80631c75f0851161020e5780631c75f0851461034457806323b872dd1461036f5780632a484ad4146103985780632db11544146103c357806342842e0e146103df57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613068565b610912565b60405161027f91906130b0565b60405180910390f35b34801561029457600080fd5b5061029d6109a4565b6040516102aa9190613164565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906131bc565b610a36565b6040516102e7919061322a565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613271565b610ab2565b005b34801561032557600080fd5b5061032e610c59565b60405161033b91906132c0565b60405180910390f35b34801561035057600080fd5b50610359610c70565b604051610366919061322a565b60405180910390f35b34801561037b57600080fd5b50610396600480360381019061039191906132db565b610c96565b005b3480156103a457600080fd5b506103ad610ca6565b6040516103ba91906132c0565b60405180910390f35b6103dd60048036038101906103d891906131bc565b610cab565b005b3480156103eb57600080fd5b50610406600480360381019061040191906132db565b610eb6565b005b34801561041457600080fd5b5061041d610ed6565b60405161042a91906132c0565b60405180910390f35b34801561043f57600080fd5b5061045a6004803603810190610455919061335a565b610edc565b005b34801561046857600080fd5b50610471610f75565b60405161047e91906130b0565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906133ec565b610f88565b005b3480156104bc57600080fd5b506104c561101a565b6040516104d29190613164565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd919061345e565b6110a8565b005b34801561051057600080fd5b5061052b600480360381019061052691906131bc565b611151565b604051610538919061322a565b60405180910390f35b34801561054d57600080fd5b50610556611163565b005b34801561056457600080fd5b5061057f600480360381019061057a919061348b565b611267565b60405161058c91906132c0565b60405180910390f35b3480156105a157600080fd5b506105aa611320565b005b6105c660048036038101906105c1919061350e565b6113a8565b005b3480156105d457600080fd5b506105dd611673565b005b3480156105eb57600080fd5b506105f4611777565b60405161060191906132c0565b60405180910390f35b34801561061657600080fd5b5061061f61177d565b60405161062c919061322a565b60405180910390f35b34801561064157600080fd5b5061064a6117a7565b6040516106579190613164565b60405180910390f35b34801561066c57600080fd5b50610675611839565b60405161068291906135e5565b60405180910390f35b34801561069757600080fd5b506106a061184c565b6040516106ad91906132c0565b60405180910390f35b3480156106c257600080fd5b506106cb611857565b6040516106d891906132c0565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190613600565b61185d565b005b34801561071657600080fd5b5061071f6119d5565b005b34801561072d57600080fd5b5061074860048036038101906107439190613640565b611b00565b005b34801561075657600080fd5b50610771600480360381019061076c91906137bd565b611d9f565b005b34801561077f57600080fd5b50610788611e12565b60405161079591906132c0565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c091906131bc565b611e17565b6040516107d29190613164565b60405180910390f35b3480156107e757600080fd5b506107f0611f3a565b6040516107fd91906132c0565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190613876565b611f40565b005b34801561083b57600080fd5b50610856600480360381019061085191906138a3565b611fc6565b60405161086391906130b0565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e9190613984565b61205a565b005b3480156108a157600080fd5b506108bc60048036038101906108b7919061348b565b6120f0565b005b3480156108ca57600080fd5b506108e560048036038101906108e09190613876565b6121e8565b005b3480156108f357600080fd5b506108fc61226e565b60405161090991906132c0565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109b3906139fc565b80601f01602080910402602001604051908101604052809291908181526020018280546109df906139fc565b8015610a2c5780601f10610a0157610100808354040283529160200191610a2c565b820191906000526020600020905b815481529060010190602001808311610a0f57829003601f168201915b5050505050905090565b6000610a4182612273565b610a77576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abd826122d2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b25576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b446123a0565b73ffffffffffffffffffffffffffffffffffffffff1614610ba757610b7081610b6b6123a0565b611fc6565b610ba6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c636123a8565b6001546000540303905090565b600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ca18383836123ad565b505050565b600281565b600380811115610cbe57610cbd61356e565b5b600860149054906101000a900460ff166003811115610ce057610cdf61356e565b5b14610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790613a7a565b60405180910390fd5b60008111610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90613ae6565b60405180910390fd5b6002610d6e33612757565b82610d799190613b35565b1115610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190613bd7565b60405180910390fd5b61068581610dc6610c59565b610dd09190613b35565b1115610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613c43565b60405180910390fd5b8066f5232269808000610e249190613c63565b341015610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613d09565b60405180910390fd5b610e7033826127ae565b3373ffffffffffffffffffffffffffffffffffffffff167f3c3284d117c92d0b1699230960384e794dcba184cc48ff114fe4fed20c9b056560405160405180910390a250565b610ed183838360405180602001604052806000815250611d9f565b505050565b600b5481565b610ee46127cc565b73ffffffffffffffffffffffffffffffffffffffff16610f0261177d565b73ffffffffffffffffffffffffffffffffffffffff1614610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f90613d75565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600e60009054906101000a900460ff1681565b610f906127cc565b73ffffffffffffffffffffffffffffffffffffffff16610fae61177d565b73ffffffffffffffffffffffffffffffffffffffff1614611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90613d75565b60405180910390fd5b818160109190611015929190612ed3565b505050565b60118054611027906139fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611053906139fc565b80156110a05780601f10611075576101008083540402835291602001916110a0565b820191906000526020600020905b81548152906001019060200180831161108357829003601f168201915b505050505081565b6110b06127cc565b73ffffffffffffffffffffffffffffffffffffffff166110ce61177d565b73ffffffffffffffffffffffffffffffffffffffff1614611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90613d75565b60405180910390fd5b80600860146101000a81548160ff021916908360038111156111495761114861356e565b5b021790555050565b600061115c826122d2565b9050919050565b600a5461116f33612757565b600161117b9190613b35565b11156111bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b390613de1565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461121657600080fd5b61122233600a546127ae565b3373ffffffffffffffffffffffffffffffffffffffff167f3c3284d117c92d0b1699230960384e794dcba184cc48ff114fe4fed20c9b056560405160405180910390a2565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112cf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113286127cc565b73ffffffffffffffffffffffffffffffffffffffff1661134661177d565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613d75565b60405180910390fd5b6113a660006127d4565b565b600260038111156113bc576113bb61356e565b5b600860149054906101000a900460ff1660038111156113de576113dd61356e565b5b1461141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590613e4d565b60405180910390fd5b81816000336040516020016114339190613eb5565b604051602081830303815290604052805190602001209050611499838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c548361289a565b6114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90613f1c565b60405180910390fd5b6000861161151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290613ae6565b60405180910390fd5b600261152633612757565b876115319190613b35565b1115611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990613bd7565b60405180910390fd5b6106858661157e610c59565b6115889190613b35565b11156115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090613c43565b60405180910390fd5b8566f52322698080006115dc9190613c63565b34101561161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590613d09565b60405180910390fd5b61162833876127ae565b3373ffffffffffffffffffffffffffffffffffffffff167f3c3284d117c92d0b1699230960384e794dcba184cc48ff114fe4fed20c9b056560405160405180910390a2505050505050565b600b5461167f33612757565b600161168b9190613b35565b11156116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390613de1565b60405180910390fd5b600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461172657600080fd5b61173233600b546127ae565b3373ffffffffffffffffffffffffffffffffffffffff167f3c3284d117c92d0b1699230960384e794dcba184cc48ff114fe4fed20c9b056560405160405180910390a2565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546117b6906139fc565b80601f01602080910402602001604051908101604052809291908181526020018280546117e2906139fc565b801561182f5780601f106118045761010080835404028352916020019161182f565b820191906000526020600020905b81548152906001019060200180831161181257829003601f168201915b5050505050905090565b600860149054906101000a900460ff1681565b66f523226980800081565b60095481565b6118656123a0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ca576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118d76123a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119846123a0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119c991906130b0565b60405180910390a35050565b6119dd6127cc565b73ffffffffffffffffffffffffffffffffffffffff166119fb61177d565b73ffffffffffffffffffffffffffffffffffffffff1614611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4890613d75565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611a7790613f6d565b60006040518083038185875af1925050503d8060008114611ab4576040519150601f19603f3d011682016040523d82523d6000602084013e611ab9565b606091505b5050905080611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490613fce565b60405180910390fd5b50565b60016003811115611b1457611b1361356e565b5b600860149054906101000a900460ff166003811115611b3657611b3561356e565b5b14611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d9061403a565b60405180910390fd5b8181600033604051602001611b8b9190613eb5565b604051602081830303815290604052805190602001209050611bf1838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d548361289a565b611c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c27906140a6565b60405180910390fd5b6106856001611c3d610c59565b611c479190613b35565b1115611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90613c43565b60405180910390fd5b60c86001600954611c999190613b35565b1115611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd190614112565b60405180910390fd5b6001611ce533612757565b6001611cf19190613b35565b1115611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2990613de1565b60405180910390fd5b611d3d3360016127ae565b60096000815480929190611d5090614132565b91905055503373ffffffffffffffffffffffffffffffffffffffff167f3c3284d117c92d0b1699230960384e794dcba184cc48ff114fe4fed20c9b056560405160405180910390a25050505050565b611daa8484846123ad565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0c57611dd5848484846128b1565b611e0b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600181565b6060611e2282612273565b611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e58906141ed565b60405180910390fd5b600e60009054906101000a900460ff16611f075760118054611e82906139fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611eae906139fc565b8015611efb5780601f10611ed057610100808354040283529160200191611efb565b820191906000526020600020905b815481529060010190602001808311611ede57829003601f168201915b50505050509050611f35565b6010611f1283612a11565b604051602001611f23929190614329565b60405160208183030381529060405290505b919050565b61068581565b611f486127cc565b73ffffffffffffffffffffffffffffffffffffffff16611f6661177d565b73ffffffffffffffffffffffffffffffffffffffff1614611fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb390613d75565b60405180910390fd5b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120626127cc565b73ffffffffffffffffffffffffffffffffffffffff1661208061177d565b73ffffffffffffffffffffffffffffffffffffffff16146120d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cd90613d75565b60405180910390fd5b80601190805190602001906120ec929190612f59565b5050565b6120f86127cc565b73ffffffffffffffffffffffffffffffffffffffff1661211661177d565b73ffffffffffffffffffffffffffffffffffffffff161461216c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216390613d75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d3906143ca565b60405180910390fd5b6121e5816127d4565b50565b6121f06127cc565b73ffffffffffffffffffffffffffffffffffffffff1661220e61177d565b73ffffffffffffffffffffffffffffffffffffffff1614612264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225b90613d75565b60405180910390fd5b80600c8190555050565b60c881565b60008161227e6123a8565b1115801561228d575060005482105b80156122cb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806122e16123a8565b11612369576000548110156123685760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612366575b600081141561235c576004600083600190039350838152602001908152602001600020549050612331565b809250505061239b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006123b8826122d2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461241f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124406123a0565b73ffffffffffffffffffffffffffffffffffffffff16148061246f575061246e856124696123a0565b611fc6565b5b806124b4575061247d6123a0565b73ffffffffffffffffffffffffffffffffffffffff1661249c84610a36565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124ed576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612554576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125618585856001612b72565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61265e86612b78565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156126e85760006001840190506000600460008381526020019081526020016000205414156126e65760005481146126e5578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127508585856001612b82565b5050505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6127c8828260405180602001604052806000815250612b88565b5050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826128a78584612e3d565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128d76123a0565b8786866040518563ffffffff1660e01b81526004016128f9949392919061443f565b602060405180830381600087803b15801561291357600080fd5b505af192505050801561294457506040513d601f19601f8201168201806040525081019061294191906144a0565b60015b6129be573d8060008114612974576040519150601f19603f3d011682016040523d82523d6000602084013e612979565b606091505b506000815114156129b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612a59576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b6d565b600082905060005b60008214612a8b578080612a7490614132565b915050600a82612a8491906144fc565b9150612a61565b60008167ffffffffffffffff811115612aa757612aa6613692565b5b6040519080825280601f01601f191660200182016040528015612ad95781602001600182028036833780820191505090505b5090505b60008514612b6657600182612af2919061452d565b9150600a85612b019190614561565b6030612b0d9190613b35565b60f81b818381518110612b2357612b22614592565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b5f91906144fc565b9450612add565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bf5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612c30576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c3d6000858386612b72565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612ca260018514612eb2565b901b60a042901b612cb286612b78565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612db6575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d6660008784806001019550876128b1565b612d9c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612cf7578260005414612db157600080fd5b612e21565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612db7575b816000819055505050612e376000858386612b82565b50505050565b60008082905060005b8451811015612ea7576000858281518110612e6457612e63614592565b5b60200260200101519050808311612e8657612e7f8382612ebc565b9250612e93565b612e908184612ebc565b92505b508080612e9f90614132565b915050612e46565b508091505092915050565b6000819050919050565b600082600052816020526040600020905092915050565b828054612edf906139fc565b90600052602060002090601f016020900481019282612f015760008555612f48565b82601f10612f1a57803560ff1916838001178555612f48565b82800160010185558215612f48579182015b82811115612f47578235825591602001919060010190612f2c565b5b509050612f559190612fdf565b5090565b828054612f65906139fc565b90600052602060002090601f016020900481019282612f875760008555612fce565b82601f10612fa057805160ff1916838001178555612fce565b82800160010185558215612fce579182015b82811115612fcd578251825591602001919060010190612fb2565b5b509050612fdb9190612fdf565b5090565b5b80821115612ff8576000816000905550600101612fe0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61304581613010565b811461305057600080fd5b50565b6000813590506130628161303c565b92915050565b60006020828403121561307e5761307d613006565b5b600061308c84828501613053565b91505092915050565b60008115159050919050565b6130aa81613095565b82525050565b60006020820190506130c560008301846130a1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131055780820151818401526020810190506130ea565b83811115613114576000848401525b50505050565b6000601f19601f8301169050919050565b6000613136826130cb565b61314081856130d6565b93506131508185602086016130e7565b6131598161311a565b840191505092915050565b6000602082019050818103600083015261317e818461312b565b905092915050565b6000819050919050565b61319981613186565b81146131a457600080fd5b50565b6000813590506131b681613190565b92915050565b6000602082840312156131d2576131d1613006565b5b60006131e0848285016131a7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613214826131e9565b9050919050565b61322481613209565b82525050565b600060208201905061323f600083018461321b565b92915050565b61324e81613209565b811461325957600080fd5b50565b60008135905061326b81613245565b92915050565b6000806040838503121561328857613287613006565b5b60006132968582860161325c565b92505060206132a7858286016131a7565b9150509250929050565b6132ba81613186565b82525050565b60006020820190506132d560008301846132b1565b92915050565b6000806000606084860312156132f4576132f3613006565b5b60006133028682870161325c565b93505060206133138682870161325c565b9250506040613324868287016131a7565b9150509250925092565b61333781613095565b811461334257600080fd5b50565b6000813590506133548161332e565b92915050565b6000602082840312156133705761336f613006565b5b600061337e84828501613345565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126133ac576133ab613387565b5b8235905067ffffffffffffffff8111156133c9576133c861338c565b5b6020830191508360018202830111156133e5576133e4613391565b5b9250929050565b6000806020838503121561340357613402613006565b5b600083013567ffffffffffffffff8111156134215761342061300b565b5b61342d85828601613396565b92509250509250929050565b6004811061344657600080fd5b50565b60008135905061345881613439565b92915050565b60006020828403121561347457613473613006565b5b600061348284828501613449565b91505092915050565b6000602082840312156134a1576134a0613006565b5b60006134af8482850161325c565b91505092915050565b60008083601f8401126134ce576134cd613387565b5b8235905067ffffffffffffffff8111156134eb576134ea61338c565b5b60208301915083602082028301111561350757613506613391565b5b9250929050565b60008060006040848603121561352757613526613006565b5b6000613535868287016131a7565b935050602084013567ffffffffffffffff8111156135565761355561300b565b5b613562868287016134b8565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600481106135ae576135ad61356e565b5b50565b60008190506135bf8261359d565b919050565b60006135cf826135b1565b9050919050565b6135df816135c4565b82525050565b60006020820190506135fa60008301846135d6565b92915050565b6000806040838503121561361757613616613006565b5b60006136258582860161325c565b925050602061363685828601613345565b9150509250929050565b6000806020838503121561365757613656613006565b5b600083013567ffffffffffffffff8111156136755761367461300b565b5b613681858286016134b8565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136ca8261311a565b810181811067ffffffffffffffff821117156136e9576136e8613692565b5b80604052505050565b60006136fc612ffc565b905061370882826136c1565b919050565b600067ffffffffffffffff82111561372857613727613692565b5b6137318261311a565b9050602081019050919050565b82818337600083830152505050565b600061376061375b8461370d565b6136f2565b90508281526020810184848401111561377c5761377b61368d565b5b61378784828561373e565b509392505050565b600082601f8301126137a4576137a3613387565b5b81356137b484826020860161374d565b91505092915050565b600080600080608085870312156137d7576137d6613006565b5b60006137e58782880161325c565b94505060206137f68782880161325c565b9350506040613807878288016131a7565b925050606085013567ffffffffffffffff8111156138285761382761300b565b5b6138348782880161378f565b91505092959194509250565b6000819050919050565b61385381613840565b811461385e57600080fd5b50565b6000813590506138708161384a565b92915050565b60006020828403121561388c5761388b613006565b5b600061389a84828501613861565b91505092915050565b600080604083850312156138ba576138b9613006565b5b60006138c88582860161325c565b92505060206138d98582860161325c565b9150509250929050565b600067ffffffffffffffff8211156138fe576138fd613692565b5b6139078261311a565b9050602081019050919050565b6000613927613922846138e3565b6136f2565b9050828152602081018484840111156139435761394261368d565b5b61394e84828561373e565b509392505050565b600082601f83011261396b5761396a613387565b5b813561397b848260208601613914565b91505092915050565b60006020828403121561399a57613999613006565b5b600082013567ffffffffffffffff8111156139b8576139b761300b565b5b6139c484828501613956565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a1457607f821691505b60208210811415613a2857613a276139cd565b5b50919050565b7f5075626c69632073616c65206e6f742073746172746564210000000000000000600082015250565b6000613a646018836130d6565b9150613a6f82613a2e565b602082019050919050565b60006020820190508181036000830152613a9381613a57565b9050919050565b7f5a65726f206973207a65726f2100000000000000000000000000000000000000600082015250565b6000613ad0600d836130d6565b9150613adb82613a9a565b602082019050919050565b60006020820190508181036000830152613aff81613ac3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b4082613186565b9150613b4b83613186565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b8057613b7f613b06565b5b828201905092915050565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b6000613bc16012836130d6565b9150613bcc82613b8b565b602082019050919050565b60006020820190508181036000830152613bf081613bb4565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b6000613c2d6016836130d6565b9150613c3882613bf7565b602082019050919050565b60006020820190508181036000830152613c5c81613c20565b9050919050565b6000613c6e82613186565b9150613c7983613186565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cb257613cb1613b06565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6000613cf36015836130d6565b9150613cfe82613cbd565b602082019050919050565b60006020820190508181036000830152613d2281613ce6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d5f6020836130d6565b9150613d6a82613d29565b602082019050919050565b60006020820190508181036000830152613d8e81613d52565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000613dcb600f836130d6565b9150613dd682613d95565b602082019050919050565b60006020820190508181036000830152613dfa81613dbe565b9050919050565b7f50726573616c65206e6f74207374617274656421000000000000000000000000600082015250565b6000613e376014836130d6565b9150613e4282613e01565b602082019050919050565b60006020820190508181036000830152613e6681613e2a565b9050919050565b60008160601b9050919050565b6000613e8582613e6d565b9050919050565b6000613e9782613e7a565b9050919050565b613eaf613eaa82613209565b613e8c565b82525050565b6000613ec18284613e9e565b60148201915081905092915050565b7f596f7520617265206e6f7420696e20616c6c6f776c6973740000000000000000600082015250565b6000613f066018836130d6565b9150613f1182613ed0565b602082019050919050565b60006020820190508181036000830152613f3581613ef9565b9050919050565b600081905092915050565b50565b6000613f57600083613f3c565b9150613f6282613f47565b600082019050919050565b6000613f7882613f4a565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613fb86010836130d6565b9150613fc382613f82565b602082019050919050565b60006020820190508181036000830152613fe781613fab565b9050919050565b7f4f672073616c65206e6f74207374617274656421000000000000000000000000600082015250565b60006140246014836130d6565b915061402f82613fee565b602082019050919050565b6000602082019050818103600083015261405381614017565b9050919050565b7f596f7520617265206e6f74204f47210000000000000000000000000000000000600082015250565b6000614090600f836130d6565b915061409b8261405a565b602082019050919050565b600060208201905081810360008301526140bf81614083565b9050919050565b7f4e6f7420656e6f75676820636c61696d61626c6520746f6b656e73206c656674600082015250565b60006140fc6020836130d6565b9150614107826140c6565b602082019050919050565b6000602082019050818103600083015261412b816140ef565b9050919050565b600061413d82613186565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141705761416f613b06565b5b600182019050919050565b7f4d657461646174613a2055524920717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006141d76029836130d6565b91506141e28261417b565b604082019050919050565b60006020820190508181036000830152614206816141ca565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461423a816139fc565b614244818661420d565b9450600182166000811461425f5760018114614270576142a3565b60ff198316865281860193506142a3565b61427985614218565b60005b8381101561429b5781548189015260018201915060208101905061427c565b838801955050505b50505092915050565b60006142b7826130cb565b6142c1818561420d565b93506142d18185602086016130e7565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061431360058361420d565b915061431e826142dd565b600582019050919050565b6000614335828561422d565b915061434182846142ac565b915061434c82614306565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143b46026836130d6565b91506143bf82614358565b604082019050919050565b600060208201905081810360008301526143e3816143a7565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614411826143ea565b61441b81856143f5565b935061442b8185602086016130e7565b6144348161311a565b840191505092915050565b6000608082019050614454600083018761321b565b614461602083018661321b565b61446e60408301856132b1565b81810360608301526144808184614406565b905095945050505050565b60008151905061449a8161303c565b92915050565b6000602082840312156144b6576144b5613006565b5b60006144c48482850161448b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061450782613186565b915061451283613186565b925082614522576145216144cd565b5b828204905092915050565b600061453882613186565b915061454383613186565b92508282101561455657614555613b06565b5b828203905092915050565b600061456c82613186565b915061457783613186565b925082614587576145866144cd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122044196b9d739a472ea98a37e9ec21a5ed45203a07e19511be3cc0374127ab6d7c64736f6c63430008090033
Deployed Bytecode
0x6080604052600436106102465760003560e01c80637bc9200e11610139578063b391c508116100b6578063d8a7ab891161007a578063d8a7ab8914610806578063e985e9c51461082f578063ecd783c41461086c578063f2fde38b14610895578063f95df414146108be578063fd1d5196146108e757610246565b8063b391c50814610721578063b88d4fde1461074a578063be61067614610773578063c87b56dd1461079e578063d5abeb01146107db57610246565b806396286f9a116100fd57806396286f9a14610660578063a035b1fe1461068b578063a1b4f014146106b6578063a22cb465146106e1578063ac4460021461070a57610246565b80637bc9200e146105ac5780637c69e207146105c85780637e6343d1146105df5780638da5cb5b1461060a57806395d89b411461063557610246565b80634287f14a116101c75780635d9a1b851161018b5780635d9a1b85146104db5780636352211e146105045780636e1e027c1461054157806370a0823114610558578063715018a61461059557610246565b80634287f14a1461040857806349a5980a1461043357806354214f691461045c57806355f804b31461048757806358039706146104b057610246565b80631c75f0851161020e5780631c75f0851461034457806323b872dd1461036f5780632a484ad4146103985780632db11544146103c357806342842e0e146103df57610246565b806301ffc9a71461024b57806306fdde0314610288578063081812fc146102b3578063095ea7b3146102f057806318160ddd14610319575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613068565b610912565b60405161027f91906130b0565b60405180910390f35b34801561029457600080fd5b5061029d6109a4565b6040516102aa9190613164565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906131bc565b610a36565b6040516102e7919061322a565b60405180910390f35b3480156102fc57600080fd5b5061031760048036038101906103129190613271565b610ab2565b005b34801561032557600080fd5b5061032e610c59565b60405161033b91906132c0565b60405180910390f35b34801561035057600080fd5b50610359610c70565b604051610366919061322a565b60405180910390f35b34801561037b57600080fd5b50610396600480360381019061039191906132db565b610c96565b005b3480156103a457600080fd5b506103ad610ca6565b6040516103ba91906132c0565b60405180910390f35b6103dd60048036038101906103d891906131bc565b610cab565b005b3480156103eb57600080fd5b50610406600480360381019061040191906132db565b610eb6565b005b34801561041457600080fd5b5061041d610ed6565b60405161042a91906132c0565b60405180910390f35b34801561043f57600080fd5b5061045a6004803603810190610455919061335a565b610edc565b005b34801561046857600080fd5b50610471610f75565b60405161047e91906130b0565b60405180910390f35b34801561049357600080fd5b506104ae60048036038101906104a991906133ec565b610f88565b005b3480156104bc57600080fd5b506104c561101a565b6040516104d29190613164565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd919061345e565b6110a8565b005b34801561051057600080fd5b5061052b600480360381019061052691906131bc565b611151565b604051610538919061322a565b60405180910390f35b34801561054d57600080fd5b50610556611163565b005b34801561056457600080fd5b5061057f600480360381019061057a919061348b565b611267565b60405161058c91906132c0565b60405180910390f35b3480156105a157600080fd5b506105aa611320565b005b6105c660048036038101906105c1919061350e565b6113a8565b005b3480156105d457600080fd5b506105dd611673565b005b3480156105eb57600080fd5b506105f4611777565b60405161060191906132c0565b60405180910390f35b34801561061657600080fd5b5061061f61177d565b60405161062c919061322a565b60405180910390f35b34801561064157600080fd5b5061064a6117a7565b6040516106579190613164565b60405180910390f35b34801561066c57600080fd5b50610675611839565b60405161068291906135e5565b60405180910390f35b34801561069757600080fd5b506106a061184c565b6040516106ad91906132c0565b60405180910390f35b3480156106c257600080fd5b506106cb611857565b6040516106d891906132c0565b60405180910390f35b3480156106ed57600080fd5b5061070860048036038101906107039190613600565b61185d565b005b34801561071657600080fd5b5061071f6119d5565b005b34801561072d57600080fd5b5061074860048036038101906107439190613640565b611b00565b005b34801561075657600080fd5b50610771600480360381019061076c91906137bd565b611d9f565b005b34801561077f57600080fd5b50610788611e12565b60405161079591906132c0565b60405180910390f35b3480156107aa57600080fd5b506107c560048036038101906107c091906131bc565b611e17565b6040516107d29190613164565b60405180910390f35b3480156107e757600080fd5b506107f0611f3a565b6040516107fd91906132c0565b60405180910390f35b34801561081257600080fd5b5061082d60048036038101906108289190613876565b611f40565b005b34801561083b57600080fd5b50610856600480360381019061085191906138a3565b611fc6565b60405161086391906130b0565b60405180910390f35b34801561087857600080fd5b50610893600480360381019061088e9190613984565b61205a565b005b3480156108a157600080fd5b506108bc60048036038101906108b7919061348b565b6120f0565b005b3480156108ca57600080fd5b506108e560048036038101906108e09190613876565b6121e8565b005b3480156108f357600080fd5b506108fc61226e565b60405161090991906132c0565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061096d57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061099d5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600280546109b3906139fc565b80601f01602080910402602001604051908101604052809291908181526020018280546109df906139fc565b8015610a2c5780601f10610a0157610100808354040283529160200191610a2c565b820191906000526020600020905b815481529060010190602001808311610a0f57829003601f168201915b5050505050905090565b6000610a4182612273565b610a77576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610abd826122d2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b25576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b446123a0565b73ffffffffffffffffffffffffffffffffffffffff1614610ba757610b7081610b6b6123a0565b611fc6565b610ba6576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000610c636123a8565b6001546000540303905090565b600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610ca18383836123ad565b505050565b600281565b600380811115610cbe57610cbd61356e565b5b600860149054906101000a900460ff166003811115610ce057610cdf61356e565b5b14610d20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1790613a7a565b60405180910390fd5b60008111610d63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5a90613ae6565b60405180910390fd5b6002610d6e33612757565b82610d799190613b35565b1115610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db190613bd7565b60405180910390fd5b61068581610dc6610c59565b610dd09190613b35565b1115610e11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0890613c43565b60405180910390fd5b8066f5232269808000610e249190613c63565b341015610e66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5d90613d09565b60405180910390fd5b610e7033826127ae565b3373ffffffffffffffffffffffffffffffffffffffff167f3c3284d117c92d0b1699230960384e794dcba184cc48ff114fe4fed20c9b056560405160405180910390a250565b610ed183838360405180602001604052806000815250611d9f565b505050565b600b5481565b610ee46127cc565b73ffffffffffffffffffffffffffffffffffffffff16610f0261177d565b73ffffffffffffffffffffffffffffffffffffffff1614610f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4f90613d75565b60405180910390fd5b80600e60006101000a81548160ff02191690831515021790555050565b600e60009054906101000a900460ff1681565b610f906127cc565b73ffffffffffffffffffffffffffffffffffffffff16610fae61177d565b73ffffffffffffffffffffffffffffffffffffffff1614611004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffb90613d75565b60405180910390fd5b818160109190611015929190612ed3565b505050565b60118054611027906139fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611053906139fc565b80156110a05780601f10611075576101008083540402835291602001916110a0565b820191906000526020600020905b81548152906001019060200180831161108357829003601f168201915b505050505081565b6110b06127cc565b73ffffffffffffffffffffffffffffffffffffffff166110ce61177d565b73ffffffffffffffffffffffffffffffffffffffff1614611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b90613d75565b60405180910390fd5b80600860146101000a81548160ff021916908360038111156111495761114861356e565b5b021790555050565b600061115c826122d2565b9050919050565b600a5461116f33612757565b600161117b9190613b35565b11156111bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b390613de1565b60405180910390fd5b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461121657600080fd5b61122233600a546127ae565b3373ffffffffffffffffffffffffffffffffffffffff167f3c3284d117c92d0b1699230960384e794dcba184cc48ff114fe4fed20c9b056560405160405180910390a2565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112cf576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b6113286127cc565b73ffffffffffffffffffffffffffffffffffffffff1661134661177d565b73ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390613d75565b60405180910390fd5b6113a660006127d4565b565b600260038111156113bc576113bb61356e565b5b600860149054906101000a900460ff1660038111156113de576113dd61356e565b5b1461141e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141590613e4d565b60405180910390fd5b81816000336040516020016114339190613eb5565b604051602081830303815290604052805190602001209050611499838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c548361289a565b6114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90613f1c565b60405180910390fd5b6000861161151b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151290613ae6565b60405180910390fd5b600261152633612757565b876115319190613b35565b1115611572576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156990613bd7565b60405180910390fd5b6106858661157e610c59565b6115889190613b35565b11156115c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c090613c43565b60405180910390fd5b8566f52322698080006115dc9190613c63565b34101561161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590613d09565b60405180910390fd5b61162833876127ae565b3373ffffffffffffffffffffffffffffffffffffffff167f3c3284d117c92d0b1699230960384e794dcba184cc48ff114fe4fed20c9b056560405160405180910390a2505050505050565b600b5461167f33612757565b600161168b9190613b35565b11156116cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c390613de1565b60405180910390fd5b600e60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461172657600080fd5b61173233600b546127ae565b3373ffffffffffffffffffffffffffffffffffffffff167f3c3284d117c92d0b1699230960384e794dcba184cc48ff114fe4fed20c9b056560405160405180910390a2565b600a5481565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546117b6906139fc565b80601f01602080910402602001604051908101604052809291908181526020018280546117e2906139fc565b801561182f5780601f106118045761010080835404028352916020019161182f565b820191906000526020600020905b81548152906001019060200180831161181257829003601f168201915b5050505050905090565b600860149054906101000a900460ff1681565b66f523226980800081565b60095481565b6118656123a0565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118ca576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006118d76123a0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119846123a0565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119c991906130b0565b60405180910390a35050565b6119dd6127cc565b73ffffffffffffffffffffffffffffffffffffffff166119fb61177d565b73ffffffffffffffffffffffffffffffffffffffff1614611a51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4890613d75565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611a7790613f6d565b60006040518083038185875af1925050503d8060008114611ab4576040519150601f19603f3d011682016040523d82523d6000602084013e611ab9565b606091505b5050905080611afd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af490613fce565b60405180910390fd5b50565b60016003811115611b1457611b1361356e565b5b600860149054906101000a900460ff166003811115611b3657611b3561356e565b5b14611b76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6d9061403a565b60405180910390fd5b8181600033604051602001611b8b9190613eb5565b604051602081830303815290604052805190602001209050611bf1838380806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600d548361289a565b611c30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c27906140a6565b60405180910390fd5b6106856001611c3d610c59565b611c479190613b35565b1115611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f90613c43565b60405180910390fd5b60c86001600954611c999190613b35565b1115611cda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd190614112565b60405180910390fd5b6001611ce533612757565b6001611cf19190613b35565b1115611d32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2990613de1565b60405180910390fd5b611d3d3360016127ae565b60096000815480929190611d5090614132565b91905055503373ffffffffffffffffffffffffffffffffffffffff167f3c3284d117c92d0b1699230960384e794dcba184cc48ff114fe4fed20c9b056560405160405180910390a25050505050565b611daa8484846123ad565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611e0c57611dd5848484846128b1565b611e0b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b600181565b6060611e2282612273565b611e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e58906141ed565b60405180910390fd5b600e60009054906101000a900460ff16611f075760118054611e82906139fc565b80601f0160208091040260200160405190810160405280929190818152602001828054611eae906139fc565b8015611efb5780601f10611ed057610100808354040283529160200191611efb565b820191906000526020600020905b815481529060010190602001808311611ede57829003601f168201915b50505050509050611f35565b6010611f1283612a11565b604051602001611f23929190614329565b60405160208183030381529060405290505b919050565b61068581565b611f486127cc565b73ffffffffffffffffffffffffffffffffffffffff16611f6661177d565b73ffffffffffffffffffffffffffffffffffffffff1614611fbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb390613d75565b60405180910390fd5b80600d8190555050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120626127cc565b73ffffffffffffffffffffffffffffffffffffffff1661208061177d565b73ffffffffffffffffffffffffffffffffffffffff16146120d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120cd90613d75565b60405180910390fd5b80601190805190602001906120ec929190612f59565b5050565b6120f86127cc565b73ffffffffffffffffffffffffffffffffffffffff1661211661177d565b73ffffffffffffffffffffffffffffffffffffffff161461216c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216390613d75565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156121dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d3906143ca565b60405180910390fd5b6121e5816127d4565b50565b6121f06127cc565b73ffffffffffffffffffffffffffffffffffffffff1661220e61177d565b73ffffffffffffffffffffffffffffffffffffffff1614612264576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225b90613d75565b60405180910390fd5b80600c8190555050565b60c881565b60008161227e6123a8565b1115801561228d575060005482105b80156122cb575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600080829050806122e16123a8565b11612369576000548110156123685760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612366575b600081141561235c576004600083600190039350838152602001908152602001600020549050612331565b809250505061239b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b60006123b8826122d2565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461241f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166124406123a0565b73ffffffffffffffffffffffffffffffffffffffff16148061246f575061246e856124696123a0565b611fc6565b5b806124b4575061247d6123a0565b73ffffffffffffffffffffffffffffffffffffffff1661249c84610a36565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806124ed576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612554576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6125618585856001612b72565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b61265e86612b78565b1717600460008581526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156126e85760006001840190506000600460008381526020019081526020016000205414156126e65760005481146126e5578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46127508585856001612b82565b5050505050565b600067ffffffffffffffff6040600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054901c169050919050565b6127c8828260405180602001604052806000815250612b88565b5050565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000826128a78584612e3d565b1490509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026128d76123a0565b8786866040518563ffffffff1660e01b81526004016128f9949392919061443f565b602060405180830381600087803b15801561291357600080fd5b505af192505050801561294457506040513d601f19601f8201168201806040525081019061294191906144a0565b60015b6129be573d8060008114612974576040519150601f19603f3d011682016040523d82523d6000602084013e612979565b606091505b506000815114156129b6576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606000821415612a59576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b6d565b600082905060005b60008214612a8b578080612a7490614132565b915050600a82612a8491906144fc565b9150612a61565b60008167ffffffffffffffff811115612aa757612aa6613692565b5b6040519080825280601f01601f191660200182016040528015612ad95781602001600182028036833780820191505090505b5090505b60008514612b6657600182612af2919061452d565b9150600a85612b019190614561565b6030612b0d9190613b35565b60f81b818381518110612b2357612b22614592565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b5f91906144fc565b9450612add565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bf5576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612c30576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c3d6000858386612b72565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1612ca260018514612eb2565b901b60a042901b612cb286612b78565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14612db6575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612d6660008784806001019550876128b1565b612d9c576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612cf7578260005414612db157600080fd5b612e21565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210612db7575b816000819055505050612e376000858386612b82565b50505050565b60008082905060005b8451811015612ea7576000858281518110612e6457612e63614592565b5b60200260200101519050808311612e8657612e7f8382612ebc565b9250612e93565b612e908184612ebc565b92505b508080612e9f90614132565b915050612e46565b508091505092915050565b6000819050919050565b600082600052816020526040600020905092915050565b828054612edf906139fc565b90600052602060002090601f016020900481019282612f015760008555612f48565b82601f10612f1a57803560ff1916838001178555612f48565b82800160010185558215612f48579182015b82811115612f47578235825591602001919060010190612f2c565b5b509050612f559190612fdf565b5090565b828054612f65906139fc565b90600052602060002090601f016020900481019282612f875760008555612fce565b82601f10612fa057805160ff1916838001178555612fce565b82800160010185558215612fce579182015b82811115612fcd578251825591602001919060010190612fb2565b5b509050612fdb9190612fdf565b5090565b5b80821115612ff8576000816000905550600101612fe0565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61304581613010565b811461305057600080fd5b50565b6000813590506130628161303c565b92915050565b60006020828403121561307e5761307d613006565b5b600061308c84828501613053565b91505092915050565b60008115159050919050565b6130aa81613095565b82525050565b60006020820190506130c560008301846130a1565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156131055780820151818401526020810190506130ea565b83811115613114576000848401525b50505050565b6000601f19601f8301169050919050565b6000613136826130cb565b61314081856130d6565b93506131508185602086016130e7565b6131598161311a565b840191505092915050565b6000602082019050818103600083015261317e818461312b565b905092915050565b6000819050919050565b61319981613186565b81146131a457600080fd5b50565b6000813590506131b681613190565b92915050565b6000602082840312156131d2576131d1613006565b5b60006131e0848285016131a7565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613214826131e9565b9050919050565b61322481613209565b82525050565b600060208201905061323f600083018461321b565b92915050565b61324e81613209565b811461325957600080fd5b50565b60008135905061326b81613245565b92915050565b6000806040838503121561328857613287613006565b5b60006132968582860161325c565b92505060206132a7858286016131a7565b9150509250929050565b6132ba81613186565b82525050565b60006020820190506132d560008301846132b1565b92915050565b6000806000606084860312156132f4576132f3613006565b5b60006133028682870161325c565b93505060206133138682870161325c565b9250506040613324868287016131a7565b9150509250925092565b61333781613095565b811461334257600080fd5b50565b6000813590506133548161332e565b92915050565b6000602082840312156133705761336f613006565b5b600061337e84828501613345565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126133ac576133ab613387565b5b8235905067ffffffffffffffff8111156133c9576133c861338c565b5b6020830191508360018202830111156133e5576133e4613391565b5b9250929050565b6000806020838503121561340357613402613006565b5b600083013567ffffffffffffffff8111156134215761342061300b565b5b61342d85828601613396565b92509250509250929050565b6004811061344657600080fd5b50565b60008135905061345881613439565b92915050565b60006020828403121561347457613473613006565b5b600061348284828501613449565b91505092915050565b6000602082840312156134a1576134a0613006565b5b60006134af8482850161325c565b91505092915050565b60008083601f8401126134ce576134cd613387565b5b8235905067ffffffffffffffff8111156134eb576134ea61338c565b5b60208301915083602082028301111561350757613506613391565b5b9250929050565b60008060006040848603121561352757613526613006565b5b6000613535868287016131a7565b935050602084013567ffffffffffffffff8111156135565761355561300b565b5b613562868287016134b8565b92509250509250925092565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b600481106135ae576135ad61356e565b5b50565b60008190506135bf8261359d565b919050565b60006135cf826135b1565b9050919050565b6135df816135c4565b82525050565b60006020820190506135fa60008301846135d6565b92915050565b6000806040838503121561361757613616613006565b5b60006136258582860161325c565b925050602061363685828601613345565b9150509250929050565b6000806020838503121561365757613656613006565b5b600083013567ffffffffffffffff8111156136755761367461300b565b5b613681858286016134b8565b92509250509250929050565b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6136ca8261311a565b810181811067ffffffffffffffff821117156136e9576136e8613692565b5b80604052505050565b60006136fc612ffc565b905061370882826136c1565b919050565b600067ffffffffffffffff82111561372857613727613692565b5b6137318261311a565b9050602081019050919050565b82818337600083830152505050565b600061376061375b8461370d565b6136f2565b90508281526020810184848401111561377c5761377b61368d565b5b61378784828561373e565b509392505050565b600082601f8301126137a4576137a3613387565b5b81356137b484826020860161374d565b91505092915050565b600080600080608085870312156137d7576137d6613006565b5b60006137e58782880161325c565b94505060206137f68782880161325c565b9350506040613807878288016131a7565b925050606085013567ffffffffffffffff8111156138285761382761300b565b5b6138348782880161378f565b91505092959194509250565b6000819050919050565b61385381613840565b811461385e57600080fd5b50565b6000813590506138708161384a565b92915050565b60006020828403121561388c5761388b613006565b5b600061389a84828501613861565b91505092915050565b600080604083850312156138ba576138b9613006565b5b60006138c88582860161325c565b92505060206138d98582860161325c565b9150509250929050565b600067ffffffffffffffff8211156138fe576138fd613692565b5b6139078261311a565b9050602081019050919050565b6000613927613922846138e3565b6136f2565b9050828152602081018484840111156139435761394261368d565b5b61394e84828561373e565b509392505050565b600082601f83011261396b5761396a613387565b5b813561397b848260208601613914565b91505092915050565b60006020828403121561399a57613999613006565b5b600082013567ffffffffffffffff8111156139b8576139b761300b565b5b6139c484828501613956565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613a1457607f821691505b60208210811415613a2857613a276139cd565b5b50919050565b7f5075626c69632073616c65206e6f742073746172746564210000000000000000600082015250565b6000613a646018836130d6565b9150613a6f82613a2e565b602082019050919050565b60006020820190508181036000830152613a9381613a57565b9050919050565b7f5a65726f206973207a65726f2100000000000000000000000000000000000000600082015250565b6000613ad0600d836130d6565b9150613adb82613a9a565b602082019050919050565b60006020820190508181036000830152613aff81613ac3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613b4082613186565b9150613b4b83613186565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b8057613b7f613b06565b5b828201905092915050565b7f457863656564656420746865206c696d69740000000000000000000000000000600082015250565b6000613bc16012836130d6565b9150613bcc82613b8b565b602082019050919050565b60006020820190508181036000830152613bf081613bb4565b9050919050565b7f4e6f7420656e6f75676820746f6b656e73206c65667400000000000000000000600082015250565b6000613c2d6016836130d6565b9150613c3882613bf7565b602082019050919050565b60006020820190508181036000830152613c5c81613c20565b9050919050565b6000613c6e82613186565b9150613c7983613186565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613cb257613cb1613b06565b5b828202905092915050565b7f4e6f7420656e6f7567682065746865722073656e740000000000000000000000600082015250565b6000613cf36015836130d6565b9150613cfe82613cbd565b602082019050919050565b60006020820190508181036000830152613d2281613ce6565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613d5f6020836130d6565b9150613d6a82613d29565b602082019050919050565b60006020820190508181036000830152613d8e81613d52565b9050919050565b7f416c726561647920636c61696d65640000000000000000000000000000000000600082015250565b6000613dcb600f836130d6565b9150613dd682613d95565b602082019050919050565b60006020820190508181036000830152613dfa81613dbe565b9050919050565b7f50726573616c65206e6f74207374617274656421000000000000000000000000600082015250565b6000613e376014836130d6565b9150613e4282613e01565b602082019050919050565b60006020820190508181036000830152613e6681613e2a565b9050919050565b60008160601b9050919050565b6000613e8582613e6d565b9050919050565b6000613e9782613e7a565b9050919050565b613eaf613eaa82613209565b613e8c565b82525050565b6000613ec18284613e9e565b60148201915081905092915050565b7f596f7520617265206e6f7420696e20616c6c6f776c6973740000000000000000600082015250565b6000613f066018836130d6565b9150613f1182613ed0565b602082019050919050565b60006020820190508181036000830152613f3581613ef9565b9050919050565b600081905092915050565b50565b6000613f57600083613f3c565b9150613f6282613f47565b600082019050919050565b6000613f7882613f4a565b9150819050919050565b7f5472616e73666572206661696c65642e00000000000000000000000000000000600082015250565b6000613fb86010836130d6565b9150613fc382613f82565b602082019050919050565b60006020820190508181036000830152613fe781613fab565b9050919050565b7f4f672073616c65206e6f74207374617274656421000000000000000000000000600082015250565b60006140246014836130d6565b915061402f82613fee565b602082019050919050565b6000602082019050818103600083015261405381614017565b9050919050565b7f596f7520617265206e6f74204f47210000000000000000000000000000000000600082015250565b6000614090600f836130d6565b915061409b8261405a565b602082019050919050565b600060208201905081810360008301526140bf81614083565b9050919050565b7f4e6f7420656e6f75676820636c61696d61626c6520746f6b656e73206c656674600082015250565b60006140fc6020836130d6565b9150614107826140c6565b602082019050919050565b6000602082019050818103600083015261412b816140ef565b9050919050565b600061413d82613186565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156141705761416f613b06565b5b600182019050919050565b7f4d657461646174613a2055524920717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006141d76029836130d6565b91506141e28261417b565b604082019050919050565b60006020820190508181036000830152614206816141ca565b9050919050565b600081905092915050565b60008190508160005260206000209050919050565b6000815461423a816139fc565b614244818661420d565b9450600182166000811461425f5760018114614270576142a3565b60ff198316865281860193506142a3565b61427985614218565b60005b8381101561429b5781548189015260018201915060208101905061427c565b838801955050505b50505092915050565b60006142b7826130cb565b6142c1818561420d565b93506142d18185602086016130e7565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b600061431360058361420d565b915061431e826142dd565b600582019050919050565b6000614335828561422d565b915061434182846142ac565b915061434c82614306565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006143b46026836130d6565b91506143bf82614358565b604082019050919050565b600060208201905081810360008301526143e3816143a7565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614411826143ea565b61441b81856143f5565b935061442b8185602086016130e7565b6144348161311a565b840191505092915050565b6000608082019050614454600083018761321b565b614461602083018661321b565b61446e60408301856132b1565b81810360608301526144808184614406565b905095945050505050565b60008151905061449a8161303c565b92915050565b6000602082840312156144b6576144b5613006565b5b60006144c48482850161448b565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061450782613186565b915061451283613186565b925082614522576145216144cd565b5b828204905092915050565b600061453882613186565b915061454383613186565b92508282101561455657614555613b06565b5b828203905092915050565b600061456c82613186565b915061457783613186565b925082614587576145866144cd565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fdfea264697066735822122044196b9d739a472ea98a37e9ec21a5ed45203a07e19511be3cc0374127ab6d7c64736f6c63430008090033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.