Feature Tip: Add private address tag to any address under My Name Tag !
ERC-1155
Overview
Max Total Supply
742 MOON
Holders
467
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:
Moonopoly
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // Developer: @Brougkr pragma solidity ^0.8.4; import "@openzeppelin/contracts/token/ERC1155/ERC1155.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/token/ERC1155/extensions/ERC1155Burnable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; contract Moonopoly is ERC1155, Ownable, Pausable, ERC1155Burnable { using SafeMath for uint256; //Initialization string public constant name = "Moonopoly"; string public constant symbol = "MOON"; string public _BASE_URI = "https://ipfs.io/ipfs/QmVtiErs3McktXqkXC3uQ4XfNz9aCTtEAuQ5fTZXLjhrFE/"; //Token Amounts uint256 public _CARDS_MINTED = 1; uint256 public _MAX_CARDS = 5555; uint256 public _MAX_CARDS_PURCHASE = 5; //Price uint256 public _CARD_PRICE = 0.03 ether; //Sale State bool public _SALE_IS_ACTIVE = false; bool public _ALLOW_MULTIPLE_PURCHASES = false; //Mint Mapping mapping (address => bool) private minted; constructor() ERC1155("https://ipfs.io/ipfs/QmVtiErs3McktXqkXC3uQ4XfNz9aCTtEAuQ5fTZXLjhrFE/{id}.json") { _mint(msg.sender, 0, 555, ""); //Founding 555 Airdrop } //URI for decoding storage of tokenIDs function uri(uint256 tokenId) override public view returns (string memory) { return(string(abi.encodePacked(_BASE_URI, Strings.toString(tokenId), ".json"))); } //Mints Moonopoly Cards function MoonopolyMint(uint numberOfTokens) public payable { require(_SALE_IS_ACTIVE, "Sale must be active to mint Cards"); require(numberOfTokens <= _MAX_CARDS_PURCHASE, "Can only mint 5 Cards at a time"); require(_CARDS_MINTED.add(numberOfTokens) <= _MAX_CARDS, "Purchase would exceed max supply of Cards"); require(_CARD_PRICE.mul(numberOfTokens) <= msg.value, "Ether value sent is not correct. 0.03 ETH Per Card | 30000000000000000 WEI"); if(!_ALLOW_MULTIPLE_PURCHASES) { require(!minted[msg.sender], "Address Has Already Minted"); } //Mints Cards for(uint i = 0; i < numberOfTokens; i++) { if (_CARDS_MINTED <= _MAX_CARDS) { _mint(msg.sender, _CARDS_MINTED, 1, ""); _CARDS_MINTED += 1; } } minted[msg.sender] = true; } //Conforms to ERC-1155 Standard function _beforeTokenTransfer(address operator, address from, address to, uint256[] memory ids, uint256[] memory amounts, bytes memory data) internal whenNotPaused override { super._beforeTokenTransfer(operator, from, to, ids, amounts, data); } //Batch Transfers Tokens function __batchTransfer(address[] memory recipients, uint256[] memory tokenIDs, uint256[] memory amounts) public onlyOwner { for(uint i=0; i < recipients.length; i++) { _safeTransferFrom(msg.sender, recipients[i], tokenIDs[i], amounts[i], ""); } } //Sets Base URI For .json hosting function __setBaseURI(string memory BASE_URI) public onlyOwner { _BASE_URI = BASE_URI; } //Sets Max Cards for future Card Expansion Packs function __setMaxCards(uint256 MAX_CARDS) public onlyOwner { _MAX_CARDS = MAX_CARDS; } //Sets Max Cards Purchaseable by Wallet function __setMaxCardsPurchase(uint256 MAX_CARDS_PURCHASE) public onlyOwner { _MAX_CARDS_PURCHASE = MAX_CARDS_PURCHASE; } //Sets Future Card Price function __setCardPrice(uint256 CARD_PRICE) public onlyOwner { _CARD_PRICE = CARD_PRICE; } //Flips Allowing Multiple Purchases for future Card Expansion Packs function __flip_allowMultiplePurchases() public onlyOwner { _ALLOW_MULTIPLE_PURCHASES = !_ALLOW_MULTIPLE_PURCHASES; } //Flips Sale State function __flip_saleState() public onlyOwner { _SALE_IS_ACTIVE = !_SALE_IS_ACTIVE; } //Withdraws Ether from Contract function __withdraw() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } //Pauses Contract function __pause() public onlyOwner { _pause(); } //Unpauses Contract function __unpause() public onlyOwner { _unpause(); } }
// SPDX-License-Identifier: MIT 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 { require(_msgSender() != operator, "ERC1155: setting approval status for self"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_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 `account`. * * Emits a {TransferSingle} event. * * Requirements: * * - `account` cannot be the zero address. * - If `account` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the * acceptance magic value. */ function _mint( address account, uint256 id, uint256 amount, bytes memory data ) internal virtual { require(account != address(0), "ERC1155: mint to the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, address(0), account, _asSingletonArray(id), _asSingletonArray(amount), data); _balances[id][account] += amount; emit TransferSingle(operator, address(0), account, id, amount); _doSafeTransferAcceptanceCheck(operator, address(0), account, 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 `account` * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens of token type `id`. */ function _burn( address account, uint256 id, uint256 amount ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), _asSingletonArray(id), _asSingletonArray(amount), ""); uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } emit TransferSingle(operator, account, 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 account, uint256[] memory ids, uint256[] memory amounts ) internal virtual { require(account != address(0), "ERC1155: burn from the zero address"); require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch"); address operator = _msgSender(); _beforeTokenTransfer(operator, account, address(0), ids, amounts, ""); for (uint256 i = 0; i < ids.length; i++) { uint256 id = ids[i]; uint256 amount = amounts[i]; uint256 accountBalance = _balances[id][account]; require(accountBalance >= amount, "ERC1155: burn amount exceeds balance"); unchecked { _balances[id][account] = accountBalance - amount; } } emit TransferBatch(operator, account, address(0), ids, amounts); } /** * @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 pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC1155.sol"; /** * @dev Extension of {ERC1155} that allows token holders to destroy both their * own tokens and those that they have been approved to use. * * _Available since v3.1._ */ abstract contract ERC1155Burnable is ERC1155 { function burn( address account, uint256 id, uint256 value ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burn(account, id, value); } function burnBatch( address account, uint256[] memory ids, uint256[] memory values ) public virtual { require( account == _msgSender() || isApprovedForAll(account, _msgSender()), "ERC1155: caller is not owner nor approved" ); _burnBatch(account, ids, values); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev _Available since v3.1._ */ interface IERC1155Receiver is IERC165 { /** @dev Handles the receipt of a single ERC1155 token type. This function is called at the end of a `safeTransferFrom` after the balance has been updated. To accept the transfer, this must return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` (i.e. 0xf23a6e61, or its own function selector). @param operator The address which initiated the transfer (i.e. msg.sender) @param from The address which previously owned the token @param id The ID of the token being transferred @param value The amount of tokens being transferred @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed */ function onERC1155Received( address operator, address from, uint256 id, uint256 value, bytes calldata data ) external returns (bytes4); /** @dev Handles the receipt of a multiple ERC1155 token types. This function is called at the end of a `safeBatchTransferFrom` after the balances have been updated. To accept the transfer(s), this must return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` (i.e. 0xbc197c81, or its own function selector). @param operator The address which initiated the batch transfer (i.e. msg.sender) @param from The address which previously owned the token @param ids An array containing ids of each token being transferred (order and length must match values array) @param values An array containing amounts of each token being transferred (order and length must match ids array) @param data Additional data with no specified format @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed */ function onERC1155BatchReceived( address operator, address from, uint256[] calldata ids, uint256[] calldata values, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "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":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"MoonopolyMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"_ALLOW_MULTIPLE_PURCHASES","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_BASE_URI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_CARDS_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_CARD_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_MAX_CARDS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_MAX_CARDS_PURCHASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_SALE_IS_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"tokenIDs","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"__batchTransfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"__flip_allowMultiplePurchases","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"__flip_saleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"__pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"BASE_URI","type":"string"}],"name":"__setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"CARD_PRICE","type":"uint256"}],"name":"__setCardPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MAX_CARDS","type":"uint256"}],"name":"__setMaxCards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"MAX_CARDS_PURCHASE","type":"uint256"}],"name":"__setMaxCardsPurchase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"__unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"__withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"view","type":"function"}]
Contract Creation Code
608060405260405180608001604052806044815260200162005f5160449139600490805190602001906200003592919062000752565b5060016005556115b36006556005600755666a94d74f4300006008556000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff0219169083151502179055503480156200009457600080fd5b506040518060800160405280604d815260200162005f04604d9139620000c0816200012860201b60201c565b50620000e1620000d56200014460201b60201c565b6200014c60201b60201c565b6000600360146101000a81548160ff0219169083151502179055506200012233600061022b604051806020016040528060008152506200021260201b60201c565b62000f0f565b80600290805190602001906200014092919062000752565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141562000285576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027c9062000a73565b60405180910390fd5b6000620002976200014460201b60201c565b9050620002d081600087620002b288620003d760201b60201c565b620002c388620003d760201b60201c565b87620004a060201b60201c565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000331919062000b04565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051620003b192919062000a95565b60405180910390a4620003d0816000878787876200051660201b60201c565b5050505050565b60606000600167ffffffffffffffff8111156200041d577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156200044c5781602001602082028036833780820191505090505b50905082816000815181106200048b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b620004b06200072060201b60201c565b15620004f3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004ea9062000a51565b60405180910390fd5b6200050e8686868686866200073760201b62001bfa1760201c565b505050505050565b620005428473ffffffffffffffffffffffffffffffffffffffff166200073f60201b62001c021760201c565b1562000718578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016200058b95949392919062000985565b602060405180830381600087803b158015620005a657600080fd5b505af1925050508015620005da57506040513d601f19601f82011682018060405250810190620005d7919062000819565b60015b6200068c57620005e962000cfa565b806308c379a014156200064d57506200060162000e53565b806200060e57506200064f565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006449190620009e9565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006839062000a0d565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161462000716576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200070d9062000a2f565b60405180910390fd5b505b505050505050565b6000600360149054906101000a900460ff16905090565b505050505050565b600080823b905060008111915050919050565b828054620007609062000c01565b90600052602060002090601f016020900481019282620007845760008555620007d0565b82601f106200079f57805160ff1916838001178555620007d0565b82800160010185558215620007d0579182015b82811115620007cf578251825591602001919060010190620007b2565b5b509050620007df9190620007e3565b5090565b5b80821115620007fe576000816000905550600101620007e4565b5090565b600081519050620008138162000ef5565b92915050565b6000602082840312156200082c57600080fd5b60006200083c8482850162000802565b91505092915050565b620008508162000b61565b82525050565b6000620008638262000acc565b6200086f818562000ae2565b93506200088181856020860162000bcb565b6200088c8162000d1f565b840191505092915050565b6000620008a48262000ad7565b620008b0818562000af3565b9350620008c281856020860162000bcb565b620008cd8162000d1f565b840191505092915050565b6000620008e760348362000af3565b9150620008f48262000d3d565b604082019050919050565b60006200090e60288362000af3565b91506200091b8262000d8c565b604082019050919050565b60006200093560108362000af3565b9150620009428262000ddb565b602082019050919050565b60006200095c60218362000af3565b9150620009698262000e04565b604082019050919050565b6200097f8162000bc1565b82525050565b600060a0820190506200099c600083018862000845565b620009ab602083018762000845565b620009ba604083018662000974565b620009c9606083018562000974565b8181036080830152620009dd818462000856565b90509695505050505050565b6000602082019050818103600083015262000a05818462000897565b905092915050565b6000602082019050818103600083015262000a2881620008d8565b9050919050565b6000602082019050818103600083015262000a4a81620008ff565b9050919050565b6000602082019050818103600083015262000a6c8162000926565b9050919050565b6000602082019050818103600083015262000a8e816200094d565b9050919050565b600060408201905062000aac600083018562000974565b62000abb602083018462000974565b9392505050565b6000604051905090565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062000b118262000bc1565b915062000b1e8362000bc1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000b565762000b5562000c6d565b5b828201905092915050565b600062000b6e8262000ba1565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000beb57808201518184015260208101905062000bce565b8381111562000bfb576000848401525b50505050565b6000600282049050600182168062000c1a57607f821691505b6020821081141562000c315762000c3062000c9c565b5b50919050565b62000c428262000d1f565b810181811067ffffffffffffffff8211171562000c645762000c6362000ccb565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d111562000d1c5760046000803e62000d1960005162000d30565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d101562000e655762000ef2565b62000e6f62000ac2565b60043d036004823e80513d602482011167ffffffffffffffff8211171562000e9957505062000ef2565b808201805167ffffffffffffffff81111562000eb9575050505062000ef2565b80602083010160043d03850181111562000ed857505050505062000ef2565b62000ee98260200185018662000c37565b82955050505050505b90565b62000f008162000b75565b811462000f0c57600080fd5b50565b614fe58062000f1f6000396000f3fe6080604052600436106101f85760003560e01c8063824c6c4a1161010d578063a372976a116100a0578063f242432a1161006f578063f242432a1461069f578063f2fde38b146106c8578063f5298aca146106f1578063f7647e5b1461071a578063fd105c3a14610745576101f8565b8063a372976a146105f2578063b80475321461061b578063e985e9c514610637578063f23b9c3214610674576101f8565b8063900d4c17116100dc578063900d4c171461055e57806395d89b41146105875780639c51b6f2146105b2578063a22cb465146105c9576101f8565b8063824c6c4a146104dc57806388586b5f146104f35780638c6d6d7e1461051c5780638da5cb5b14610533576101f8565b80632eb2c2d6116101905780635c975abb1161015f5780635c975abb146104315780636b20c4541461045c5780637097f95314610485578063715018a6146104ae57806373ff60b4146104c5576101f8565b80632eb2c2d6146103775780633620500b146103a05780634a3b889a146103cb5780634e1273f4146103f4576101f8565b8063085ba656116101cc578063085ba656146102cd5780630e89341c146102f85780631393094f146103355780631f40ce1c14610360576101f8565b8062fdd58e146101fd57806301ffc9a71461023a57806305d1941a1461027757806306fdde03146102a2575b600080fd5b34801561020957600080fd5b50610224600480360381019061021f9190613765565b610770565b604051610231919061430a565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906138f3565b610839565b60405161026e919061400d565b60405180910390f35b34801561028357600080fd5b5061028c61091b565b6040516102999190614028565b60405180910390f35b3480156102ae57600080fd5b506102b76109a9565b6040516102c49190614028565b60405180910390f35b3480156102d957600080fd5b506102e26109e2565b6040516102ef919061430a565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190613986565b6109e8565b60405161032c9190614028565b60405180910390f35b34801561034157600080fd5b5061034a610a1c565b604051610357919061400d565b60405180910390f35b34801561036c57600080fd5b50610375610a2f565b005b34801561038357600080fd5b5061039e6004803603810190610399919061355c565b610af4565b005b3480156103ac57600080fd5b506103b5610b95565b6040516103c2919061400d565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613945565b610ba8565b005b34801561040057600080fd5b5061041b600480360381019061041691906137f0565b610c3e565b6040516104289190613fb4565b60405180910390f35b34801561043d57600080fd5b50610446610def565b604051610453919061400d565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e91906136aa565b610e06565b005b34801561049157600080fd5b506104ac60048036038101906104a7919061385c565b610ea3565b005b3480156104ba57600080fd5b506104c3611020565b005b3480156104d157600080fd5b506104da6110a8565b005b3480156104e857600080fd5b506104f1611150565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190613986565b6111d6565b005b34801561052857600080fd5b5061053161125c565b005b34801561053f57600080fd5b506105486112e2565b6040516105559190613ed7565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190613986565b61130c565b005b34801561059357600080fd5b5061059c611392565b6040516105a99190614028565b60405180910390f35b3480156105be57600080fd5b506105c76113cb565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190613729565b611473565b005b3480156105fe57600080fd5b5061061960048036038101906106149190613986565b6115f4565b005b61063560048036038101906106309190613986565b61167a565b005b34801561064357600080fd5b5061065e60048036038101906106599190613520565b61191e565b60405161066b919061400d565b60405180910390f35b34801561068057600080fd5b506106896119b2565b604051610696919061430a565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061361b565b6119b8565b005b3480156106d457600080fd5b506106ef60048036038101906106ea91906134f7565b611a59565b005b3480156106fd57600080fd5b50610718600480360381019061071391906137a1565b611b51565b005b34801561072657600080fd5b5061072f611bee565b60405161073c919061430a565b60405180910390f35b34801561075157600080fd5b5061075a611bf4565b604051610767919061430a565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d8906140ea565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610914575061091382611c15565b5b9050919050565b6004805461092890614689565b80601f016020809104026020016040519081016040528092919081815260200182805461095490614689565b80156109a15780601f10610976576101008083540402835291602001916109a1565b820191906000526020600020905b81548152906001019060200180831161098457829003601f168201915b505050505081565b6040518060400160405280600981526020017f4d6f6f6e6f706f6c79000000000000000000000000000000000000000000000081525081565b60065481565b606060046109f583611c7f565b604051602001610a06929190613ea8565b6040516020818303038152906040529050919050565b600960019054906101000a900460ff1681565b610a37611e2c565b73ffffffffffffffffffffffffffffffffffffffff16610a556112e2565b73ffffffffffffffffffffffffffffffffffffffff1614610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa29061426a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610af1573d6000803e3d6000fd5b50565b610afc611e2c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b425750610b4185610b3c611e2c565b61191e565b5b610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b78906141ea565b60405180910390fd5b610b8e8585858585611e34565b5050505050565b600960009054906101000a900460ff1681565b610bb0611e2c565b73ffffffffffffffffffffffffffffffffffffffff16610bce6112e2565b73ffffffffffffffffffffffffffffffffffffffff1614610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b9061426a565b60405180910390fd5b8060049080519060200190610c3a9291906131ef565b5050565b60608151835114610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b906142aa565b60405180910390fd5b6000835167ffffffffffffffff811115610cc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610cf55781602001602082028036833780820191505090505b50905060005b8451811015610de457610d8e858281518110610d40577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610d81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610770565b828281518110610dc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610ddd906146ec565b9050610cfb565b508091505092915050565b6000600360149054906101000a900460ff16905090565b610e0e611e2c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610e545750610e5383610e4e611e2c565b61191e565b5b610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a9061416a565b60405180910390fd5b610e9e838383612194565b505050565b610eab611e2c565b73ffffffffffffffffffffffffffffffffffffffff16610ec96112e2565b73ffffffffffffffffffffffffffffffffffffffff1614610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f169061426a565b60405180910390fd5b60005b835181101561101a5761100733858381518110610f68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858481518110610fa9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858581518110610fea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160405180602001604052806000815250612491565b8080611012906146ec565b915050610f22565b50505050565b611028611e2c565b73ffffffffffffffffffffffffffffffffffffffff166110466112e2565b73ffffffffffffffffffffffffffffffffffffffff161461109c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110939061426a565b60405180910390fd5b6110a66000612713565b565b6110b0611e2c565b73ffffffffffffffffffffffffffffffffffffffff166110ce6112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b9061426a565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b611158611e2c565b73ffffffffffffffffffffffffffffffffffffffff166111766112e2565b73ffffffffffffffffffffffffffffffffffffffff16146111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c39061426a565b60405180910390fd5b6111d46127d9565b565b6111de611e2c565b73ffffffffffffffffffffffffffffffffffffffff166111fc6112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112499061426a565b60405180910390fd5b8060078190555050565b611264611e2c565b73ffffffffffffffffffffffffffffffffffffffff166112826112e2565b73ffffffffffffffffffffffffffffffffffffffff16146112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf9061426a565b60405180910390fd5b6112e061287b565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611314611e2c565b73ffffffffffffffffffffffffffffffffffffffff166113326112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f9061426a565b60405180910390fd5b8060068190555050565b6040518060400160405280600481526020017f4d4f4f4e0000000000000000000000000000000000000000000000000000000081525081565b6113d3611e2c565b73ffffffffffffffffffffffffffffffffffffffff166113f16112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e9061426a565b60405180910390fd5b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b8173ffffffffffffffffffffffffffffffffffffffff16611492611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e09061428a565b60405180910390fd5b80600160006114f6611e2c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a3611e2c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e8919061400d565b60405180910390a35050565b6115fc611e2c565b73ffffffffffffffffffffffffffffffffffffffff1661161a6112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611670576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116679061426a565b60405180910390fd5b8060088190555050565b600960009054906101000a900460ff166116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c09061408a565b60405180910390fd5b60075481111561170e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117059061424a565b60405180910390fd5b6006546117268260055461291e90919063ffffffff16565b1115611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e906140ca565b60405180910390fd5b3461177d8260085461293490919063ffffffff16565b11156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b59061410a565b60405180910390fd5b600960019054906101000a900460ff1661186057600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561185f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118569061418a565b60405180910390fd5b5b60005b818110156118c257600654600554116118af576118943360055460016040518060200160405280600081525061294a565b6001600560008282546118a791906144be565b925050819055505b80806118ba906146ec565b915050611863565b506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60055481565b6119c0611e2c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611a065750611a0585611a00611e2c565b61191e565b5b611a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3c9061416a565b60405180910390fd5b611a528585858585612491565b5050505050565b611a61611e2c565b73ffffffffffffffffffffffffffffffffffffffff16611a7f6112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc9061426a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3c9061412a565b60405180910390fd5b611b4e81612713565b50565b611b59611e2c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611b9f5750611b9e83611b99611e2c565b61191e565b5b611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd59061416a565b60405180910390fd5b611be9838383612ae0565b505050565b60085481565b60075481565b505050505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60606000821415611cc7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e27565b600082905060005b60008214611cf9578080611ce2906146ec565b915050600a82611cf29190614514565b9150611ccf565b60008167ffffffffffffffff811115611d3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d6d5781602001600182028036833780820191505090505b5090505b60008514611e2057600182611d86919061459f565b9150600a85611d959190614735565b6030611da191906144be565b60f81b818381518110611ddd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e199190614514565b9450611d71565b8093505050505b919050565b600033905090565b8151835114611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f906142ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf906141ca565b60405180910390fd5b6000611ef2611e2c565b9050611f02818787878787612cfd565b60005b84518110156120ff576000858281518110611f49577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611f8e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561202f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120269061422a565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e491906144be565b92505081905550505050806120f8906146ec565b9050611f05565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612176929190613fd6565b60405180910390a461218c818787878787612d5b565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb9061420a565b60405180910390fd5b8051825114612248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223f906142ca565b60405180910390fd5b6000612252611e2c565b905061227281856000868660405180602001604052806000815250612cfd565b60005b835181101561240b5760008482815181106122b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106122fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561239f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123969061414a565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080612403906146ec565b915050612275565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612483929190613fd6565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f8906141ca565b60405180910390fd5b600061250b611e2c565b905061252b81878761251c88612f42565b61252588612f42565b87612cfd565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156125c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b99061422a565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461267791906144be565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516126f4929190614325565b60405180910390a461270a828888888888613008565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127e1610def565b612820576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612817906140aa565b60405180910390fd5b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612864611e2c565b6040516128719190613ed7565b60405180910390a1565b612883610def565b156128c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba906141aa565b60405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612907611e2c565b6040516129149190613ed7565b60405180910390a1565b6000818361292c91906144be565b905092915050565b600081836129429190614545565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b1906142ea565b60405180910390fd5b60006129c4611e2c565b90506129e5816000876129d688612f42565b6129df88612f42565b87612cfd565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a4491906144be565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612ac2929190614325565b60405180910390a4612ad981600087878787613008565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b479061420a565b60405180910390fd5b6000612b5a611e2c565b9050612b8a81856000612b6c87612f42565b612b7587612f42565b60405180602001604052806000815250612cfd565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c189061414a565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612cee929190614325565b60405180910390a45050505050565b612d05610def565b15612d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3c906141aa565b60405180910390fd5b612d53868686868686611bfa565b505050505050565b612d7a8473ffffffffffffffffffffffffffffffffffffffff16611c02565b15612f3a578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612dc0959493929190613ef2565b602060405180830381600087803b158015612dda57600080fd5b505af1925050508015612e0b57506040513d601f19601f82011682018060405250810190612e08919061391c565b60015b612eb157612e17614822565b806308c379a01415612e745750612e2c614ebd565b80612e375750612e76565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6b9190614028565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea89061404a565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2f9061406a565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612f87577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612fb55781602001602082028036833780820191505090505b5090508281600081518110612ff3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6130278473ffffffffffffffffffffffffffffffffffffffff16611c02565b156131e7578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161306d959493929190613f5a565b602060405180830381600087803b15801561308757600080fd5b505af19250505080156130b857506040513d601f19601f820116820180604052508101906130b5919061391c565b60015b61315e576130c4614822565b806308c379a0141561312157506130d9614ebd565b806130e45750613123565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131189190614028565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131559061404a565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131dc9061406a565b60405180910390fd5b505b505050505050565b8280546131fb90614689565b90600052602060002090601f01602090048101928261321d5760008555613264565b82601f1061323657805160ff1916838001178555613264565b82800160010185558215613264579182015b82811115613263578251825591602001919060010190613248565b5b5090506132719190613275565b5090565b5b8082111561328e576000816000905550600101613276565b5090565b60006132a56132a084614373565b61434e565b905080838252602082019050828560208602820111156132c457600080fd5b60005b858110156132f457816132da88826133e6565b8452602084019350602083019250506001810190506132c7565b5050509392505050565b600061331161330c8461439f565b61434e565b9050808382526020820190508285602086028201111561333057600080fd5b60005b85811015613360578161334688826134e2565b845260208401935060208301925050600181019050613333565b5050509392505050565b600061337d613378846143cb565b61434e565b90508281526020810184848401111561339557600080fd5b6133a0848285614647565b509392505050565b60006133bb6133b6846143fc565b61434e565b9050828152602081018484840111156133d357600080fd5b6133de848285614647565b509392505050565b6000813590506133f581614f53565b92915050565b600082601f83011261340c57600080fd5b813561341c848260208601613292565b91505092915050565b600082601f83011261343657600080fd5b81356134468482602086016132fe565b91505092915050565b60008135905061345e81614f6a565b92915050565b60008135905061347381614f81565b92915050565b60008151905061348881614f81565b92915050565b600082601f83011261349f57600080fd5b81356134af84826020860161336a565b91505092915050565b600082601f8301126134c957600080fd5b81356134d98482602086016133a8565b91505092915050565b6000813590506134f181614f98565b92915050565b60006020828403121561350957600080fd5b6000613517848285016133e6565b91505092915050565b6000806040838503121561353357600080fd5b6000613541858286016133e6565b9250506020613552858286016133e6565b9150509250929050565b600080600080600060a0868803121561357457600080fd5b6000613582888289016133e6565b9550506020613593888289016133e6565b945050604086013567ffffffffffffffff8111156135b057600080fd5b6135bc88828901613425565b935050606086013567ffffffffffffffff8111156135d957600080fd5b6135e588828901613425565b925050608086013567ffffffffffffffff81111561360257600080fd5b61360e8882890161348e565b9150509295509295909350565b600080600080600060a0868803121561363357600080fd5b6000613641888289016133e6565b9550506020613652888289016133e6565b9450506040613663888289016134e2565b9350506060613674888289016134e2565b925050608086013567ffffffffffffffff81111561369157600080fd5b61369d8882890161348e565b9150509295509295909350565b6000806000606084860312156136bf57600080fd5b60006136cd868287016133e6565b935050602084013567ffffffffffffffff8111156136ea57600080fd5b6136f686828701613425565b925050604084013567ffffffffffffffff81111561371357600080fd5b61371f86828701613425565b9150509250925092565b6000806040838503121561373c57600080fd5b600061374a858286016133e6565b925050602061375b8582860161344f565b9150509250929050565b6000806040838503121561377857600080fd5b6000613786858286016133e6565b9250506020613797858286016134e2565b9150509250929050565b6000806000606084860312156137b657600080fd5b60006137c4868287016133e6565b93505060206137d5868287016134e2565b92505060406137e6868287016134e2565b9150509250925092565b6000806040838503121561380357600080fd5b600083013567ffffffffffffffff81111561381d57600080fd5b613829858286016133fb565b925050602083013567ffffffffffffffff81111561384657600080fd5b61385285828601613425565b9150509250929050565b60008060006060848603121561387157600080fd5b600084013567ffffffffffffffff81111561388b57600080fd5b613897868287016133fb565b935050602084013567ffffffffffffffff8111156138b457600080fd5b6138c086828701613425565b925050604084013567ffffffffffffffff8111156138dd57600080fd5b6138e986828701613425565b9150509250925092565b60006020828403121561390557600080fd5b600061391384828501613464565b91505092915050565b60006020828403121561392e57600080fd5b600061393c84828501613479565b91505092915050565b60006020828403121561395757600080fd5b600082013567ffffffffffffffff81111561397157600080fd5b61397d848285016134b8565b91505092915050565b60006020828403121561399857600080fd5b60006139a6848285016134e2565b91505092915050565b60006139bb8383613e8a565b60208301905092915050565b6139d0816145d3565b82525050565b60006139e182614452565b6139eb8185614480565b93506139f68361442d565b8060005b83811015613a27578151613a0e88826139af565b9750613a1983614473565b9250506001810190506139fa565b5085935050505092915050565b613a3d816145e5565b82525050565b6000613a4e8261445d565b613a588185614491565b9350613a68818560208601614656565b613a7181614844565b840191505092915050565b6000613a8782614468565b613a9181856144a2565b9350613aa1818560208601614656565b613aaa81614844565b840191505092915050565b6000613ac082614468565b613aca81856144b3565b9350613ada818560208601614656565b80840191505092915050565b60008154613af381614689565b613afd81866144b3565b94506001821660008114613b185760018114613b2957613b5c565b60ff19831686528186019350613b5c565b613b328561443d565b60005b83811015613b5457815481890152600182019150602081019050613b35565b838801955050505b50505092915050565b6000613b726034836144a2565b9150613b7d82614862565b604082019050919050565b6000613b956028836144a2565b9150613ba0826148b1565b604082019050919050565b6000613bb86021836144a2565b9150613bc382614900565b604082019050919050565b6000613bdb6014836144a2565b9150613be68261494f565b602082019050919050565b6000613bfe6029836144a2565b9150613c0982614978565b604082019050919050565b6000613c21602b836144a2565b9150613c2c826149c7565b604082019050919050565b6000613c44604a836144a2565b9150613c4f82614a16565b606082019050919050565b6000613c676026836144a2565b9150613c7282614a8b565b604082019050919050565b6000613c8a6024836144a2565b9150613c9582614ada565b604082019050919050565b6000613cad6029836144a2565b9150613cb882614b29565b604082019050919050565b6000613cd0601a836144a2565b9150613cdb82614b78565b602082019050919050565b6000613cf36010836144a2565b9150613cfe82614ba1565b602082019050919050565b6000613d166025836144a2565b9150613d2182614bca565b604082019050919050565b6000613d396032836144a2565b9150613d4482614c19565b604082019050919050565b6000613d5c6023836144a2565b9150613d6782614c68565b604082019050919050565b6000613d7f602a836144a2565b9150613d8a82614cb7565b604082019050919050565b6000613da26005836144b3565b9150613dad82614d06565b600582019050919050565b6000613dc5601f836144a2565b9150613dd082614d2f565b602082019050919050565b6000613de86020836144a2565b9150613df382614d58565b602082019050919050565b6000613e0b6029836144a2565b9150613e1682614d81565b604082019050919050565b6000613e2e6029836144a2565b9150613e3982614dd0565b604082019050919050565b6000613e516028836144a2565b9150613e5c82614e1f565b604082019050919050565b6000613e746021836144a2565b9150613e7f82614e6e565b604082019050919050565b613e938161463d565b82525050565b613ea28161463d565b82525050565b6000613eb48285613ae6565b9150613ec08284613ab5565b9150613ecb82613d95565b91508190509392505050565b6000602082019050613eec60008301846139c7565b92915050565b600060a082019050613f0760008301886139c7565b613f1460208301876139c7565b8181036040830152613f2681866139d6565b90508181036060830152613f3a81856139d6565b90508181036080830152613f4e8184613a43565b90509695505050505050565b600060a082019050613f6f60008301886139c7565b613f7c60208301876139c7565b613f896040830186613e99565b613f966060830185613e99565b8181036080830152613fa88184613a43565b90509695505050505050565b60006020820190508181036000830152613fce81846139d6565b905092915050565b60006040820190508181036000830152613ff081856139d6565b9050818103602083015261400481846139d6565b90509392505050565b60006020820190506140226000830184613a34565b92915050565b600060208201905081810360008301526140428184613a7c565b905092915050565b6000602082019050818103600083015261406381613b65565b9050919050565b6000602082019050818103600083015261408381613b88565b9050919050565b600060208201905081810360008301526140a381613bab565b9050919050565b600060208201905081810360008301526140c381613bce565b9050919050565b600060208201905081810360008301526140e381613bf1565b9050919050565b6000602082019050818103600083015261410381613c14565b9050919050565b6000602082019050818103600083015261412381613c37565b9050919050565b6000602082019050818103600083015261414381613c5a565b9050919050565b6000602082019050818103600083015261416381613c7d565b9050919050565b6000602082019050818103600083015261418381613ca0565b9050919050565b600060208201905081810360008301526141a381613cc3565b9050919050565b600060208201905081810360008301526141c381613ce6565b9050919050565b600060208201905081810360008301526141e381613d09565b9050919050565b6000602082019050818103600083015261420381613d2c565b9050919050565b6000602082019050818103600083015261422381613d4f565b9050919050565b6000602082019050818103600083015261424381613d72565b9050919050565b6000602082019050818103600083015261426381613db8565b9050919050565b6000602082019050818103600083015261428381613ddb565b9050919050565b600060208201905081810360008301526142a381613dfe565b9050919050565b600060208201905081810360008301526142c381613e21565b9050919050565b600060208201905081810360008301526142e381613e44565b9050919050565b6000602082019050818103600083015261430381613e67565b9050919050565b600060208201905061431f6000830184613e99565b92915050565b600060408201905061433a6000830185613e99565b6143476020830184613e99565b9392505050565b6000614358614369565b905061436482826146bb565b919050565b6000604051905090565b600067ffffffffffffffff82111561438e5761438d6147f3565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143ba576143b96147f3565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143e6576143e56147f3565b5b6143ef82614844565b9050602081019050919050565b600067ffffffffffffffff821115614417576144166147f3565b5b61442082614844565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006144c98261463d565b91506144d48361463d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561450957614508614766565b5b828201905092915050565b600061451f8261463d565b915061452a8361463d565b92508261453a57614539614795565b5b828204905092915050565b60006145508261463d565b915061455b8361463d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561459457614593614766565b5b828202905092915050565b60006145aa8261463d565b91506145b58361463d565b9250828210156145c8576145c7614766565b5b828203905092915050565b60006145de8261461d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614674578082015181840152602081019050614659565b83811115614683576000848401525b50505050565b600060028204905060018216806146a157607f821691505b602082108114156146b5576146b46147c4565b5b50919050565b6146c482614844565b810181811067ffffffffffffffff821117156146e3576146e26147f3565b5b80604052505050565b60006146f78261463d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561472a57614729614766565b5b600182019050919050565b60006147408261463d565b915061474b8361463d565b92508261475b5761475a614795565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156148415760046000803e61483e600051614855565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74204361726460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662043617264730000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f72726563742e60008201527f20302e303320455448205065722043617264207c20333030303030303030303060208201527f3030303030302057454900000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f416464726573732048617320416c7265616479204d696e746564000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f43616e206f6e6c79206d696e74203520436172647320617420612074696d6500600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614ecd57614f50565b614ed5614369565b60043d036004823e80513d602482011167ffffffffffffffff82111715614efd575050614f50565b808201805167ffffffffffffffff811115614f1b5750505050614f50565b80602083010160043d038501811115614f38575050505050614f50565b614f47826020018501866146bb565b82955050505050505b90565b614f5c816145d3565b8114614f6757600080fd5b50565b614f73816145e5565b8114614f7e57600080fd5b50565b614f8a816145f1565b8114614f9557600080fd5b50565b614fa18161463d565b8114614fac57600080fd5b5056fea2646970667358221220eb32635c888fe368906a62f3439585d200cf8fd722f44baec64f656264fd67ea64736f6c6343000804003368747470733a2f2f697066732e696f2f697066732f516d567469457273334d636b7458716b58433375513458664e7a3961435474454175513566545a584c6a687246452f7b69647d2e6a736f6e68747470733a2f2f697066732e696f2f697066732f516d567469457273334d636b7458716b58433375513458664e7a3961435474454175513566545a584c6a687246452f
Deployed Bytecode
0x6080604052600436106101f85760003560e01c8063824c6c4a1161010d578063a372976a116100a0578063f242432a1161006f578063f242432a1461069f578063f2fde38b146106c8578063f5298aca146106f1578063f7647e5b1461071a578063fd105c3a14610745576101f8565b8063a372976a146105f2578063b80475321461061b578063e985e9c514610637578063f23b9c3214610674576101f8565b8063900d4c17116100dc578063900d4c171461055e57806395d89b41146105875780639c51b6f2146105b2578063a22cb465146105c9576101f8565b8063824c6c4a146104dc57806388586b5f146104f35780638c6d6d7e1461051c5780638da5cb5b14610533576101f8565b80632eb2c2d6116101905780635c975abb1161015f5780635c975abb146104315780636b20c4541461045c5780637097f95314610485578063715018a6146104ae57806373ff60b4146104c5576101f8565b80632eb2c2d6146103775780633620500b146103a05780634a3b889a146103cb5780634e1273f4146103f4576101f8565b8063085ba656116101cc578063085ba656146102cd5780630e89341c146102f85780631393094f146103355780631f40ce1c14610360576101f8565b8062fdd58e146101fd57806301ffc9a71461023a57806305d1941a1461027757806306fdde03146102a2575b600080fd5b34801561020957600080fd5b50610224600480360381019061021f9190613765565b610770565b604051610231919061430a565b60405180910390f35b34801561024657600080fd5b50610261600480360381019061025c91906138f3565b610839565b60405161026e919061400d565b60405180910390f35b34801561028357600080fd5b5061028c61091b565b6040516102999190614028565b60405180910390f35b3480156102ae57600080fd5b506102b76109a9565b6040516102c49190614028565b60405180910390f35b3480156102d957600080fd5b506102e26109e2565b6040516102ef919061430a565b60405180910390f35b34801561030457600080fd5b5061031f600480360381019061031a9190613986565b6109e8565b60405161032c9190614028565b60405180910390f35b34801561034157600080fd5b5061034a610a1c565b604051610357919061400d565b60405180910390f35b34801561036c57600080fd5b50610375610a2f565b005b34801561038357600080fd5b5061039e6004803603810190610399919061355c565b610af4565b005b3480156103ac57600080fd5b506103b5610b95565b6040516103c2919061400d565b60405180910390f35b3480156103d757600080fd5b506103f260048036038101906103ed9190613945565b610ba8565b005b34801561040057600080fd5b5061041b600480360381019061041691906137f0565b610c3e565b6040516104289190613fb4565b60405180910390f35b34801561043d57600080fd5b50610446610def565b604051610453919061400d565b60405180910390f35b34801561046857600080fd5b50610483600480360381019061047e91906136aa565b610e06565b005b34801561049157600080fd5b506104ac60048036038101906104a7919061385c565b610ea3565b005b3480156104ba57600080fd5b506104c3611020565b005b3480156104d157600080fd5b506104da6110a8565b005b3480156104e857600080fd5b506104f1611150565b005b3480156104ff57600080fd5b5061051a60048036038101906105159190613986565b6111d6565b005b34801561052857600080fd5b5061053161125c565b005b34801561053f57600080fd5b506105486112e2565b6040516105559190613ed7565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190613986565b61130c565b005b34801561059357600080fd5b5061059c611392565b6040516105a99190614028565b60405180910390f35b3480156105be57600080fd5b506105c76113cb565b005b3480156105d557600080fd5b506105f060048036038101906105eb9190613729565b611473565b005b3480156105fe57600080fd5b5061061960048036038101906106149190613986565b6115f4565b005b61063560048036038101906106309190613986565b61167a565b005b34801561064357600080fd5b5061065e60048036038101906106599190613520565b61191e565b60405161066b919061400d565b60405180910390f35b34801561068057600080fd5b506106896119b2565b604051610696919061430a565b60405180910390f35b3480156106ab57600080fd5b506106c660048036038101906106c1919061361b565b6119b8565b005b3480156106d457600080fd5b506106ef60048036038101906106ea91906134f7565b611a59565b005b3480156106fd57600080fd5b50610718600480360381019061071391906137a1565b611b51565b005b34801561072657600080fd5b5061072f611bee565b60405161073c919061430a565b60405180910390f35b34801561075157600080fd5b5061075a611bf4565b604051610767919061430a565b60405180910390f35b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d8906140ea565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061090457507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610914575061091382611c15565b5b9050919050565b6004805461092890614689565b80601f016020809104026020016040519081016040528092919081815260200182805461095490614689565b80156109a15780601f10610976576101008083540402835291602001916109a1565b820191906000526020600020905b81548152906001019060200180831161098457829003601f168201915b505050505081565b6040518060400160405280600981526020017f4d6f6f6e6f706f6c79000000000000000000000000000000000000000000000081525081565b60065481565b606060046109f583611c7f565b604051602001610a06929190613ea8565b6040516020818303038152906040529050919050565b600960019054906101000a900460ff1681565b610a37611e2c565b73ffffffffffffffffffffffffffffffffffffffff16610a556112e2565b73ffffffffffffffffffffffffffffffffffffffff1614610aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa29061426a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610af1573d6000803e3d6000fd5b50565b610afc611e2c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610b425750610b4185610b3c611e2c565b61191e565b5b610b81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b78906141ea565b60405180910390fd5b610b8e8585858585611e34565b5050505050565b600960009054906101000a900460ff1681565b610bb0611e2c565b73ffffffffffffffffffffffffffffffffffffffff16610bce6112e2565b73ffffffffffffffffffffffffffffffffffffffff1614610c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1b9061426a565b60405180910390fd5b8060049080519060200190610c3a9291906131ef565b5050565b60608151835114610c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7b906142aa565b60405180910390fd5b6000835167ffffffffffffffff811115610cc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610cf55781602001602082028036833780820191505090505b50905060005b8451811015610de457610d8e858281518110610d40577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858381518110610d81577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610770565b828281518110610dc7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080610ddd906146ec565b9050610cfb565b508091505092915050565b6000600360149054906101000a900460ff16905090565b610e0e611e2c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610e545750610e5383610e4e611e2c565b61191e565b5b610e93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8a9061416a565b60405180910390fd5b610e9e838383612194565b505050565b610eab611e2c565b73ffffffffffffffffffffffffffffffffffffffff16610ec96112e2565b73ffffffffffffffffffffffffffffffffffffffff1614610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f169061426a565b60405180910390fd5b60005b835181101561101a5761100733858381518110610f68577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858481518110610fa9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151858581518110610fea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160405180602001604052806000815250612491565b8080611012906146ec565b915050610f22565b50505050565b611028611e2c565b73ffffffffffffffffffffffffffffffffffffffff166110466112e2565b73ffffffffffffffffffffffffffffffffffffffff161461109c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110939061426a565b60405180910390fd5b6110a66000612713565b565b6110b0611e2c565b73ffffffffffffffffffffffffffffffffffffffff166110ce6112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611124576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161111b9061426a565b60405180910390fd5b600960009054906101000a900460ff1615600960006101000a81548160ff021916908315150217905550565b611158611e2c565b73ffffffffffffffffffffffffffffffffffffffff166111766112e2565b73ffffffffffffffffffffffffffffffffffffffff16146111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c39061426a565b60405180910390fd5b6111d46127d9565b565b6111de611e2c565b73ffffffffffffffffffffffffffffffffffffffff166111fc6112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611252576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112499061426a565b60405180910390fd5b8060078190555050565b611264611e2c565b73ffffffffffffffffffffffffffffffffffffffff166112826112e2565b73ffffffffffffffffffffffffffffffffffffffff16146112d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cf9061426a565b60405180910390fd5b6112e061287b565b565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611314611e2c565b73ffffffffffffffffffffffffffffffffffffffff166113326112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611388576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161137f9061426a565b60405180910390fd5b8060068190555050565b6040518060400160405280600481526020017f4d4f4f4e0000000000000000000000000000000000000000000000000000000081525081565b6113d3611e2c565b73ffffffffffffffffffffffffffffffffffffffff166113f16112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611447576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143e9061426a565b60405180910390fd5b600960019054906101000a900460ff1615600960016101000a81548160ff021916908315150217905550565b8173ffffffffffffffffffffffffffffffffffffffff16611492611e2c565b73ffffffffffffffffffffffffffffffffffffffff1614156114e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e09061428a565b60405180910390fd5b80600160006114f6611e2c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166115a3611e2c565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115e8919061400d565b60405180910390a35050565b6115fc611e2c565b73ffffffffffffffffffffffffffffffffffffffff1661161a6112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611670576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116679061426a565b60405180910390fd5b8060088190555050565b600960009054906101000a900460ff166116c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c09061408a565b60405180910390fd5b60075481111561170e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117059061424a565b60405180910390fd5b6006546117268260055461291e90919063ffffffff16565b1115611767576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175e906140ca565b60405180910390fd5b3461177d8260085461293490919063ffffffff16565b11156117be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117b59061410a565b60405180910390fd5b600960019054906101000a900460ff1661186057600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561185f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118569061418a565b60405180910390fd5b5b60005b818110156118c257600654600554116118af576118943360055460016040518060200160405280600081525061294a565b6001600560008282546118a791906144be565b925050819055505b80806118ba906146ec565b915050611863565b506001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60055481565b6119c0611e2c565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611a065750611a0585611a00611e2c565b61191e565b5b611a45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3c9061416a565b60405180910390fd5b611a528585858585612491565b5050505050565b611a61611e2c565b73ffffffffffffffffffffffffffffffffffffffff16611a7f6112e2565b73ffffffffffffffffffffffffffffffffffffffff1614611ad5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611acc9061426a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3c9061412a565b60405180910390fd5b611b4e81612713565b50565b611b59611e2c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611b9f5750611b9e83611b99611e2c565b61191e565b5b611bde576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bd59061416a565b60405180910390fd5b611be9838383612ae0565b505050565b60085481565b60075481565b505050505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60606000821415611cc7576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611e27565b600082905060005b60008214611cf9578080611ce2906146ec565b915050600a82611cf29190614514565b9150611ccf565b60008167ffffffffffffffff811115611d3b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d6d5781602001600182028036833780820191505090505b5090505b60008514611e2057600182611d86919061459f565b9150600a85611d959190614735565b6030611da191906144be565b60f81b818381518110611ddd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611e199190614514565b9450611d71565b8093505050505b919050565b600033905090565b8151835114611e78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e6f906142ca565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611ee8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edf906141ca565b60405180910390fd5b6000611ef2611e2c565b9050611f02818787878787612cfd565b60005b84518110156120ff576000858281518110611f49577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110611f8e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561202f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120269061422a565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546120e491906144be565b92505081905550505050806120f8906146ec565b9050611f05565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8787604051612176929190613fd6565b60405180910390a461218c818787878787612d5b565b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612204576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121fb9061420a565b60405180910390fd5b8051825114612248576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161223f906142ca565b60405180910390fd5b6000612252611e2c565b905061227281856000868660405180602001604052806000815250612cfd565b60005b835181101561240b5760008482815181106122b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106122fe577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561239f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123969061414a565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505050508080612403906146ec565b915050612275565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612483929190613fd6565b60405180910390a450505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612501576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f8906141ca565b60405180910390fd5b600061250b611e2c565b905061252b81878761251c88612f42565b61252588612f42565b87612cfd565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050838110156125c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b99061422a565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461267791906144be565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6288886040516126f4929190614325565b60405180910390a461270a828888888888613008565b50505050505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6127e1610def565b612820576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612817906140aa565b60405180910390fd5b6000600360146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612864611e2c565b6040516128719190613ed7565b60405180910390a1565b612883610def565b156128c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ba906141aa565b60405180910390fd5b6001600360146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612907611e2c565b6040516129149190613ed7565b60405180910390a1565b6000818361292c91906144be565b905092915050565b600081836129429190614545565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156129ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129b1906142ea565b60405180910390fd5b60006129c4611e2c565b90506129e5816000876129d688612f42565b6129df88612f42565b87612cfd565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a4491906144be565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612ac2929190614325565b60405180910390a4612ad981600087878787613008565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b479061420a565b60405180910390fd5b6000612b5a611e2c565b9050612b8a81856000612b6c87612f42565b612b7587612f42565b60405180602001604052806000815250612cfd565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612c21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c189061414a565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628787604051612cee929190614325565b60405180910390a45050505050565b612d05610def565b15612d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3c906141aa565b60405180910390fd5b612d53868686868686611bfa565b505050505050565b612d7a8473ffffffffffffffffffffffffffffffffffffffff16611c02565b15612f3a578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b8152600401612dc0959493929190613ef2565b602060405180830381600087803b158015612dda57600080fd5b505af1925050508015612e0b57506040513d601f19601f82011682018060405250810190612e08919061391c565b60015b612eb157612e17614822565b806308c379a01415612e745750612e2c614ebd565b80612e375750612e76565b806040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e6b9190614028565b60405180910390fd5b505b6040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ea89061404a565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614612f38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f2f9061406a565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff811115612f87577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015612fb55781602001602082028036833780820191505090505b5090508281600081518110612ff3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b6130278473ffffffffffffffffffffffffffffffffffffffff16611c02565b156131e7578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b815260040161306d959493929190613f5a565b602060405180830381600087803b15801561308757600080fd5b505af19250505080156130b857506040513d601f19601f820116820180604052508101906130b5919061391c565b60015b61315e576130c4614822565b806308c379a0141561312157506130d9614ebd565b806130e45750613123565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131189190614028565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131559061404a565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146131e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131dc9061406a565b60405180910390fd5b505b505050505050565b8280546131fb90614689565b90600052602060002090601f01602090048101928261321d5760008555613264565b82601f1061323657805160ff1916838001178555613264565b82800160010185558215613264579182015b82811115613263578251825591602001919060010190613248565b5b5090506132719190613275565b5090565b5b8082111561328e576000816000905550600101613276565b5090565b60006132a56132a084614373565b61434e565b905080838252602082019050828560208602820111156132c457600080fd5b60005b858110156132f457816132da88826133e6565b8452602084019350602083019250506001810190506132c7565b5050509392505050565b600061331161330c8461439f565b61434e565b9050808382526020820190508285602086028201111561333057600080fd5b60005b85811015613360578161334688826134e2565b845260208401935060208301925050600181019050613333565b5050509392505050565b600061337d613378846143cb565b61434e565b90508281526020810184848401111561339557600080fd5b6133a0848285614647565b509392505050565b60006133bb6133b6846143fc565b61434e565b9050828152602081018484840111156133d357600080fd5b6133de848285614647565b509392505050565b6000813590506133f581614f53565b92915050565b600082601f83011261340c57600080fd5b813561341c848260208601613292565b91505092915050565b600082601f83011261343657600080fd5b81356134468482602086016132fe565b91505092915050565b60008135905061345e81614f6a565b92915050565b60008135905061347381614f81565b92915050565b60008151905061348881614f81565b92915050565b600082601f83011261349f57600080fd5b81356134af84826020860161336a565b91505092915050565b600082601f8301126134c957600080fd5b81356134d98482602086016133a8565b91505092915050565b6000813590506134f181614f98565b92915050565b60006020828403121561350957600080fd5b6000613517848285016133e6565b91505092915050565b6000806040838503121561353357600080fd5b6000613541858286016133e6565b9250506020613552858286016133e6565b9150509250929050565b600080600080600060a0868803121561357457600080fd5b6000613582888289016133e6565b9550506020613593888289016133e6565b945050604086013567ffffffffffffffff8111156135b057600080fd5b6135bc88828901613425565b935050606086013567ffffffffffffffff8111156135d957600080fd5b6135e588828901613425565b925050608086013567ffffffffffffffff81111561360257600080fd5b61360e8882890161348e565b9150509295509295909350565b600080600080600060a0868803121561363357600080fd5b6000613641888289016133e6565b9550506020613652888289016133e6565b9450506040613663888289016134e2565b9350506060613674888289016134e2565b925050608086013567ffffffffffffffff81111561369157600080fd5b61369d8882890161348e565b9150509295509295909350565b6000806000606084860312156136bf57600080fd5b60006136cd868287016133e6565b935050602084013567ffffffffffffffff8111156136ea57600080fd5b6136f686828701613425565b925050604084013567ffffffffffffffff81111561371357600080fd5b61371f86828701613425565b9150509250925092565b6000806040838503121561373c57600080fd5b600061374a858286016133e6565b925050602061375b8582860161344f565b9150509250929050565b6000806040838503121561377857600080fd5b6000613786858286016133e6565b9250506020613797858286016134e2565b9150509250929050565b6000806000606084860312156137b657600080fd5b60006137c4868287016133e6565b93505060206137d5868287016134e2565b92505060406137e6868287016134e2565b9150509250925092565b6000806040838503121561380357600080fd5b600083013567ffffffffffffffff81111561381d57600080fd5b613829858286016133fb565b925050602083013567ffffffffffffffff81111561384657600080fd5b61385285828601613425565b9150509250929050565b60008060006060848603121561387157600080fd5b600084013567ffffffffffffffff81111561388b57600080fd5b613897868287016133fb565b935050602084013567ffffffffffffffff8111156138b457600080fd5b6138c086828701613425565b925050604084013567ffffffffffffffff8111156138dd57600080fd5b6138e986828701613425565b9150509250925092565b60006020828403121561390557600080fd5b600061391384828501613464565b91505092915050565b60006020828403121561392e57600080fd5b600061393c84828501613479565b91505092915050565b60006020828403121561395757600080fd5b600082013567ffffffffffffffff81111561397157600080fd5b61397d848285016134b8565b91505092915050565b60006020828403121561399857600080fd5b60006139a6848285016134e2565b91505092915050565b60006139bb8383613e8a565b60208301905092915050565b6139d0816145d3565b82525050565b60006139e182614452565b6139eb8185614480565b93506139f68361442d565b8060005b83811015613a27578151613a0e88826139af565b9750613a1983614473565b9250506001810190506139fa565b5085935050505092915050565b613a3d816145e5565b82525050565b6000613a4e8261445d565b613a588185614491565b9350613a68818560208601614656565b613a7181614844565b840191505092915050565b6000613a8782614468565b613a9181856144a2565b9350613aa1818560208601614656565b613aaa81614844565b840191505092915050565b6000613ac082614468565b613aca81856144b3565b9350613ada818560208601614656565b80840191505092915050565b60008154613af381614689565b613afd81866144b3565b94506001821660008114613b185760018114613b2957613b5c565b60ff19831686528186019350613b5c565b613b328561443d565b60005b83811015613b5457815481890152600182019150602081019050613b35565b838801955050505b50505092915050565b6000613b726034836144a2565b9150613b7d82614862565b604082019050919050565b6000613b956028836144a2565b9150613ba0826148b1565b604082019050919050565b6000613bb86021836144a2565b9150613bc382614900565b604082019050919050565b6000613bdb6014836144a2565b9150613be68261494f565b602082019050919050565b6000613bfe6029836144a2565b9150613c0982614978565b604082019050919050565b6000613c21602b836144a2565b9150613c2c826149c7565b604082019050919050565b6000613c44604a836144a2565b9150613c4f82614a16565b606082019050919050565b6000613c676026836144a2565b9150613c7282614a8b565b604082019050919050565b6000613c8a6024836144a2565b9150613c9582614ada565b604082019050919050565b6000613cad6029836144a2565b9150613cb882614b29565b604082019050919050565b6000613cd0601a836144a2565b9150613cdb82614b78565b602082019050919050565b6000613cf36010836144a2565b9150613cfe82614ba1565b602082019050919050565b6000613d166025836144a2565b9150613d2182614bca565b604082019050919050565b6000613d396032836144a2565b9150613d4482614c19565b604082019050919050565b6000613d5c6023836144a2565b9150613d6782614c68565b604082019050919050565b6000613d7f602a836144a2565b9150613d8a82614cb7565b604082019050919050565b6000613da26005836144b3565b9150613dad82614d06565b600582019050919050565b6000613dc5601f836144a2565b9150613dd082614d2f565b602082019050919050565b6000613de86020836144a2565b9150613df382614d58565b602082019050919050565b6000613e0b6029836144a2565b9150613e1682614d81565b604082019050919050565b6000613e2e6029836144a2565b9150613e3982614dd0565b604082019050919050565b6000613e516028836144a2565b9150613e5c82614e1f565b604082019050919050565b6000613e746021836144a2565b9150613e7f82614e6e565b604082019050919050565b613e938161463d565b82525050565b613ea28161463d565b82525050565b6000613eb48285613ae6565b9150613ec08284613ab5565b9150613ecb82613d95565b91508190509392505050565b6000602082019050613eec60008301846139c7565b92915050565b600060a082019050613f0760008301886139c7565b613f1460208301876139c7565b8181036040830152613f2681866139d6565b90508181036060830152613f3a81856139d6565b90508181036080830152613f4e8184613a43565b90509695505050505050565b600060a082019050613f6f60008301886139c7565b613f7c60208301876139c7565b613f896040830186613e99565b613f966060830185613e99565b8181036080830152613fa88184613a43565b90509695505050505050565b60006020820190508181036000830152613fce81846139d6565b905092915050565b60006040820190508181036000830152613ff081856139d6565b9050818103602083015261400481846139d6565b90509392505050565b60006020820190506140226000830184613a34565b92915050565b600060208201905081810360008301526140428184613a7c565b905092915050565b6000602082019050818103600083015261406381613b65565b9050919050565b6000602082019050818103600083015261408381613b88565b9050919050565b600060208201905081810360008301526140a381613bab565b9050919050565b600060208201905081810360008301526140c381613bce565b9050919050565b600060208201905081810360008301526140e381613bf1565b9050919050565b6000602082019050818103600083015261410381613c14565b9050919050565b6000602082019050818103600083015261412381613c37565b9050919050565b6000602082019050818103600083015261414381613c5a565b9050919050565b6000602082019050818103600083015261416381613c7d565b9050919050565b6000602082019050818103600083015261418381613ca0565b9050919050565b600060208201905081810360008301526141a381613cc3565b9050919050565b600060208201905081810360008301526141c381613ce6565b9050919050565b600060208201905081810360008301526141e381613d09565b9050919050565b6000602082019050818103600083015261420381613d2c565b9050919050565b6000602082019050818103600083015261422381613d4f565b9050919050565b6000602082019050818103600083015261424381613d72565b9050919050565b6000602082019050818103600083015261426381613db8565b9050919050565b6000602082019050818103600083015261428381613ddb565b9050919050565b600060208201905081810360008301526142a381613dfe565b9050919050565b600060208201905081810360008301526142c381613e21565b9050919050565b600060208201905081810360008301526142e381613e44565b9050919050565b6000602082019050818103600083015261430381613e67565b9050919050565b600060208201905061431f6000830184613e99565b92915050565b600060408201905061433a6000830185613e99565b6143476020830184613e99565b9392505050565b6000614358614369565b905061436482826146bb565b919050565b6000604051905090565b600067ffffffffffffffff82111561438e5761438d6147f3565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143ba576143b96147f3565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156143e6576143e56147f3565b5b6143ef82614844565b9050602081019050919050565b600067ffffffffffffffff821115614417576144166147f3565b5b61442082614844565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006144c98261463d565b91506144d48361463d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561450957614508614766565b5b828201905092915050565b600061451f8261463d565b915061452a8361463d565b92508261453a57614539614795565b5b828204905092915050565b60006145508261463d565b915061455b8361463d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561459457614593614766565b5b828202905092915050565b60006145aa8261463d565b91506145b58361463d565b9250828210156145c8576145c7614766565b5b828203905092915050565b60006145de8261461d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614674578082015181840152602081019050614659565b83811115614683576000848401525b50505050565b600060028204905060018216806146a157607f821691505b602082108114156146b5576146b46147c4565b5b50919050565b6146c482614844565b810181811067ffffffffffffffff821117156146e3576146e26147f3565b5b80604052505050565b60006146f78261463d565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561472a57614729614766565b5b600182019050919050565b60006147408261463d565b915061474b8361463d565b92508261475b5761475a614795565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d11156148415760046000803e61483e600051614855565b90505b90565b6000601f19601f8301169050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e74204361726460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662043617264730000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f45746865722076616c75652073656e74206973206e6f7420636f72726563742e60008201527f20302e303320455448205065722043617264207c20333030303030303030303060208201527f3030303030302057454900000000000000000000000000000000000000000000604082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f416464726573732048617320416c7265616479204d696e746564000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f43616e206f6e6c79206d696e74203520436172647320617420612074696d6500600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d1015614ecd57614f50565b614ed5614369565b60043d036004823e80513d602482011167ffffffffffffffff82111715614efd575050614f50565b808201805167ffffffffffffffff811115614f1b5750505050614f50565b80602083010160043d038501811115614f38575050505050614f50565b614f47826020018501866146bb565b82955050505050505b90565b614f5c816145d3565b8114614f6757600080fd5b50565b614f73816145e5565b8114614f7e57600080fd5b50565b614f8a816145f1565b8114614f9557600080fd5b50565b614fa18161463d565b8114614fac57600080fd5b5056fea2646970667358221220eb32635c888fe368906a62f3439585d200cf8fd722f44baec64f656264fd67ea64736f6c63430008040033
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.