ERC-1155
Overview
Max Total Supply
26
Holders
24
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
CryptoBeavers
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 "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Supply.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract CryptoBeavers is ReentrancyGuard, Ownable, ERC1155Supply { //Tier Configuration struct TierOne { uint256 tokenId; uint256 maxSupply; uint256 mintPrice; uint256 maxPerWallet; } struct TierTwo { uint256 tokenId; uint256 maxSupply; uint256 mintPrice; uint256 maxPerWallet; } struct TierThree { uint256 tokenId; uint256 maxSupply; uint256 mintPrice; uint256 maxPerWallet; } struct TierFour { uint256 tokenId; uint256 maxSupply; uint256 mintPrice; uint256 maxPerWallet; } struct TierFive { uint256 tokenId; uint256 maxSupply; uint256 mintPrice; uint256 maxPerWallet; } TierOne public tierOne; TierTwo public tierTwo; TierThree public tierThree; TierFour public tierFour; TierFive public tierFive; bool public isPublicMintActive; address public mattWallet; address public paulWallet; constructor() payable ERC1155("ipfs://QmY2v1a4EwYz9GmJ3upBt1S43uJN6C6NcpVp8fpWJmw5MF/{id}.json") { tierOne = TierOne(0, 10, 1.5 ether, 1); tierTwo = TierTwo(1, 40, 0.75 ether, 2); tierThree = TierThree(2, 100, 0.3 ether, 5); tierFour =TierFour(3, 850, 0.1 ether, 15); tierFive =TierFive(4, 1000, 0.05 ether, 35); isPublicMintActive = true; mattWallet = 0xA2bc07937aAC008829FCCd40b253Cf2629F48CDE; //Matt's Campaign Wallet paulWallet = 0x396A79d2eDEa70b00BE1ec25daDa7a0FFFd8A309; } modifier callerIsUser() { require(tx.origin == msg.sender, "Use your wallet to mint"); _; } function setURI(string memory newuri) external onlyOwner { _setURI(newuri); } function uri(uint256 _tokenid) override public pure returns (string memory) { return string( abi.encodePacked( "ipfs://QmY2v1a4EwYz9GmJ3upBt1S43uJN6C6NcpVp8fpWJmw5MF/", Strings.toString(_tokenid),".json" ) ); } //Minting function mintTierOne(uint256 quantity_) external payable nonReentrant callerIsUser { require(isPublicMintActive, 'minting not enabled'); require(msg.value >= quantity_ * tierOne.mintPrice, 'wrong mint value'); require(totalSupply(tierOne.tokenId) + quantity_ <= tierOne.maxSupply, 'exceeds max supply'); require(balanceOf(msg.sender, tierOne.tokenId) + quantity_ <= tierOne.maxPerWallet, 'max per wallet reached'); _mint(msg.sender, tierOne.tokenId, quantity_, ""); } function mintTierTwo(uint256 quantity_) external payable nonReentrant callerIsUser { require(isPublicMintActive, 'minting not enabled'); require(msg.value >= quantity_ * tierTwo.mintPrice, 'wrong mint value'); require(totalSupply(tierTwo.tokenId) + quantity_ <= tierTwo.maxSupply, 'exceeds max supply'); require(balanceOf(msg.sender, tierTwo.tokenId) + quantity_ <= tierTwo.maxPerWallet, 'max per wallet reached'); _mint(msg.sender, tierTwo.tokenId, quantity_, ""); } function mintTierThree(uint256 quantity_) external payable nonReentrant callerIsUser { require(isPublicMintActive, 'minting not enabled'); require(msg.value >= quantity_ * tierThree.mintPrice, 'wrong mint value'); require(totalSupply(tierThree.tokenId) + quantity_ <= tierThree.maxSupply, 'exceeds max supply'); require(balanceOf(msg.sender, tierThree.tokenId) + quantity_ <= tierThree.maxPerWallet, 'max per wallet reached'); _mint(msg.sender, tierThree.tokenId, quantity_, ""); } function mintTierFour(uint256 quantity_) external payable nonReentrant callerIsUser { require(isPublicMintActive, 'minting not enabled'); require(msg.value >= quantity_ * tierFour.mintPrice, 'wrong mint value'); require(totalSupply(tierFour.tokenId) + quantity_ <= tierFour.maxSupply, 'exceeds max supply'); require(balanceOf(msg.sender, tierFour.tokenId) + quantity_ <= tierFour.maxPerWallet, 'max per wallet reached'); _mint(msg.sender, tierFour.tokenId, quantity_, ""); } function mintTierFive(uint256 quantity_) external payable nonReentrant callerIsUser { require(isPublicMintActive, 'minting not enabled'); require(msg.value >= quantity_ * tierFive.mintPrice, 'wrong mint value'); require(totalSupply(tierOne.tokenId) + quantity_ <= tierFive.maxSupply, 'exceeds max supply'); require(balanceOf(msg.sender, tierFive.tokenId) + quantity_ <= tierFive.maxPerWallet, 'max per wallet reached'); _mint(msg.sender, tierFive.tokenId, quantity_, ""); } //Change Tier limitations function setTierOne(uint256 maxPerWallet_) external onlyOwner { tierOne.maxPerWallet = maxPerWallet_; } function setTierTwo(uint256 maxPerWallet_) external onlyOwner { tierTwo.maxPerWallet = maxPerWallet_; } function setTierThree(uint256 maxPerWallet_) external onlyOwner { tierThree.maxPerWallet = maxPerWallet_; } function setTierFour(uint256 maxPerWallet_) external onlyOwner { tierFour.maxPerWallet = maxPerWallet_; } function setTierFive(uint256 maxPerWallet_) external onlyOwner { tierFive.maxPerWallet = maxPerWallet_; } //Toggle Public mint status function setIsPublicMintActive() external onlyOwner { isPublicMintActive = !isPublicMintActive; } string private customContractURI = "ipfs://Qmdd5ocqCqpj9VqjC5Gb5v7PTKMZPtbURQQjcz4Cr3R497/"; function setContractURI(string memory customContractURI_) external onlyOwner { customContractURI = customContractURI_; } function contractURI() public view returns (string memory) { return customContractURI; } //Withdraw shares to Matt and Paul function withdraw() external onlyOwner { uint256 _totalWithdrawal = address(this).balance; uint256 _totalWithdrawalShare = _totalWithdrawal / 5; uint256 _mattShare = _totalWithdrawalShare * 4; uint256 _paulShare = _totalWithdrawal - _mattShare; (bool successMatt, ) = mattWallet.call{ value: _mattShare }(''); require(successMatt, 'withdraw failed'); (bool successPaul, ) = paulWallet.call{ value: _paulShare }(''); require(successPaul, 'withdraw failed'); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// 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 (token/ERC1155/ERC1155.sol) pragma solidity ^0.8.0; import "./IERC1155.sol"; import "./IERC1155Receiver.sol"; import "./extensions/IERC1155MetadataURI.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the basic standard multi-token. * See https://eips.ethereum.org/EIPS/eip-1155 * Originally based on code by Enjin: https://github.com/enjin/erc-1155 * * _Available since v3.1._ */ contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI { using Address for address; // Mapping from token ID to account balances mapping(uint256 => mapping(address => uint256)) private _balances; // Mapping from account to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json string private _uri; /** * @dev See {_setURI}. */ constructor(string memory uri_) { _setURI(uri_); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC1155).interfaceId || interfaceId == type(IERC1155MetadataURI).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC1155MetadataURI-uri}. * * This implementation returns the same URI for *all* token types. It relies * on the token type ID substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * Clients calling this function must replace the `\{id\}` substring with the * actual token type ID. */ function uri(uint256) public view virtual override returns (string memory) { return _uri; } /** * @dev See {IERC1155-balanceOf}. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) public view virtual override returns (uint256) { require(account != address(0), "ERC1155: balance query for the zero address"); return _balances[id][account]; } /** * @dev See {IERC1155-balanceOfBatch}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] memory accounts, uint256[] memory ids) public view virtual override returns (uint256[] memory) { require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch"); uint256[] memory batchBalances = new uint256[](accounts.length); for (uint256 i = 0; i < accounts.length; ++i) { batchBalances[i] = balanceOf(accounts[i], ids[i]); } return batchBalances; } /** * @dev See {IERC1155-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC1155-isApprovedForAll}. */ function isApprovedForAll(address account, address operator) public view virtual override returns (bool) { return _operatorApprovals[account][operator]; } /** * @dev See {IERC1155-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: caller is not owner nor approved" ); _safeTransferFrom(from, to, id, amount, data); } /** * @dev See {IERC1155-safeBatchTransferFrom}. */ function safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) public virtual override { require( from == _msgSender() || isApprovedForAll(from, _msgSender()), "ERC1155: transfer caller is not owner nor approved" ); _safeBatchTransferFrom(from, to, ids, amounts, data); } /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; emit TransferSingle(operator, from, to, id, amount); _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _safeBatchTransferFrom( address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); require(to != address(0), "ERC1155: transfer to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, to, ids, amounts, data); for (uint256 i = 0; i < ids.length; ++i) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: insufficient balance for transfer"); unchecked { _balances[id][from] = fromBalance - amount; } _balances[id][to] += amount; } emit TransferBatch(operator, from, to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data); } /** * @dev Sets a new URI for all token types, by relying on the token type ID * substitution mechanism * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP]. * * By this mechanism, any occurrence of the `\{id\}` substring in either the * URI or any of the amounts in the JSON file at said URI will be replaced by * clients with the token type ID. * * For example, the `https://token-cdn-domain/\{id\}.json` URI would be * interpreted by clients as * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json` * for token type ID 0x4cce0. * * See {uri}. * * Because these URIs cannot be meaningfully represented by the {URI} event, * this function emits no events. */ function _setURI(string memory newuri) internal virtual { _uri = newuri; } /** * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address to, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][to] += amount; emit TransferSingle(operator, address(0), to, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function _mintBatch( address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual { require(to != address(0), "ERC1155: mint to the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), to, ids, amounts, data); for (uint256 i = 0; i < ids.length; i++) { _balances[ids[i]][to] += amounts[i]; } emit TransferBatch(operator, address(0), to, ids, amounts); _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data); } /** * @dev Destroys `amount` tokens of token type `id` from `from` * * Requirements: * * - `from` cannot be the zero address. * - `from` must have at least `amount` tokens of token type `id`. */ function _burn( address from, uint256 id, uint256 amount ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } emit TransferSingle(operator, from, address(0), id, amount); } /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}. * * Requirements: * * - `ids` and `amounts` must have the same length. */ function _burnBatch( address from, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(from != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, from, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 fromBalance = _balances[id][from]; require(fromBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][from] = fromBalance - amount; } } emit TransferBatch(operator, from, address(0), ids, amounts); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC1155: setting approval status for self"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Hook that is called before any token transfer. This includes minting * and burning, as well as batched variants. * * The same hook is called on both single and batched variants. For single * transfers, the length of the `id` and `amount` arrays will be 1. * * Calling conditions (for each `id` and `amount` pair): * * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens * of token type `id` will be transferred to `to`. * - When `from` is zero, `amount` tokens of token type `id` will be minted * for `to`. * - when `to` is zero, `amount` of ``from``'s tokens of token type `id` * will be burned. * - `from` and `to` are never both zero. * - `ids` and `amounts` have the same, non-zero length. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual {} function _doSafeTransferAcceptanceCheck( address operator, address from, address to, uint256 id, uint256 amount, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) { if (response != IERC1155Receiver.onERC1155Received.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _doSafeBatchTransferAcceptanceCheck( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) private { if (to.isContract()) { try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns ( bytes4 response ) { if (response != IERC1155Receiver.onERC1155BatchReceived.selector) { revert("ERC1155: ERC1155Receiver rejected tokens"); } } catch Error(string memory reason) { revert(reason); } catch { revert("ERC1155: transfer to non ERC1155Receiver implementer"); } } } function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) { uint256[] memory array = new uint256[](1); array[0] = element; return array; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol) pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of ERC1155 that adds tracking of total supply per id. * * Useful for scenarios where Fungible and Non-fungible tokens have to be * clearly identified. Note: While a totalSupply of 1 might mean the * corresponding is an NFT, there is no guarantees that no other token with the * same id are not going to be minted. */ abstract contract ERC1155Supply is ERC1155 { mapping(uint256 => uint256) private _totalSupply; /** * @dev Total amount of tokens in with a given id. */ function totalSupply(uint256 id) public view virtual returns (uint256) { return _totalSupply[id]; } /** * @dev Indicates whether any token exist with a given id, or not. */ function exists(uint256 id) public view virtual returns (bool) { return ERC1155Supply.totalSupply(id) > 0; } /** * @dev See {ERC1155-_beforeTokenTransfer}. */ function _beforeTokenTransfer( address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data ) internal virtual override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); if (from == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] += amounts[i]; } } if (to == address(0)) { for (uint256 i = 0; i < ids.length; ++i) { _totalSupply[ids[i]] -= amounts[i]; } } } }
// 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 // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC1155 compliant contract, as defined in the * https://eips.ethereum.org/EIPS/eip-1155[EIP]. * * _Available since v3.1._ */ interface IERC1155 is IERC165 { /** * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`. */ event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value); /** * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all * transfers. */ event TransferBatch( address indexed operator, address indexed from, address indexed to, uint256[] ids, uint256[] values ); /** * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to * `approved`. */ event ApprovalForAll(address indexed account, address indexed operator, bool approved); /** * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI. * * If an {URI} event was emitted for `id`, the standard * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value * returned by {IERC1155MetadataURI-uri}. */ event URI(string value, uint256 indexed id); /** * @dev Returns the amount of tokens of token type `id` owned by `account`. * * Requirements: * * - `account` cannot be the zero address. */ function balanceOf(address account, uint256 id) external view returns (uint256); /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}. * * Requirements: * * - `accounts` and `ids` must have the same length. */ function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids) external view returns (uint256[] memory); /** * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`, * * Emits an {ApprovalForAll} event. * * Requirements: * * - `operator` cannot be the caller. */ function setApprovalForAll(address operator, bool approved) external; /** * @dev Returns true if `operator` is approved to transfer ``account``'s tokens. * * See {setApprovalForAll}. */ function isApprovedForAll(address account, address operator) external view returns (bool); /** * @dev Transfers `amount` tokens of token type `id` from `from` to `to`. * * Emits a {TransferSingle} event. * * Requirements: * * - `to` cannot be the zero address. * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}. * - `from` must have a balance of tokens of type `id` of at least `amount`. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function safeTransferFrom( address from, address to, uint256 id, uint256 amount, bytes calldata data ) external; /** * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}. * * Emits a {TransferBatch} event. * * Requirements: * * - `ids` and `amounts` must have the same length. * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the * acceptance magic value. */ function safeBatchTransferFrom( address from, address to, uint256[] calldata ids, uint256[] calldata amounts, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/IERC1155Receiver.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** * @dev Handles the receipt of a single ERC1155 token type. This function is * called at the end of a `safeTransferFrom` after the balance has been updated. * * NOTE: To accept the transfer, this must return * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` * (i.e. 0xf23a6e61, or its own function selector). * * @param operator The address which initiated the transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param id The ID of the token being transferred * @param value The amount of tokens being transferred * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** * @dev Handles the receipt of a multiple ERC1155 token types. This function * is called at the end of a `safeBatchTransferFrom` after the balances have * been updated. * * NOTE: To accept the transfer(s), this must return * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` * (i.e. 0xbc197c81, or its own function selector). * * @param operator The address which initiated the batch transfer (i.e. msg.sender) * @param from The address which previously owned the token * @param ids An array containing ids of each token being transferred (order and length must match values array) * @param values An array containing amounts of each token being transferred (order and length must match ids array) * @param data Additional data with no specified format * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol) pragma solidity ^0.8.0; import "../IERC1155.sol"; /** * @dev Interface of the optional ERC1155MetadataExtension interface, as defined * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP]. * * _Available since v3.1._ */ interface IERC1155MetadataURI is IERC1155 { /** * @dev Returns the URI for token type `id`. * * If the `\{id\}` substring is present in the URI, it must be replaced by * clients with the actual token type ID. */ function uri(uint256 id) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mattWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"mintTierFive","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"mintTierFour","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"mintTierOne","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"mintTierThree","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity_","type":"uint256"}],"name":"mintTierTwo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paulWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customContractURI_","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setIsPublicMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setTierFive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setTierFour","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setTierOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setTierThree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxPerWallet_","type":"uint256"}],"name":"setTierTwo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newuri","type":"string"}],"name":"setURI","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":"tierFive","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tierFour","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tierOne","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tierThree","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tierTwo","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"mintPrice","type":"uint256"},{"internalType":"uint256","name":"maxPerWallet","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenid","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052604051806060016040528060368152602001620054cf60369139601c908051906020019062000035929190620003fd565b506040518060600160405280603f815260200162005505603f91396001600081905550620000786200006c6200031360201b60201c565b6200031b60201b60201c565b6200008981620003e160201b60201c565b50604051806080016040528060008152602001600a81526020016714d1120d7b1600008152602001600181525060066000820151816000015560208201518160010155604082015181600201556060820151816003015590505060405180608001604052806001815260200160288152602001670a688906bd8b000081526020016002815250600a6000820151816000015560208201518160010155604082015181600201556060820151816003015590505060405180608001604052806002815260200160648152602001670429d069189e000081526020016005815250600e60008201518160000155602082015181600101556040820151816002015560608201518160030155905050604051806080016040528060038152602001610352815260200167016345785d8a00008152602001600f8152506012600082015181600001556020820151816001015560408201518160020155606082015181600301559050506040518060800160405280600481526020016103e8815260200166b1a2bc2ec50000815260200160238152506016600082015181600001556020820151816001015560408201518160020155606082015181600301559050506001601a60006101000a81548160ff02191690831515021790555073a2bc07937aac008829fccd40b253cf2629f48cde601a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073396a79d2edea70b00be1ec25dada7a0fffd8a309601b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000512565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8060049080519060200190620003f9929190620003fd565b5050565b8280546200040b90620004dc565b90600052602060002090601f0160209004810192826200042f57600085556200047b565b82601f106200044a57805160ff19168380011785556200047b565b828001600101855582156200047b579182015b828111156200047a5782518255916020019190600101906200045d565b5b5090506200048a91906200048e565b5090565b5b80821115620004a95760008160009055506001016200048f565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004f557607f821691505b602082108114156200050c576200050b620004ad565b5b50919050565b614fad80620005226000396000f3fe60806040526004361061020e5760003560e01c80637788379b11610118578063be47aa38116100a0578063e0d9305f1161006f578063e0d9305f14610739578063e8a3d48514610755578063e985e9c514610780578063f242432a146107bd578063f2fde38b146107e65761020e565b8063be47aa381461069b578063c254f0a3146106b7578063dc993019146106e2578063dcc50230146107105761020e565b80638da5cb5b116100e75780638da5cb5b146105b8578063938e3d7b146105e3578063a1c702d01461060c578063a22cb46514610635578063bd85b0391461065e5761020e565b80637788379b1461052957806378183af014610545578063840728c414610573578063889892aa1461058a5761020e565b80632fdc6c751161019b5780634e1273f41161016a5780634e1273f4146104535780634f558e79146104905780636395ead5146104cd57806363c7c830146104e9578063715018a6146105125761020e565b80632fdc6c75146103b757806330f445d9146103e55780633ccfd60b1461040e578063437b7616146104255761020e565b80630e89341c116101e25780630e89341c146102e157806328aecf6a1461031e5780632b5a8e7e1461033a5780632d6b6224146103635780632eb2c2d61461038e5761020e565b8062fdd58e1461021357806301ffc9a71461025057806302fe53051461028d5780630b4709f6146102b6575b600080fd5b34801561021f57600080fd5b5061023a6004803603810190610235919061351a565b61080f565b6040516102479190613569565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906135dc565b6108d9565b6040516102849190613624565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190613785565b6109bb565b005b3480156102c257600080fd5b506102cb610a43565b6040516102d891906137dd565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906137f8565b610a69565b60405161031591906138ad565b60405180910390f35b610338600480360381019061033391906137f8565b610a9a565b005b34801561034657600080fd5b50610361600480360381019061035c91906137f8565b610ce4565b005b34801561036f57600080fd5b50610378610d6d565b6040516103859190613624565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613a38565b610d80565b005b3480156103c357600080fd5b506103cc610e21565b6040516103dc9493929190613b07565b60405180910390f35b3480156103f157600080fd5b5061040c600480360381019061040791906137f8565b610e3f565b005b34801561041a57600080fd5b50610423610ec8565b005b34801561043157600080fd5b5061043a61111f565b60405161044a9493929190613b07565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190613c0f565b61113d565b6040516104879190613d45565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b291906137f8565b611256565b6040516104c49190613624565b60405180910390f35b6104e760048036038101906104e291906137f8565b61126a565b005b3480156104f557600080fd5b50610510600480360381019061050b91906137f8565b6114b4565b005b34801561051e57600080fd5b5061052761153d565b005b610543600480360381019061053e91906137f8565b6115c5565b005b34801561055157600080fd5b5061055a61180f565b60405161056a9493929190613b07565b60405180910390f35b34801561057f57600080fd5b5061058861182d565b005b34801561059657600080fd5b5061059f6118d5565b6040516105af9493929190613b07565b60405180910390f35b3480156105c457600080fd5b506105cd6118f3565b6040516105da91906137dd565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190613785565b61191d565b005b34801561061857600080fd5b50610633600480360381019061062e91906137f8565b6119b3565b005b34801561064157600080fd5b5061065c60048036038101906106579190613d93565b611a3c565b005b34801561066a57600080fd5b50610685600480360381019061068091906137f8565b611a52565b6040516106929190613569565b60405180910390f35b6106b560048036038101906106b091906137f8565b611a6f565b005b3480156106c357600080fd5b506106cc611cb9565b6040516106d991906137dd565b60405180910390f35b3480156106ee57600080fd5b506106f7611cdf565b6040516107079493929190613b07565b60405180910390f35b34801561071c57600080fd5b50610737600480360381019061073291906137f8565b611cfd565b005b610753600480360381019061074e91906137f8565b611d86565b005b34801561076157600080fd5b5061076a611fd0565b60405161077791906138ad565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190613dd3565b612062565b6040516107b49190613624565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df9190613e13565b6120f6565b005b3480156107f257600080fd5b5061080d60048036038101906108089190613eaa565b612197565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087790613f49565b60405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b457506109b38261228f565b5b9050919050565b6109c36122f9565b73ffffffffffffffffffffffffffffffffffffffff166109e16118f3565b73ffffffffffffffffffffffffffffffffffffffff1614610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e90613fb5565b60405180910390fd5b610a4081612301565b50565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060610a748261231b565b604051602001610a8491906140cf565b6040516020818303038152906040529050919050565b60026000541415610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790614148565b60405180910390fd5b60026000819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d906141b4565b60405180910390fd5b601a60009054906101000a900460ff16610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c90614220565b60405180910390fd5b600e6002015481610bb6919061426f565b341015610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90614315565b60405180910390fd5b600e6001015481610c0d600e60000154611a52565b610c179190614335565b1115610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906143d7565b60405180910390fd5b600e6003015481610c6e33600e6000015461080f565b610c789190614335565b1115610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090614443565b60405180910390fd5b610cd933600e60000154836040518060200160405280600081525061247c565b600160008190555050565b610cec6122f9565b73ffffffffffffffffffffffffffffffffffffffff16610d0a6118f3565b73ffffffffffffffffffffffffffffffffffffffff1614610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790613fb5565b60405180910390fd5b80600e6003018190555050565b601a60009054906101000a900460ff1681565b610d886122f9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610dce5750610dcd85610dc86122f9565b612062565b5b610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e04906144d5565b60405180910390fd5b610e1a8585858585612613565b5050505050565b600e8060000154908060010154908060020154908060030154905084565b610e476122f9565b73ffffffffffffffffffffffffffffffffffffffff16610e656118f3565b73ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290613fb5565b60405180910390fd5b8060166003018190555050565b610ed06122f9565b73ffffffffffffffffffffffffffffffffffffffff16610eee6118f3565b73ffffffffffffffffffffffffffffffffffffffff1614610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90613fb5565b60405180910390fd5b60004790506000600582610f589190614524565b90506000600482610f69919061426f565b905060008184610f799190614555565b90506000601a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610fc3906145ba565b60006040518083038185875af1925050503d8060008114611000576040519150601f19603f3d011682016040523d82523d6000602084013e611005565b606091505b5050905080611049576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110409061461b565b60405180910390fd5b6000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051611091906145ba565b60006040518083038185875af1925050503d80600081146110ce576040519150601f19603f3d011682016040523d82523d6000602084013e6110d3565b606091505b5050905080611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e9061461b565b60405180910390fd5b505050505050565b60168060000154908060010154908060020154908060030154905084565b60608151835114611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a906146ad565b60405180910390fd5b6000835167ffffffffffffffff8111156111a05761119f61365a565b5b6040519080825280602002602001820160405280156111ce5781602001602082028036833780820191505090505b50905060005b845181101561124b5761121b8582815181106111f3576111f26146cd565b5b602002602001015185838151811061120e5761120d6146cd565b5b602002602001015161080f565b82828151811061122e5761122d6146cd565b5b60200260200101818152505080611244906146fc565b90506111d4565b508091505092915050565b60008061126283611a52565b119050919050565b600260005414156112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a790614148565b60405180910390fd5b60026000819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d906141b4565b60405180910390fd5b601a60009054906101000a900460ff16611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c90614220565b60405180910390fd5b60166002015481611386919061426f565b3410156113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf90614315565b60405180910390fd5b601660010154816113dd600660000154611a52565b6113e79190614335565b1115611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f906143d7565b60405180910390fd5b6016600301548161143e3360166000015461080f565b6114489190614335565b1115611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090614443565b60405180910390fd5b6114a933601660000154836040518060200160405280600081525061247c565b600160008190555050565b6114bc6122f9565b73ffffffffffffffffffffffffffffffffffffffff166114da6118f3565b73ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790613fb5565b60405180910390fd5b80600a6003018190555050565b6115456122f9565b73ffffffffffffffffffffffffffffffffffffffff166115636118f3565b73ffffffffffffffffffffffffffffffffffffffff16146115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090613fb5565b60405180910390fd5b6115c3600061292a565b565b6002600054141561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290614148565b60405180910390fd5b60026000819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611681576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611678906141b4565b60405180910390fd5b601a60009054906101000a900460ff166116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790614220565b60405180910390fd5b600660020154816116e1919061426f565b341015611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90614315565b60405180910390fd5b60066001015481611738600660000154611a52565b6117429190614335565b1115611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a906143d7565b60405180910390fd5b600660030154816117993360066000015461080f565b6117a39190614335565b11156117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db90614443565b60405180910390fd5b61180433600660000154836040518060200160405280600081525061247c565b600160008190555050565b600a8060000154908060010154908060020154908060030154905084565b6118356122f9565b73ffffffffffffffffffffffffffffffffffffffff166118536118f3565b73ffffffffffffffffffffffffffffffffffffffff16146118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090613fb5565b60405180910390fd5b601a60009054906101000a900460ff1615601a60006101000a81548160ff021916908315150217905550565b60128060000154908060010154908060020154908060030154905084565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119256122f9565b73ffffffffffffffffffffffffffffffffffffffff166119436118f3565b73ffffffffffffffffffffffffffffffffffffffff1614611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090613fb5565b60405180910390fd5b80601c90805190602001906119af9291906133cf565b5050565b6119bb6122f9565b73ffffffffffffffffffffffffffffffffffffffff166119d96118f3565b73ffffffffffffffffffffffffffffffffffffffff1614611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690613fb5565b60405180910390fd5b8060126003018190555050565b611a4e611a476122f9565b83836129f0565b5050565b600060056000838152602001908152602001600020549050919050565b60026000541415611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac90614148565b60405180910390fd5b60026000819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b22906141b4565b60405180910390fd5b601a60009054906101000a900460ff16611b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7190614220565b60405180910390fd5b600a6002015481611b8b919061426f565b341015611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490614315565b60405180910390fd5b600a6001015481611be2600a60000154611a52565b611bec9190614335565b1115611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c24906143d7565b60405180910390fd5b600a6003015481611c4333600a6000015461080f565b611c4d9190614335565b1115611c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8590614443565b60405180910390fd5b611cae33600a60000154836040518060200160405280600081525061247c565b600160008190555050565b601a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60068060000154908060010154908060020154908060030154905084565b611d056122f9565b73ffffffffffffffffffffffffffffffffffffffff16611d236118f3565b73ffffffffffffffffffffffffffffffffffffffff1614611d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7090613fb5565b60405180910390fd5b8060066003018190555050565b60026000541415611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc390614148565b60405180910390fd5b60026000819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e39906141b4565b60405180910390fd5b601a60009054906101000a900460ff16611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8890614220565b60405180910390fd5b60126002015481611ea2919061426f565b341015611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90614315565b60405180910390fd5b60126001015481611ef9601260000154611a52565b611f039190614335565b1115611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b906143d7565b60405180910390fd5b60126003015481611f5a3360126000015461080f565b611f649190614335565b1115611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90614443565b60405180910390fd5b611fc533601260000154836040518060200160405280600081525061247c565b600160008190555050565b6060601c8054611fdf90614774565b80601f016020809104026020016040519081016040528092919081815260200182805461200b90614774565b80156120585780601f1061202d57610100808354040283529160200191612058565b820191906000526020600020905b81548152906001019060200180831161203b57829003601f168201915b5050505050905090565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120fe6122f9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061214457506121438561213e6122f9565b612062565b5b612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a90614818565b60405180910390fd5b6121908585858585612b5d565b5050505050565b61219f6122f9565b73ffffffffffffffffffffffffffffffffffffffff166121bd6118f3565b73ffffffffffffffffffffffffffffffffffffffff1614612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a90613fb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a906148aa565b60405180910390fd5b61228c8161292a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b80600490805190602001906123179291906133cf565b5050565b60606000821415612363576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612477565b600082905060005b6000821461239557808061237e906146fc565b915050600a8261238e9190614524565b915061236b565b60008167ffffffffffffffff8111156123b1576123b061365a565b5b6040519080825280601f01601f1916602001820160405280156123e35781602001600182028036833780820191505090505b5090505b60008514612470576001826123fc9190614555565b9150600a8561240b91906148ca565b60306124179190614335565b60f81b81838151811061242d5761242c6146cd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124699190614524565b94506123e7565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e39061496d565b60405180910390fd5b60006124f66122f9565b90506125178160008761250888612de2565b61251188612de2565b87612e5c565b826002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125779190614335565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516125f592919061498d565b60405180910390a461260c81600087878787612fd6565b5050505050565b8151835114612657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264e90614a28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126be90614aba565b60405180910390fd5b60006126d16122f9565b90506126e1818787878787612e5c565b60005b8451811015612895576000858281518110612702576127016146cd565b5b602002602001015190506000858381518110612721576127206146cd565b5b6020026020010151905060006002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba90614b4c565b60405180910390fd5b8181036002600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461287a9190614335565b925050819055505050508061288e906146fc565b90506126e4565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161290c929190614b6c565b60405180910390a46129228187878787876131bd565b505050505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5690614c15565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b509190613624565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc490614aba565b60405180910390fd5b6000612bd76122f9565b9050612bf7818787612be888612de2565b612bf188612de2565b87612e5c565b60006002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8690614b4c565b60405180910390fd5b8381036002600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d469190614335565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612dc392919061498d565b60405180910390a4612dd9828888888888612fd6565b50505050505050565b60606000600167ffffffffffffffff811115612e0157612e0061365a565b5b604051908082528060200260200182016040528015612e2f5781602001602082028036833780820191505090505b5090508281600081518110612e4757612e466146cd565b5b60200260200101818152505080915050919050565b612e6a8686868686866133a4565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f1c5760005b8351811015612f1a57828181518110612ebe57612ebd6146cd565b5b602002602001015160056000868481518110612edd57612edc6146cd565b5b602002602001015181526020019081526020016000206000828254612f029190614335565b9250508190555080612f13906146fc565b9050612ea2565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fce5760005b8351811015612fcc57828181518110612f7057612f6f6146cd565b5b602002602001015160056000868481518110612f8f57612f8e6146cd565b5b602002602001015181526020019081526020016000206000828254612fb49190614555565b9250508190555080612fc5906146fc565b9050612f54565b505b505050505050565b612ff58473ffffffffffffffffffffffffffffffffffffffff166133ac565b156131b5578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161303b959493929190614c8a565b602060405180830381600087803b15801561305557600080fd5b505af192505050801561308657506040513d601f19601f820116820180604052508101906130839190614cf9565b60015b61312c57613092614d33565b806308c379a014156130ef57506130a7614d55565b806130b257506130f1565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e691906138ad565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312390614e5d565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131aa90614eef565b60405180910390fd5b505b505050505050565b6131dc8473ffffffffffffffffffffffffffffffffffffffff166133ac565b1561339c578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401613222959493929190614f0f565b602060405180830381600087803b15801561323c57600080fd5b505af192505050801561326d57506040513d601f19601f8201168201806040525081019061326a9190614cf9565b60015b61331357613279614d33565b806308c379a014156132d6575061328e614d55565b8061329957506132d8565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cd91906138ad565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330a90614e5d565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461339a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339190614eef565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546133db90614774565b90600052602060002090601f0160209004810192826133fd5760008555613444565b82601f1061341657805160ff1916838001178555613444565b82800160010185558215613444579182015b82811115613443578251825591602001919060010190613428565b5b5090506134519190613455565b5090565b5b8082111561346e576000816000905550600101613456565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134b182613486565b9050919050565b6134c1816134a6565b81146134cc57600080fd5b50565b6000813590506134de816134b8565b92915050565b6000819050919050565b6134f7816134e4565b811461350257600080fd5b50565b600081359050613514816134ee565b92915050565b600080604083850312156135315761353061347c565b5b600061353f858286016134cf565b925050602061355085828601613505565b9150509250929050565b613563816134e4565b82525050565b600060208201905061357e600083018461355a565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135b981613584565b81146135c457600080fd5b50565b6000813590506135d6816135b0565b92915050565b6000602082840312156135f2576135f161347c565b5b6000613600848285016135c7565b91505092915050565b60008115159050919050565b61361e81613609565b82525050565b60006020820190506136396000830184613615565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61369282613649565b810181811067ffffffffffffffff821117156136b1576136b061365a565b5b80604052505050565b60006136c4613472565b90506136d08282613689565b919050565b600067ffffffffffffffff8211156136f0576136ef61365a565b5b6136f982613649565b9050602081019050919050565b82818337600083830152505050565b6000613728613723846136d5565b6136ba565b90508281526020810184848401111561374457613743613644565b5b61374f848285613706565b509392505050565b600082601f83011261376c5761376b61363f565b5b813561377c848260208601613715565b91505092915050565b60006020828403121561379b5761379a61347c565b5b600082013567ffffffffffffffff8111156137b9576137b8613481565b5b6137c584828501613757565b91505092915050565b6137d7816134a6565b82525050565b60006020820190506137f260008301846137ce565b92915050565b60006020828403121561380e5761380d61347c565b5b600061381c84828501613505565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561385f578082015181840152602081019050613844565b8381111561386e576000848401525b50505050565b600061387f82613825565b6138898185613830565b9350613899818560208601613841565b6138a281613649565b840191505092915050565b600060208201905081810360008301526138c78184613874565b905092915050565b600067ffffffffffffffff8211156138ea576138e961365a565b5b602082029050602081019050919050565b600080fd5b600061391361390e846138cf565b6136ba565b90508083825260208201905060208402830185811115613936576139356138fb565b5b835b8181101561395f578061394b8882613505565b845260208401935050602081019050613938565b5050509392505050565b600082601f83011261397e5761397d61363f565b5b813561398e848260208601613900565b91505092915050565b600067ffffffffffffffff8211156139b2576139b161365a565b5b6139bb82613649565b9050602081019050919050565b60006139db6139d684613997565b6136ba565b9050828152602081018484840111156139f7576139f6613644565b5b613a02848285613706565b509392505050565b600082601f830112613a1f57613a1e61363f565b5b8135613a2f8482602086016139c8565b91505092915050565b600080600080600060a08688031215613a5457613a5361347c565b5b6000613a62888289016134cf565b9550506020613a73888289016134cf565b945050604086013567ffffffffffffffff811115613a9457613a93613481565b5b613aa088828901613969565b935050606086013567ffffffffffffffff811115613ac157613ac0613481565b5b613acd88828901613969565b925050608086013567ffffffffffffffff811115613aee57613aed613481565b5b613afa88828901613a0a565b9150509295509295909350565b6000608082019050613b1c600083018761355a565b613b29602083018661355a565b613b36604083018561355a565b613b43606083018461355a565b95945050505050565b600067ffffffffffffffff821115613b6757613b6661365a565b5b602082029050602081019050919050565b6000613b8b613b8684613b4c565b6136ba565b90508083825260208201905060208402830185811115613bae57613bad6138fb565b5b835b81811015613bd75780613bc388826134cf565b845260208401935050602081019050613bb0565b5050509392505050565b600082601f830112613bf657613bf561363f565b5b8135613c06848260208601613b78565b91505092915050565b60008060408385031215613c2657613c2561347c565b5b600083013567ffffffffffffffff811115613c4457613c43613481565b5b613c5085828601613be1565b925050602083013567ffffffffffffffff811115613c7157613c70613481565b5b613c7d85828601613969565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613cbc816134e4565b82525050565b6000613cce8383613cb3565b60208301905092915050565b6000602082019050919050565b6000613cf282613c87565b613cfc8185613c92565b9350613d0783613ca3565b8060005b83811015613d38578151613d1f8882613cc2565b9750613d2a83613cda565b925050600181019050613d0b565b5085935050505092915050565b60006020820190508181036000830152613d5f8184613ce7565b905092915050565b613d7081613609565b8114613d7b57600080fd5b50565b600081359050613d8d81613d67565b92915050565b60008060408385031215613daa57613da961347c565b5b6000613db8858286016134cf565b9250506020613dc985828601613d7e565b9150509250929050565b60008060408385031215613dea57613de961347c565b5b6000613df8858286016134cf565b9250506020613e09858286016134cf565b9150509250929050565b600080600080600060a08688031215613e2f57613e2e61347c565b5b6000613e3d888289016134cf565b9550506020613e4e888289016134cf565b9450506040613e5f88828901613505565b9350506060613e7088828901613505565b925050608086013567ffffffffffffffff811115613e9157613e90613481565b5b613e9d88828901613a0a565b9150509295509295909350565b600060208284031215613ec057613ebf61347c565b5b6000613ece848285016134cf565b91505092915050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613f33602b83613830565b9150613f3e82613ed7565b604082019050919050565b60006020820190508181036000830152613f6281613f26565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f9f602083613830565b9150613faa82613f69565b602082019050919050565b60006020820190508181036000830152613fce81613f92565b9050919050565b600081905092915050565b7f697066733a2f2f516d5932763161344577597a39476d4a33757042743153343360008201527f754a4e3643364e63705670386670574a6d77354d462f00000000000000000000602082015250565b600061403c603683613fd5565b915061404782613fe0565b603682019050919050565b600061405d82613825565b6140678185613fd5565b9350614077818560208601613841565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006140b9600583613fd5565b91506140c482614083565b600582019050919050565b60006140da8261402f565b91506140e68284614052565b91506140f1826140ac565b915081905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614132601f83613830565b915061413d826140fc565b602082019050919050565b6000602082019050818103600083015261416181614125565b9050919050565b7f55736520796f75722077616c6c657420746f206d696e74000000000000000000600082015250565b600061419e601783613830565b91506141a982614168565b602082019050919050565b600060208201905081810360008301526141cd81614191565b9050919050565b7f6d696e74696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b600061420a601383613830565b9150614215826141d4565b602082019050919050565b60006020820190508181036000830152614239816141fd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061427a826134e4565b9150614285836134e4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142be576142bd614240565b5b828202905092915050565b7f77726f6e67206d696e742076616c756500000000000000000000000000000000600082015250565b60006142ff601083613830565b915061430a826142c9565b602082019050919050565b6000602082019050818103600083015261432e816142f2565b9050919050565b6000614340826134e4565b915061434b836134e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143805761437f614240565b5b828201905092915050565b7f65786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006143c1601283613830565b91506143cc8261438b565b602082019050919050565b600060208201905081810360008301526143f0816143b4565b9050919050565b7f6d6178207065722077616c6c6574207265616368656400000000000000000000600082015250565b600061442d601683613830565b9150614438826143f7565b602082019050919050565b6000602082019050818103600083015261445c81614420565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006144bf603283613830565b91506144ca82614463565b604082019050919050565b600060208201905081810360008301526144ee816144b2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061452f826134e4565b915061453a836134e4565b92508261454a576145496144f5565b5b828204905092915050565b6000614560826134e4565b915061456b836134e4565b92508282101561457e5761457d614240565b5b828203905092915050565b600081905092915050565b50565b60006145a4600083614589565b91506145af82614594565b600082019050919050565b60006145c582614597565b9150819050919050565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000614605600f83613830565b9150614610826145cf565b602082019050919050565b60006020820190508181036000830152614634816145f8565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000614697602983613830565b91506146a28261463b565b604082019050919050565b600060208201905081810360008301526146c68161468a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614707826134e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561473a57614739614240565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061478c57607f821691505b602082108114156147a05761479f614745565b5b50919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614802602983613830565b915061480d826147a6565b604082019050919050565b60006020820190508181036000830152614831816147f5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614894602683613830565b915061489f82614838565b604082019050919050565b600060208201905081810360008301526148c381614887565b9050919050565b60006148d5826134e4565b91506148e0836134e4565b9250826148f0576148ef6144f5565b5b828206905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614957602183613830565b9150614962826148fb565b604082019050919050565b600060208201905081810360008301526149868161494a565b9050919050565b60006040820190506149a2600083018561355a565b6149af602083018461355a565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614a12602883613830565b9150614a1d826149b6565b604082019050919050565b60006020820190508181036000830152614a4181614a05565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614aa4602583613830565b9150614aaf82614a48565b604082019050919050565b60006020820190508181036000830152614ad381614a97565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614b36602a83613830565b9150614b4182614ada565b604082019050919050565b60006020820190508181036000830152614b6581614b29565b9050919050565b60006040820190508181036000830152614b868185613ce7565b90508181036020830152614b9a8184613ce7565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614bff602983613830565b9150614c0a82614ba3565b604082019050919050565b60006020820190508181036000830152614c2e81614bf2565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c5c82614c35565b614c668185614c40565b9350614c76818560208601613841565b614c7f81613649565b840191505092915050565b600060a082019050614c9f60008301886137ce565b614cac60208301876137ce565b614cb9604083018661355a565b614cc6606083018561355a565b8181036080830152614cd88184614c51565b90509695505050505050565b600081519050614cf3816135b0565b92915050565b600060208284031215614d0f57614d0e61347c565b5b6000614d1d84828501614ce4565b91505092915050565b60008160e01c9050919050565b600060033d1115614d525760046000803e614d4f600051614d26565b90505b90565b600060443d1015614d6557614de8565b614d6d613472565b60043d036004823e80513d602482011167ffffffffffffffff82111715614d95575050614de8565b808201805167ffffffffffffffff811115614db35750505050614de8565b80602083010160043d038501811115614dd0575050505050614de8565b614ddf82602001850186613689565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614e47603483613830565b9150614e5282614deb565b604082019050919050565b60006020820190508181036000830152614e7681614e3a565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614ed9602883613830565b9150614ee482614e7d565b604082019050919050565b60006020820190508181036000830152614f0881614ecc565b9050919050565b600060a082019050614f2460008301886137ce565b614f3160208301876137ce565b8181036040830152614f438186613ce7565b90508181036060830152614f578185613ce7565b90508181036080830152614f6b8184614c51565b9050969550505050505056fea264697066735822122088157af88d0b368bac54674ca9ebb8c20cae93aaa9056d50b53c4e0e7471739964736f6c63430008090033697066733a2f2f516d6464356f63714371706a3956716a4335476235763750544b4d5a507462555251516a637a34437233523439372f697066733a2f2f516d5932763161344577597a39476d4a337570427431533433754a4e3643364e63705670386670574a6d77354d462f7b69647d2e6a736f6e
Deployed Bytecode
0x60806040526004361061020e5760003560e01c80637788379b11610118578063be47aa38116100a0578063e0d9305f1161006f578063e0d9305f14610739578063e8a3d48514610755578063e985e9c514610780578063f242432a146107bd578063f2fde38b146107e65761020e565b8063be47aa381461069b578063c254f0a3146106b7578063dc993019146106e2578063dcc50230146107105761020e565b80638da5cb5b116100e75780638da5cb5b146105b8578063938e3d7b146105e3578063a1c702d01461060c578063a22cb46514610635578063bd85b0391461065e5761020e565b80637788379b1461052957806378183af014610545578063840728c414610573578063889892aa1461058a5761020e565b80632fdc6c751161019b5780634e1273f41161016a5780634e1273f4146104535780634f558e79146104905780636395ead5146104cd57806363c7c830146104e9578063715018a6146105125761020e565b80632fdc6c75146103b757806330f445d9146103e55780633ccfd60b1461040e578063437b7616146104255761020e565b80630e89341c116101e25780630e89341c146102e157806328aecf6a1461031e5780632b5a8e7e1461033a5780632d6b6224146103635780632eb2c2d61461038e5761020e565b8062fdd58e1461021357806301ffc9a71461025057806302fe53051461028d5780630b4709f6146102b6575b600080fd5b34801561021f57600080fd5b5061023a6004803603810190610235919061351a565b61080f565b6040516102479190613569565b60405180910390f35b34801561025c57600080fd5b50610277600480360381019061027291906135dc565b6108d9565b6040516102849190613624565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190613785565b6109bb565b005b3480156102c257600080fd5b506102cb610a43565b6040516102d891906137dd565b60405180910390f35b3480156102ed57600080fd5b50610308600480360381019061030391906137f8565b610a69565b60405161031591906138ad565b60405180910390f35b610338600480360381019061033391906137f8565b610a9a565b005b34801561034657600080fd5b50610361600480360381019061035c91906137f8565b610ce4565b005b34801561036f57600080fd5b50610378610d6d565b6040516103859190613624565b60405180910390f35b34801561039a57600080fd5b506103b560048036038101906103b09190613a38565b610d80565b005b3480156103c357600080fd5b506103cc610e21565b6040516103dc9493929190613b07565b60405180910390f35b3480156103f157600080fd5b5061040c600480360381019061040791906137f8565b610e3f565b005b34801561041a57600080fd5b50610423610ec8565b005b34801561043157600080fd5b5061043a61111f565b60405161044a9493929190613b07565b60405180910390f35b34801561045f57600080fd5b5061047a60048036038101906104759190613c0f565b61113d565b6040516104879190613d45565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b291906137f8565b611256565b6040516104c49190613624565b60405180910390f35b6104e760048036038101906104e291906137f8565b61126a565b005b3480156104f557600080fd5b50610510600480360381019061050b91906137f8565b6114b4565b005b34801561051e57600080fd5b5061052761153d565b005b610543600480360381019061053e91906137f8565b6115c5565b005b34801561055157600080fd5b5061055a61180f565b60405161056a9493929190613b07565b60405180910390f35b34801561057f57600080fd5b5061058861182d565b005b34801561059657600080fd5b5061059f6118d5565b6040516105af9493929190613b07565b60405180910390f35b3480156105c457600080fd5b506105cd6118f3565b6040516105da91906137dd565b60405180910390f35b3480156105ef57600080fd5b5061060a60048036038101906106059190613785565b61191d565b005b34801561061857600080fd5b50610633600480360381019061062e91906137f8565b6119b3565b005b34801561064157600080fd5b5061065c60048036038101906106579190613d93565b611a3c565b005b34801561066a57600080fd5b50610685600480360381019061068091906137f8565b611a52565b6040516106929190613569565b60405180910390f35b6106b560048036038101906106b091906137f8565b611a6f565b005b3480156106c357600080fd5b506106cc611cb9565b6040516106d991906137dd565b60405180910390f35b3480156106ee57600080fd5b506106f7611cdf565b6040516107079493929190613b07565b60405180910390f35b34801561071c57600080fd5b50610737600480360381019061073291906137f8565b611cfd565b005b610753600480360381019061074e91906137f8565b611d86565b005b34801561076157600080fd5b5061076a611fd0565b60405161077791906138ad565b60405180910390f35b34801561078c57600080fd5b506107a760048036038101906107a29190613dd3565b612062565b6040516107b49190613624565b60405180910390f35b3480156107c957600080fd5b506107e460048036038101906107df9190613e13565b6120f6565b005b3480156107f257600080fd5b5061080d60048036038101906108089190613eaa565b612197565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610880576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087790613f49565b60405180910390fd5b6002600083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109a457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109b457506109b38261228f565b5b9050919050565b6109c36122f9565b73ffffffffffffffffffffffffffffffffffffffff166109e16118f3565b73ffffffffffffffffffffffffffffffffffffffff1614610a37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2e90613fb5565b60405180910390fd5b610a4081612301565b50565b601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6060610a748261231b565b604051602001610a8491906140cf565b6040516020818303038152906040529050919050565b60026000541415610ae0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ad790614148565b60405180910390fd5b60026000819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d906141b4565b60405180910390fd5b601a60009054906101000a900460ff16610ba5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b9c90614220565b60405180910390fd5b600e6002015481610bb6919061426f565b341015610bf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bef90614315565b60405180910390fd5b600e6001015481610c0d600e60000154611a52565b610c179190614335565b1115610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906143d7565b60405180910390fd5b600e6003015481610c6e33600e6000015461080f565b610c789190614335565b1115610cb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb090614443565b60405180910390fd5b610cd933600e60000154836040518060200160405280600081525061247c565b600160008190555050565b610cec6122f9565b73ffffffffffffffffffffffffffffffffffffffff16610d0a6118f3565b73ffffffffffffffffffffffffffffffffffffffff1614610d60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d5790613fb5565b60405180910390fd5b80600e6003018190555050565b601a60009054906101000a900460ff1681565b610d886122f9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610dce5750610dcd85610dc86122f9565b612062565b5b610e0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e04906144d5565b60405180910390fd5b610e1a8585858585612613565b5050505050565b600e8060000154908060010154908060020154908060030154905084565b610e476122f9565b73ffffffffffffffffffffffffffffffffffffffff16610e656118f3565b73ffffffffffffffffffffffffffffffffffffffff1614610ebb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb290613fb5565b60405180910390fd5b8060166003018190555050565b610ed06122f9565b73ffffffffffffffffffffffffffffffffffffffff16610eee6118f3565b73ffffffffffffffffffffffffffffffffffffffff1614610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90613fb5565b60405180910390fd5b60004790506000600582610f589190614524565b90506000600482610f69919061426f565b905060008184610f799190614555565b90506000601a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051610fc3906145ba565b60006040518083038185875af1925050503d8060008114611000576040519150601f19603f3d011682016040523d82523d6000602084013e611005565b606091505b5050905080611049576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110409061461b565b60405180910390fd5b6000601b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1683604051611091906145ba565b60006040518083038185875af1925050503d80600081146110ce576040519150601f19603f3d011682016040523d82523d6000602084013e6110d3565b606091505b5050905080611117576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110e9061461b565b60405180910390fd5b505050505050565b60168060000154908060010154908060020154908060030154905084565b60608151835114611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a906146ad565b60405180910390fd5b6000835167ffffffffffffffff8111156111a05761119f61365a565b5b6040519080825280602002602001820160405280156111ce5781602001602082028036833780820191505090505b50905060005b845181101561124b5761121b8582815181106111f3576111f26146cd565b5b602002602001015185838151811061120e5761120d6146cd565b5b602002602001015161080f565b82828151811061122e5761122d6146cd565b5b60200260200101818152505080611244906146fc565b90506111d4565b508091505092915050565b60008061126283611a52565b119050919050565b600260005414156112b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a790614148565b60405180910390fd5b60026000819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611326576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131d906141b4565b60405180910390fd5b601a60009054906101000a900460ff16611375576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161136c90614220565b60405180910390fd5b60166002015481611386919061426f565b3410156113c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bf90614315565b60405180910390fd5b601660010154816113dd600660000154611a52565b6113e79190614335565b1115611428576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141f906143d7565b60405180910390fd5b6016600301548161143e3360166000015461080f565b6114489190614335565b1115611489576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148090614443565b60405180910390fd5b6114a933601660000154836040518060200160405280600081525061247c565b600160008190555050565b6114bc6122f9565b73ffffffffffffffffffffffffffffffffffffffff166114da6118f3565b73ffffffffffffffffffffffffffffffffffffffff1614611530576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152790613fb5565b60405180910390fd5b80600a6003018190555050565b6115456122f9565b73ffffffffffffffffffffffffffffffffffffffff166115636118f3565b73ffffffffffffffffffffffffffffffffffffffff16146115b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b090613fb5565b60405180910390fd5b6115c3600061292a565b565b6002600054141561160b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160290614148565b60405180910390fd5b60026000819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611681576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611678906141b4565b60405180910390fd5b601a60009054906101000a900460ff166116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790614220565b60405180910390fd5b600660020154816116e1919061426f565b341015611723576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171a90614315565b60405180910390fd5b60066001015481611738600660000154611a52565b6117429190614335565b1115611783576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177a906143d7565b60405180910390fd5b600660030154816117993360066000015461080f565b6117a39190614335565b11156117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db90614443565b60405180910390fd5b61180433600660000154836040518060200160405280600081525061247c565b600160008190555050565b600a8060000154908060010154908060020154908060030154905084565b6118356122f9565b73ffffffffffffffffffffffffffffffffffffffff166118536118f3565b73ffffffffffffffffffffffffffffffffffffffff16146118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090613fb5565b60405180910390fd5b601a60009054906101000a900460ff1615601a60006101000a81548160ff021916908315150217905550565b60128060000154908060010154908060020154908060030154905084565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6119256122f9565b73ffffffffffffffffffffffffffffffffffffffff166119436118f3565b73ffffffffffffffffffffffffffffffffffffffff1614611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090613fb5565b60405180910390fd5b80601c90805190602001906119af9291906133cf565b5050565b6119bb6122f9565b73ffffffffffffffffffffffffffffffffffffffff166119d96118f3565b73ffffffffffffffffffffffffffffffffffffffff1614611a2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a2690613fb5565b60405180910390fd5b8060126003018190555050565b611a4e611a476122f9565b83836129f0565b5050565b600060056000838152602001908152602001600020549050919050565b60026000541415611ab5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aac90614148565b60405180910390fd5b60026000819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b22906141b4565b60405180910390fd5b601a60009054906101000a900460ff16611b7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7190614220565b60405180910390fd5b600a6002015481611b8b919061426f565b341015611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490614315565b60405180910390fd5b600a6001015481611be2600a60000154611a52565b611bec9190614335565b1115611c2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c24906143d7565b60405180910390fd5b600a6003015481611c4333600a6000015461080f565b611c4d9190614335565b1115611c8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8590614443565b60405180910390fd5b611cae33600a60000154836040518060200160405280600081525061247c565b600160008190555050565b601a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60068060000154908060010154908060020154908060030154905084565b611d056122f9565b73ffffffffffffffffffffffffffffffffffffffff16611d236118f3565b73ffffffffffffffffffffffffffffffffffffffff1614611d79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7090613fb5565b60405180910390fd5b8060066003018190555050565b60026000541415611dcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc390614148565b60405180910390fd5b60026000819055503373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e39906141b4565b60405180910390fd5b601a60009054906101000a900460ff16611e91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8890614220565b60405180910390fd5b60126002015481611ea2919061426f565b341015611ee4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edb90614315565b60405180910390fd5b60126001015481611ef9601260000154611a52565b611f039190614335565b1115611f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3b906143d7565b60405180910390fd5b60126003015481611f5a3360126000015461080f565b611f649190614335565b1115611fa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f9c90614443565b60405180910390fd5b611fc533601260000154836040518060200160405280600081525061247c565b600160008190555050565b6060601c8054611fdf90614774565b80601f016020809104026020016040519081016040528092919081815260200182805461200b90614774565b80156120585780601f1061202d57610100808354040283529160200191612058565b820191906000526020600020905b81548152906001019060200180831161203b57829003601f168201915b5050505050905090565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6120fe6122f9565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16148061214457506121438561213e6122f9565b612062565b5b612183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217a90614818565b60405180910390fd5b6121908585858585612b5d565b5050505050565b61219f6122f9565b73ffffffffffffffffffffffffffffffffffffffff166121bd6118f3565b73ffffffffffffffffffffffffffffffffffffffff1614612213576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220a90613fb5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612283576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227a906148aa565b60405180910390fd5b61228c8161292a565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b80600490805190602001906123179291906133cf565b5050565b60606000821415612363576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612477565b600082905060005b6000821461239557808061237e906146fc565b915050600a8261238e9190614524565b915061236b565b60008167ffffffffffffffff8111156123b1576123b061365a565b5b6040519080825280601f01601f1916602001820160405280156123e35781602001600182028036833780820191505090505b5090505b60008514612470576001826123fc9190614555565b9150600a8561240b91906148ca565b60306124179190614335565b60f81b81838151811061242d5761242c6146cd565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856124699190614524565b94506123e7565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156124ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124e39061496d565b60405180910390fd5b60006124f66122f9565b90506125178160008761250888612de2565b61251188612de2565b87612e5c565b826002600086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125779190614335565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516125f592919061498d565b60405180910390a461260c81600087878787612fd6565b5050505050565b8151835114612657576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161264e90614a28565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156126c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126be90614aba565b60405180910390fd5b60006126d16122f9565b90506126e1818787878787612e5c565b60005b8451811015612895576000858281518110612702576127016146cd565b5b602002602001015190506000858381518110612721576127206146cd565b5b6020026020010151905060006002600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156127c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127ba90614b4c565b60405180910390fd5b8181036002600085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816002600085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461287a9190614335565b925050819055505050508061288e906146fc565b90506126e4565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb878760405161290c929190614b6c565b60405180910390a46129228187878787876131bd565b505050505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5690614c15565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612b509190613624565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc490614aba565b60405180910390fd5b6000612bd76122f9565b9050612bf7818787612be888612de2565b612bf188612de2565b87612e5c565b60006002600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8690614b4c565b60405180910390fd5b8381036002600087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550836002600087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d469190614335565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612dc392919061498d565b60405180910390a4612dd9828888888888612fd6565b50505050505050565b60606000600167ffffffffffffffff811115612e0157612e0061365a565b5b604051908082528060200260200182016040528015612e2f5781602001602082028036833780820191505090505b5090508281600081518110612e4757612e466146cd565b5b60200260200101818152505080915050919050565b612e6a8686868686866133a4565b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612f1c5760005b8351811015612f1a57828181518110612ebe57612ebd6146cd565b5b602002602001015160056000868481518110612edd57612edc6146cd565b5b602002602001015181526020019081526020016000206000828254612f029190614335565b9250508190555080612f13906146fc565b9050612ea2565b505b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612fce5760005b8351811015612fcc57828181518110612f7057612f6f6146cd565b5b602002602001015160056000868481518110612f8f57612f8e6146cd565b5b602002602001015181526020019081526020016000206000828254612fb49190614555565b9250508190555080612fc5906146fc565b9050612f54565b505b505050505050565b612ff58473ffffffffffffffffffffffffffffffffffffffff166133ac565b156131b5578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161303b959493929190614c8a565b602060405180830381600087803b15801561305557600080fd5b505af192505050801561308657506040513d601f19601f820116820180604052508101906130839190614cf9565b60015b61312c57613092614d33565b806308c379a014156130ef57506130a7614d55565b806130b257506130f1565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130e691906138ad565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312390614e5d565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131aa90614eef565b60405180910390fd5b505b505050505050565b6131dc8473ffffffffffffffffffffffffffffffffffffffff166133ac565b1561339c578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401613222959493929190614f0f565b602060405180830381600087803b15801561323c57600080fd5b505af192505050801561326d57506040513d601f19601f8201168201806040525081019061326a9190614cf9565b60015b61331357613279614d33565b806308c379a014156132d6575061328e614d55565b8061329957506132d8565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132cd91906138ad565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161330a90614e5d565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161461339a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161339190614eef565b60405180910390fd5b505b505050505050565b505050505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b8280546133db90614774565b90600052602060002090601f0160209004810192826133fd5760008555613444565b82601f1061341657805160ff1916838001178555613444565b82800160010185558215613444579182015b82811115613443578251825591602001919060010190613428565b5b5090506134519190613455565b5090565b5b8082111561346e576000816000905550600101613456565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006134b182613486565b9050919050565b6134c1816134a6565b81146134cc57600080fd5b50565b6000813590506134de816134b8565b92915050565b6000819050919050565b6134f7816134e4565b811461350257600080fd5b50565b600081359050613514816134ee565b92915050565b600080604083850312156135315761353061347c565b5b600061353f858286016134cf565b925050602061355085828601613505565b9150509250929050565b613563816134e4565b82525050565b600060208201905061357e600083018461355a565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6135b981613584565b81146135c457600080fd5b50565b6000813590506135d6816135b0565b92915050565b6000602082840312156135f2576135f161347c565b5b6000613600848285016135c7565b91505092915050565b60008115159050919050565b61361e81613609565b82525050565b60006020820190506136396000830184613615565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61369282613649565b810181811067ffffffffffffffff821117156136b1576136b061365a565b5b80604052505050565b60006136c4613472565b90506136d08282613689565b919050565b600067ffffffffffffffff8211156136f0576136ef61365a565b5b6136f982613649565b9050602081019050919050565b82818337600083830152505050565b6000613728613723846136d5565b6136ba565b90508281526020810184848401111561374457613743613644565b5b61374f848285613706565b509392505050565b600082601f83011261376c5761376b61363f565b5b813561377c848260208601613715565b91505092915050565b60006020828403121561379b5761379a61347c565b5b600082013567ffffffffffffffff8111156137b9576137b8613481565b5b6137c584828501613757565b91505092915050565b6137d7816134a6565b82525050565b60006020820190506137f260008301846137ce565b92915050565b60006020828403121561380e5761380d61347c565b5b600061381c84828501613505565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561385f578082015181840152602081019050613844565b8381111561386e576000848401525b50505050565b600061387f82613825565b6138898185613830565b9350613899818560208601613841565b6138a281613649565b840191505092915050565b600060208201905081810360008301526138c78184613874565b905092915050565b600067ffffffffffffffff8211156138ea576138e961365a565b5b602082029050602081019050919050565b600080fd5b600061391361390e846138cf565b6136ba565b90508083825260208201905060208402830185811115613936576139356138fb565b5b835b8181101561395f578061394b8882613505565b845260208401935050602081019050613938565b5050509392505050565b600082601f83011261397e5761397d61363f565b5b813561398e848260208601613900565b91505092915050565b600067ffffffffffffffff8211156139b2576139b161365a565b5b6139bb82613649565b9050602081019050919050565b60006139db6139d684613997565b6136ba565b9050828152602081018484840111156139f7576139f6613644565b5b613a02848285613706565b509392505050565b600082601f830112613a1f57613a1e61363f565b5b8135613a2f8482602086016139c8565b91505092915050565b600080600080600060a08688031215613a5457613a5361347c565b5b6000613a62888289016134cf565b9550506020613a73888289016134cf565b945050604086013567ffffffffffffffff811115613a9457613a93613481565b5b613aa088828901613969565b935050606086013567ffffffffffffffff811115613ac157613ac0613481565b5b613acd88828901613969565b925050608086013567ffffffffffffffff811115613aee57613aed613481565b5b613afa88828901613a0a565b9150509295509295909350565b6000608082019050613b1c600083018761355a565b613b29602083018661355a565b613b36604083018561355a565b613b43606083018461355a565b95945050505050565b600067ffffffffffffffff821115613b6757613b6661365a565b5b602082029050602081019050919050565b6000613b8b613b8684613b4c565b6136ba565b90508083825260208201905060208402830185811115613bae57613bad6138fb565b5b835b81811015613bd75780613bc388826134cf565b845260208401935050602081019050613bb0565b5050509392505050565b600082601f830112613bf657613bf561363f565b5b8135613c06848260208601613b78565b91505092915050565b60008060408385031215613c2657613c2561347c565b5b600083013567ffffffffffffffff811115613c4457613c43613481565b5b613c5085828601613be1565b925050602083013567ffffffffffffffff811115613c7157613c70613481565b5b613c7d85828601613969565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613cbc816134e4565b82525050565b6000613cce8383613cb3565b60208301905092915050565b6000602082019050919050565b6000613cf282613c87565b613cfc8185613c92565b9350613d0783613ca3565b8060005b83811015613d38578151613d1f8882613cc2565b9750613d2a83613cda565b925050600181019050613d0b565b5085935050505092915050565b60006020820190508181036000830152613d5f8184613ce7565b905092915050565b613d7081613609565b8114613d7b57600080fd5b50565b600081359050613d8d81613d67565b92915050565b60008060408385031215613daa57613da961347c565b5b6000613db8858286016134cf565b9250506020613dc985828601613d7e565b9150509250929050565b60008060408385031215613dea57613de961347c565b5b6000613df8858286016134cf565b9250506020613e09858286016134cf565b9150509250929050565b600080600080600060a08688031215613e2f57613e2e61347c565b5b6000613e3d888289016134cf565b9550506020613e4e888289016134cf565b9450506040613e5f88828901613505565b9350506060613e7088828901613505565b925050608086013567ffffffffffffffff811115613e9157613e90613481565b5b613e9d88828901613a0a565b9150509295509295909350565b600060208284031215613ec057613ebf61347c565b5b6000613ece848285016134cf565b91505092915050565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b6000613f33602b83613830565b9150613f3e82613ed7565b604082019050919050565b60006020820190508181036000830152613f6281613f26565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613f9f602083613830565b9150613faa82613f69565b602082019050919050565b60006020820190508181036000830152613fce81613f92565b9050919050565b600081905092915050565b7f697066733a2f2f516d5932763161344577597a39476d4a33757042743153343360008201527f754a4e3643364e63705670386670574a6d77354d462f00000000000000000000602082015250565b600061403c603683613fd5565b915061404782613fe0565b603682019050919050565b600061405d82613825565b6140678185613fd5565b9350614077818560208601613841565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b60006140b9600583613fd5565b91506140c482614083565b600582019050919050565b60006140da8261402f565b91506140e68284614052565b91506140f1826140ac565b915081905092915050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b6000614132601f83613830565b915061413d826140fc565b602082019050919050565b6000602082019050818103600083015261416181614125565b9050919050565b7f55736520796f75722077616c6c657420746f206d696e74000000000000000000600082015250565b600061419e601783613830565b91506141a982614168565b602082019050919050565b600060208201905081810360008301526141cd81614191565b9050919050565b7f6d696e74696e67206e6f7420656e61626c656400000000000000000000000000600082015250565b600061420a601383613830565b9150614215826141d4565b602082019050919050565b60006020820190508181036000830152614239816141fd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061427a826134e4565b9150614285836134e4565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156142be576142bd614240565b5b828202905092915050565b7f77726f6e67206d696e742076616c756500000000000000000000000000000000600082015250565b60006142ff601083613830565b915061430a826142c9565b602082019050919050565b6000602082019050818103600083015261432e816142f2565b9050919050565b6000614340826134e4565b915061434b836134e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156143805761437f614240565b5b828201905092915050565b7f65786365656473206d617820737570706c790000000000000000000000000000600082015250565b60006143c1601283613830565b91506143cc8261438b565b602082019050919050565b600060208201905081810360008301526143f0816143b4565b9050919050565b7f6d6178207065722077616c6c6574207265616368656400000000000000000000600082015250565b600061442d601683613830565b9150614438826143f7565b602082019050919050565b6000602082019050818103600083015261445c81614420565b9050919050565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b60006144bf603283613830565b91506144ca82614463565b604082019050919050565b600060208201905081810360008301526144ee816144b2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061452f826134e4565b915061453a836134e4565b92508261454a576145496144f5565b5b828204905092915050565b6000614560826134e4565b915061456b836134e4565b92508282101561457e5761457d614240565b5b828203905092915050565b600081905092915050565b50565b60006145a4600083614589565b91506145af82614594565b600082019050919050565b60006145c582614597565b9150819050919050565b7f7769746864726177206661696c65640000000000000000000000000000000000600082015250565b6000614605600f83613830565b9150614610826145cf565b602082019050919050565b60006020820190508181036000830152614634816145f8565b9050919050565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b6000614697602983613830565b91506146a28261463b565b604082019050919050565b600060208201905081810360008301526146c68161468a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000614707826134e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561473a57614739614240565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061478c57607f821691505b602082108114156147a05761479f614745565b5b50919050565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b6000614802602983613830565b915061480d826147a6565b604082019050919050565b60006020820190508181036000830152614831816147f5565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000614894602683613830565b915061489f82614838565b604082019050919050565b600060208201905081810360008301526148c381614887565b9050919050565b60006148d5826134e4565b91506148e0836134e4565b9250826148f0576148ef6144f5565b5b828206905092915050565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000614957602183613830565b9150614962826148fb565b604082019050919050565b600060208201905081810360008301526149868161494a565b9050919050565b60006040820190506149a2600083018561355a565b6149af602083018461355a565b9392505050565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b6000614a12602883613830565b9150614a1d826149b6565b604082019050919050565b60006020820190508181036000830152614a4181614a05565b9050919050565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000614aa4602583613830565b9150614aaf82614a48565b604082019050919050565b60006020820190508181036000830152614ad381614a97565b9050919050565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b6000614b36602a83613830565b9150614b4182614ada565b604082019050919050565b60006020820190508181036000830152614b6581614b29565b9050919050565b60006040820190508181036000830152614b868185613ce7565b90508181036020830152614b9a8184613ce7565b90509392505050565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b6000614bff602983613830565b9150614c0a82614ba3565b604082019050919050565b60006020820190508181036000830152614c2e81614bf2565b9050919050565b600081519050919050565b600082825260208201905092915050565b6000614c5c82614c35565b614c668185614c40565b9350614c76818560208601613841565b614c7f81613649565b840191505092915050565b600060a082019050614c9f60008301886137ce565b614cac60208301876137ce565b614cb9604083018661355a565b614cc6606083018561355a565b8181036080830152614cd88184614c51565b90509695505050505050565b600081519050614cf3816135b0565b92915050565b600060208284031215614d0f57614d0e61347c565b5b6000614d1d84828501614ce4565b91505092915050565b60008160e01c9050919050565b600060033d1115614d525760046000803e614d4f600051614d26565b90505b90565b600060443d1015614d6557614de8565b614d6d613472565b60043d036004823e80513d602482011167ffffffffffffffff82111715614d95575050614de8565b808201805167ffffffffffffffff811115614db35750505050614de8565b80602083010160043d038501811115614dd0575050505050614de8565b614ddf82602001850186613689565b82955050505050505b90565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b6000614e47603483613830565b9150614e5282614deb565b604082019050919050565b60006020820190508181036000830152614e7681614e3a565b9050919050565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b6000614ed9602883613830565b9150614ee482614e7d565b604082019050919050565b60006020820190508181036000830152614f0881614ecc565b9050919050565b600060a082019050614f2460008301886137ce565b614f3160208301876137ce565b8181036040830152614f438186613ce7565b90508181036060830152614f578185613ce7565b90508181036080830152614f6b8184614c51565b9050969550505050505056fea264697066735822122088157af88d0b368bac54674ca9ebb8c20cae93aaa9056d50b53c4e0e7471739964736f6c63430008090033
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.