Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
145 Loot+
Holders
66
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 Loot+Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ELoot
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity >=0.4.25; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; abstract contract Loot { function getWeapon(uint256 tokenId) public view virtual returns (string memory); function getChest(uint256 tokenId) public view virtual returns (string memory) ; function getHead(uint256 tokenId) public view virtual returns (string memory) ; function getWaist(uint256 tokenId) public view virtual returns (string memory) ; function getFoot(uint256 tokenId) public view virtual returns (string memory) ; function getHand(uint256 tokenId) public view virtual returns (string memory) ; function getNeck(uint256 tokenId) public view virtual returns (string memory) ; function getRing(uint256 tokenId) public view virtual returns (string memory) ; } contract ELoot is ERC721, Ownable{ uint public totalSupply=0; Loot loot = Loot(0xFF9C1b15B16263C61d017ee9F65C50e4AE0113D7); function random(string memory input) internal pure returns (uint256) { return uint256(keccak256(abi.encodePacked(input))); } function getHealthy(uint256 tokenId) public pure returns (string memory) { return pluck(tokenId, "Healthy"); } function getMagic(uint256 tokenId) public pure returns (string memory) { return pluck(tokenId, "Magic"); } function getLeadership(uint256 tokenId) public pure returns (string memory) { return pluck(tokenId, "Leadership"); } function getWeapon(uint256 tokenId) public view returns (string memory) { return loot.getWeapon(tokenId); } function getChest(uint256 tokenId) public view returns (string memory) { return loot.getChest(tokenId); } function getHead(uint256 tokenId) public view returns (string memory) { return loot.getHead(tokenId); } function getWaist(uint256 tokenId) public view returns (string memory) { return loot.getWaist(tokenId); } function getFoot(uint256 tokenId) public view returns (string memory) { return loot.getFoot(tokenId); } function getHand(uint256 tokenId) public view returns (string memory) { return loot.getHand(tokenId); } function getNeck(uint256 tokenId) public view returns (string memory) { return loot.getNeck(tokenId); } function getRing(uint256 tokenId) public view returns (string memory) { return loot.getRing(tokenId); } function pluck(uint256 tokenId, string memory keyPrefix) internal pure returns (string memory) { uint256 rand = random(string(abi.encodePacked(keyPrefix, tokenId))); uint256 greatness = rand % 21; string memory l = "C"; if (greatness > 19) { l="S"; }else if(greatness > 15){ l="A"; }else if(greatness > 5){ l="B"; } return string(abi.encodePacked(keyPrefix, " ", l)); } function rowString( string memory parts, uint index) internal pure returns (string memory){ return string(abi.encodePacked( '<text x="10" y="' , toString(index*20) ,'" class="base">',parts,'</text>')); } function tokenURI(uint256 tokenId) override public view returns (string memory) { string[13] memory parts; parts[0] = '<svg xmlns="http://www.w3.org/2000/svg" preserveAspectRatio="xMinYMin meet" viewBox="0 0 350 350"><style>.base { fill: white; font-family: serif; font-size: 14px; }</style><rect width="100%" height="100%" fill="black" />'; parts[1] = rowString( getWeapon(tokenId),1); parts[2] = rowString(getChest(tokenId),2); parts[3] = rowString(getHead(tokenId),3); parts[4] = rowString(getWaist(tokenId),4); parts[5] = rowString(getFoot(tokenId),5); parts[6] = rowString(getHand(tokenId),6); parts[7] = rowString(getNeck(tokenId),7); parts[8] = rowString(getRing(tokenId),8); parts[9] = rowString(getHealthy(tokenId),9); parts[10] = rowString(getMagic(tokenId),10); parts[11] = rowString(getLeadership(tokenId),11); parts[12] = '</svg>'; string memory output = string(abi.encodePacked(parts[0], parts[1], parts[2], parts[3], parts[4], parts[5], parts[6], parts[7], parts[8])); output = string(abi.encodePacked(output, parts[9], parts[10], parts[11], parts[12])); string memory json = Base64.encode(bytes(string(abi.encodePacked('{"name": "Bag #',toString(tokenId), '", "description": "Loot+ is randomized adventurer gear generated and stored on chain.", "image": "data:image/svg+xml;base64,', Base64.encode(bytes(output)), '"}')))); output = string(abi.encodePacked('data:application/json;base64,', json)); return output; } function claim() public { totalSupply++; require(balanceOf(_msgSender())<3, "claim over 3"); require(totalSupply > 0 && totalSupply < 7801, "Token ID invalid"); _safeMint(_msgSender(), totalSupply); } function ownerClaim(uint256 tokenId) public onlyOwner { totalSupply++; require(tokenId > 7800 && tokenId < 8001, "Token ID invalid"); _safeMint(owner(), tokenId); } function toString(uint256 value) internal pure returns (string memory) { 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); } constructor() ERC721("Loot plus", "Loot+") Ownable() {} } library Base64 { bytes internal constant TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; function encode(bytes memory data) internal pure returns (string memory) { uint256 len = data.length; if (len == 0) return ""; uint256 encodedLen = 4 * ((len + 2) / 3); bytes memory result = new bytes(encodedLen + 32); bytes memory table = TABLE; assembly { let tablePtr := add(table, 1) let resultPtr := add(result, 32) for { let i := 0 } lt(i, len) { } { i := add(i, 3) let input := and(mload(add(data, i)), 0xffffff) let out := mload(add(tablePtr, and(shr(18, input), 0x3F))) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)) out := shl(8, out) out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF)) out := shl(224, out) mstore(resultPtr, out) resultPtr := add(resultPtr, 4) } switch mod(len, 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } mstore(result, encodedLen) } return string(result); } }
// 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping (uint256 => address) private _owners; // Mapping owner address to token count mapping (address => uint256) private _balances; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// 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); }
{ "remappings": [], "optimizer": { "enabled": false, "runs": 200 }, "evmVersion": "london", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getChest","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getFoot","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getHand","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getHead","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getHealthy","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getLeadership","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getMagic","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getNeck","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getRing","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getWaist","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getWeapon","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerClaim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"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":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600060075573ff9c1b15b16263c61d017ee9f65c50e4ae0113d7600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006b57600080fd5b506040518060400160405280600981526020017f4c6f6f7420706c757300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f4c6f6f742b0000000000000000000000000000000000000000000000000000008152508160009080519060200190620000f0929190620001cb565b50806001908051906020019062000109929190620001cb565b50505060006200011e620001c360201b60201c565b905080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620002e0565b600033905090565b828054620001d9906200027b565b90600052602060002090601f016020900481019282620001fd576000855562000249565b82601f106200021857805160ff191683800117855562000249565b8280016001018555821562000249579182015b82811115620002485782518255916020019190600101906200022b565b5b5090506200025891906200025c565b5090565b5b80821115620002775760008160009055506001016200025d565b5090565b600060028204905060018216806200029457607f821691505b60208210811415620002ab57620002aa620002b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6145ef80620002f06000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063a22cb465116100a2578063d47f269e11610071578063d47f269e146105b3578063e985e9c5146105e3578063ef68075a14610613578063f2fde38b14610643576101da565b8063a22cb4651461051b578063b88d4fde14610537578063c08a5dd514610553578063c87b56dd14610583576101da565b80639720c969116100de5780639720c9691461045b5780639bdc1b691461048b5780639d7adfa9146104bb5780639e41b73f146104eb576101da565b8063715018a6146104155780638da5cb5b1461041f57806395d89b411461043d576101da565b806342842e0e1161017c5780635bc0a6231161014b5780635bc0a623146103555780636352211e1461038557806367209aa8146103b557806370a08231146103e5576101da565b806342842e0e146102e3578063434f48c4146102ff5780634e71d92d1461031b5780634e97e4ae14610325576101da565b8063095ea7b3116101b8578063095ea7b31461025d5780630e99990d1461027957806318160ddd146102a957806323b872dd146102c7576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190612fbb565b61065f565b6040516102069190613728565b60405180910390f35b610217610741565b6040516102249190613743565b60405180910390f35b6102476004803603810190610242919061305e565b6107d3565b60405161025491906136c1565b60405180910390f35b61027760048036038101906102729190612f7b565b610858565b005b610293600480360381019061028e919061305e565b610970565b6040516102a09190613743565b60405180910390f35b6102b1610a29565b6040516102be9190613985565b60405180910390f35b6102e160048036038101906102dc9190612e65565b610a2f565b005b6102fd60048036038101906102f89190612e65565b610a8f565b005b6103196004803603810190610314919061305e565b610aaf565b005b610323610ba8565b005b61033f600480360381019061033a919061305e565b610c7b565b60405161034c9190613743565b60405180910390f35b61036f600480360381019061036a919061305e565b610cc3565b60405161037c9190613743565b60405180910390f35b61039f600480360381019061039a919061305e565b610d0b565b6040516103ac91906136c1565b60405180910390f35b6103cf60048036038101906103ca919061305e565b610dbd565b6040516103dc9190613743565b60405180910390f35b6103ff60048036038101906103fa9190612df8565b610e76565b60405161040c9190613985565b60405180910390f35b61041d610f2e565b005b61042761106b565b60405161043491906136c1565b60405180910390f35b610445611095565b6040516104529190613743565b60405180910390f35b6104756004803603810190610470919061305e565b611127565b6040516104829190613743565b60405180910390f35b6104a560048036038101906104a0919061305e565b6111e0565b6040516104b29190613743565b60405180910390f35b6104d560048036038101906104d0919061305e565b611299565b6040516104e29190613743565b60405180910390f35b6105056004803603810190610500919061305e565b6112e1565b6040516105129190613743565b60405180910390f35b61053560048036038101906105309190612f3b565b61139a565b005b610551600480360381019061054c9190612eb8565b61151b565b005b61056d6004803603810190610568919061305e565b61157d565b60405161057a9190613743565b60405180910390f35b61059d6004803603810190610598919061305e565b611636565b6040516105aa9190613743565b60405180910390f35b6105cd60048036038101906105c8919061305e565b611ace565b6040516105da9190613743565b60405180910390f35b6105fd60048036038101906105f89190612e25565b611b87565b60405161060a9190613728565b60405180910390f35b61062d6004803603810190610628919061305e565b611c1b565b60405161063a9190613743565b60405180910390f35b61065d60048036038101906106589190612df8565b611cd4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073a575061073982611e80565b5b9050919050565b60606000805461075090613c35565b80601f016020809104026020016040519081016040528092919081815260200182805461077c90613c35565b80156107c95780601f1061079e576101008083540402835291602001916107c9565b820191906000526020600020905b8154815290600101906020018083116107ac57829003601f168201915b5050505050905090565b60006107de82611eea565b61081d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610814906138c5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086382610d0b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cb90613945565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f3611f56565b73ffffffffffffffffffffffffffffffffffffffff16148061092257506109218161091c611f56565b611b87565b5b610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890613845565b60405180910390fd5b61096b8383611f5e565b505050565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630e99990d836040518263ffffffff1660e01b81526004016109cd9190613985565b60006040518083038186803b1580156109e557600080fd5b505afa1580156109f9573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610a229190613015565b9050919050565b60075481565b610a40610a3a611f56565b82612017565b610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7690613965565b60405180910390fd5b610a8a8383836120f5565b505050565b610aaa8383836040518060200160405280600081525061151b565b505050565b610ab7611f56565b73ffffffffffffffffffffffffffffffffffffffff16610ad561106b565b73ffffffffffffffffffffffffffffffffffffffff1614610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b22906138e5565b60405180910390fd5b60076000815480929190610b3e90613c98565b9190505550611e7881118015610b555750611f4181105b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90613905565b60405180910390fd5b610ba5610b9f61106b565b82612351565b50565b60076000815480929190610bbb90613c98565b91905055506003610bd2610bcd611f56565b610e76565b10610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990613825565b60405180910390fd5b6000600754118015610c275750611e79600754105b610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d90613905565b60405180910390fd5b610c79610c71611f56565b600754612351565b565b6060610cbc826040518060400160405280600781526020017f4865616c7468790000000000000000000000000000000000000000000000000081525061236f565b9050919050565b6060610d04826040518060400160405280600581526020017f4d6167696300000000000000000000000000000000000000000000000000000081525061236f565b9050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90613885565b60405180910390fd5b80915050919050565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166367209aa8836040518263ffffffff1660e01b8152600401610e1a9190613985565b60006040518083038186803b158015610e3257600080fd5b505afa158015610e46573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610e6f9190613015565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90613865565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f36611f56565b73ffffffffffffffffffffffffffffffffffffffff16610f5461106b565b73ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa1906138e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110a490613c35565b80601f01602080910402602001604051908101604052809291908181526020018280546110d090613c35565b801561111d5780601f106110f25761010080835404028352916020019161111d565b820191906000526020600020905b81548152906001019060200180831161110057829003601f168201915b5050505050905090565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639720c969836040518263ffffffff1660e01b81526004016111849190613985565b60006040518083038186803b15801561119c57600080fd5b505afa1580156111b0573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906111d99190613015565b9050919050565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639bdc1b69836040518263ffffffff1660e01b815260040161123d9190613985565b60006040518083038186803b15801561125557600080fd5b505afa158015611269573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906112929190613015565b9050919050565b60606112da826040518060400160405280600a81526020017f4c6561646572736869700000000000000000000000000000000000000000000081525061236f565b9050919050565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639e41b73f836040518263ffffffff1660e01b815260040161133e9190613985565b60006040518083038186803b15801561135657600080fd5b505afa15801561136a573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906113939190613015565b9050919050565b6113a2611f56565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611410576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611407906137e5565b60405180910390fd5b806005600061141d611f56565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ca611f56565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161150f9190613728565b60405180910390a35050565b61152c611526611f56565b83612017565b61156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156290613965565b60405180910390fd5b611577848484846124e7565b50505050565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c08a5dd5836040518263ffffffff1660e01b81526004016115da9190613985565b60006040518083038186803b1580156115f257600080fd5b505afa158015611606573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061162f9190613015565b9050919050565b6060611640612c87565b60405180610100016040528060dc81526020016144de60dc9139816000600d811061166e5761166d613da9565b5b6020020181905250611689611682846112e1565b6001612543565b816001600d811061169d5761169c613da9565b5b60200201819052506116b86116b184611c1b565b6002612543565b816002600d81106116cc576116cb613da9565b5b60200201819052506116e76116e084611127565b6003612543565b816003600d81106116fb576116fa613da9565b5b602002018190525061171661170f846111e0565b6004612543565b816004600d811061172a57611729613da9565b5b602002018190525061174561173e84610970565b6005612543565b816005600d811061175957611758613da9565b5b602002018190525061177461176d84611ace565b6006612543565b816006600d811061178857611787613da9565b5b60200201819052506117a361179c84610dbd565b6007612543565b816007600d81106117b7576117b6613da9565b5b60200201819052506117d26117cb8461157d565b6008612543565b816008600d81106117e6576117e5613da9565b5b60200201819052506118016117fa84610c7b565b6009612543565b816009600d811061181557611814613da9565b5b602002018190525061183061182984610cc3565b600a612543565b81600a600d811061184457611843613da9565b5b602002018190525061185f61185884611299565b600b612543565b81600b600d811061187357611872613da9565b5b60200201819052506040518060400160405280600681526020017f3c2f7376673e000000000000000000000000000000000000000000000000000081525081600c600d81106118c5576118c4613da9565b5b60200201819052506000816000600d81106118e3576118e2613da9565b5b6020020151826001600d81106118fc576118fb613da9565b5b6020020151836002600d811061191557611914613da9565b5b6020020151846003600d811061192e5761192d613da9565b5b6020020151856004600d811061194757611946613da9565b5b6020020151866005600d81106119605761195f613da9565b5b6020020151876006600d811061197957611978613da9565b5b6020020151886007600d811061199257611991613da9565b5b6020020151896008600d81106119ab576119aa613da9565b5b60200201516040516020016119c89998979695949392919061353f565b604051602081830303815290604052905080826009600d81106119ee576119ed613da9565b5b602002015183600a600d8110611a0757611a06613da9565b5b602002015184600b600d8110611a2057611a1f613da9565b5b602002015185600c600d8110611a3957611a38613da9565b5b6020020151604051602001611a529594939291906134f4565b60405160208183030381529060405290506000611a9f611a7186612583565b611a7a846126e4565b604051602001611a8b92919061365a565b6040516020818303038152906040526126e4565b905080604051602001611ab2919061369f565b6040516020818303038152906040529150819350505050919050565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d47f269e836040518263ffffffff1660e01b8152600401611b2b9190613985565b60006040518083038186803b158015611b4357600080fd5b505afa158015611b57573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611b809190613015565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ef68075a836040518263ffffffff1660e01b8152600401611c789190613985565b60006040518083038186803b158015611c9057600080fd5b505afa158015611ca4573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611ccd9190613015565b9050919050565b611cdc611f56565b73ffffffffffffffffffffffffffffffffffffffff16611cfa61106b565b73ffffffffffffffffffffffffffffffffffffffff1614611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d47906138e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db790613785565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fd183610d0b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061202282611eea565b612061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205890613805565b60405180910390fd5b600061206c83610d0b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120db57508373ffffffffffffffffffffffffffffffffffffffff166120c3846107d3565b73ffffffffffffffffffffffffffffffffffffffff16145b806120ec57506120eb8185611b87565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661211582610d0b565b73ffffffffffffffffffffffffffffffffffffffff161461216b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216290613925565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d2906137c5565b60405180910390fd5b6121e683838361287c565b6121f1600082611f5e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122419190613b4b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122989190613a6a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61236b828260405180602001604052806000815250612881565b5050565b6060600061239d83856040516020016123899291906135ed565b6040516020818303038152906040526128dc565b905060006015826123ae9190613ceb565b905060006040518060400160405280600181526020017f430000000000000000000000000000000000000000000000000000000000000081525090506013821115612430576040518060400160405280600181526020017f530000000000000000000000000000000000000000000000000000000000000081525090506124ba565b600f821115612476576040518060400160405280600181526020017f410000000000000000000000000000000000000000000000000000000000000081525090506124b9565b60058211156124b8576040518060400160405280600181526020017f420000000000000000000000000000000000000000000000000000000000000081525090505b5b5b84816040516020016124cd9291906135be565b604051602081830303815290604052935050505092915050565b6124f28484846120f5565b6124fe8484848461290f565b61253d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253490613765565b60405180910390fd5b50505050565b606061255a6014836125559190613af1565b612583565b8360405160200161256c929190613615565b604051602081830303815290604052905092915050565b606060008214156125cb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126df565b600082905060005b600082146125fd5780806125e690613c98565b915050600a826125f69190613ac0565b91506125d3565b60008167ffffffffffffffff81111561261957612618613dd8565b5b6040519080825280601f01601f19166020018201604052801561264b5781602001600182028036833780820191505090505b5090505b600085146126d8576001826126649190613b4b565b9150600a856126739190613ceb565b603061267f9190613a6a565b60f81b81838151811061269557612694613da9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126d19190613ac0565b945061264f565b8093505050505b919050565b6060600082519050600081141561270d5760405180602001604052806000815250915050612877565b6000600360028361271e9190613a6a565b6127289190613ac0565b60046127349190613af1565b905060006020826127459190613a6a565b67ffffffffffffffff81111561275e5761275d613dd8565b5b6040519080825280601f01601f1916602001820160405280156127905781602001600182028036833780820191505090505b509050600060405180606001604052806040815260200161449e604091399050600181016020830160005b868110156128345760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b905080845260048401935050506127bb565b50600386066001811461284e576002811461285e57612869565b613d3d60f01b6002830352612869565b603d60f81b60018303525b508484525050819450505050505b919050565b505050565b61288b8383612aa6565b612898600084848461290f565b6128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce90613765565b60405180910390fd5b505050565b6000816040516020016128ef91906134dd565b6040516020818303038152906040528051906020012060001c9050919050565b60006129308473ffffffffffffffffffffffffffffffffffffffff16612c74565b15612a99578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612959611f56565b8786866040518563ffffffff1660e01b815260040161297b94939291906136dc565b602060405180830381600087803b15801561299557600080fd5b505af19250505080156129c657506040513d601f19601f820116820180604052508101906129c39190612fe8565b60015b612a49573d80600081146129f6576040519150601f19603f3d011682016040523d82523d6000602084013e6129fb565b606091505b50600081511415612a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3890613765565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a9e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0d906138a5565b60405180910390fd5b612b1f81611eea565b15612b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b56906137a5565b60405180910390fd5b612b6b6000838361287c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bbb9190613a6a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b604051806101a00160405280600d905b6060815260200190600190039081612c975790505090565b6000612cc2612cbd846139c5565b6139a0565b905082815260208101848484011115612cde57612cdd613e0c565b5b612ce9848285613bf3565b509392505050565b6000612d04612cff846139f6565b6139a0565b905082815260208101848484011115612d2057612d1f613e0c565b5b612d2b848285613c02565b509392505050565b600081359050612d4281614441565b92915050565b600081359050612d5781614458565b92915050565b600081359050612d6c8161446f565b92915050565b600081519050612d818161446f565b92915050565b600082601f830112612d9c57612d9b613e07565b5b8135612dac848260208601612caf565b91505092915050565b600082601f830112612dca57612dc9613e07565b5b8151612dda848260208601612cf1565b91505092915050565b600081359050612df281614486565b92915050565b600060208284031215612e0e57612e0d613e16565b5b6000612e1c84828501612d33565b91505092915050565b60008060408385031215612e3c57612e3b613e16565b5b6000612e4a85828601612d33565b9250506020612e5b85828601612d33565b9150509250929050565b600080600060608486031215612e7e57612e7d613e16565b5b6000612e8c86828701612d33565b9350506020612e9d86828701612d33565b9250506040612eae86828701612de3565b9150509250925092565b60008060008060808587031215612ed257612ed1613e16565b5b6000612ee087828801612d33565b9450506020612ef187828801612d33565b9350506040612f0287828801612de3565b925050606085013567ffffffffffffffff811115612f2357612f22613e11565b5b612f2f87828801612d87565b91505092959194509250565b60008060408385031215612f5257612f51613e16565b5b6000612f6085828601612d33565b9250506020612f7185828601612d48565b9150509250929050565b60008060408385031215612f9257612f91613e16565b5b6000612fa085828601612d33565b9250506020612fb185828601612de3565b9150509250929050565b600060208284031215612fd157612fd0613e16565b5b6000612fdf84828501612d5d565b91505092915050565b600060208284031215612ffe57612ffd613e16565b5b600061300c84828501612d72565b91505092915050565b60006020828403121561302b5761302a613e16565b5b600082015167ffffffffffffffff81111561304957613048613e11565b5b61305584828501612db5565b91505092915050565b60006020828403121561307457613073613e16565b5b600061308284828501612de3565b91505092915050565b61309481613b7f565b82525050565b6130a381613b91565b82525050565b60006130b482613a27565b6130be8185613a3d565b93506130ce818560208601613c02565b6130d781613e1b565b840191505092915050565b60006130ed82613a32565b6130f78185613a4e565b9350613107818560208601613c02565b61311081613e1b565b840191505092915050565b600061312682613a32565b6131308185613a5f565b9350613140818560208601613c02565b80840191505092915050565b6000613159601083613a5f565b915061316482613e2c565b601082019050919050565b600061317c603283613a4e565b915061318782613e55565b604082019050919050565b600061319f602683613a4e565b91506131aa82613ea4565b604082019050919050565b60006131c2601c83613a4e565b91506131cd82613ef3565b602082019050919050565b60006131e5602483613a4e565b91506131f082613f1c565b604082019050919050565b6000613208601983613a4e565b915061321382613f6b565b602082019050919050565b600061322b602c83613a4e565b915061323682613f94565b604082019050919050565b600061324e600c83613a4e565b915061325982613fe3565b602082019050919050565b6000613271600183613a5f565b915061327c8261400c565b600182019050919050565b6000613294603883613a4e565b915061329f82614035565b604082019050919050565b60006132b7602a83613a4e565b91506132c282614084565b604082019050919050565b60006132da602983613a4e565b91506132e5826140d3565b604082019050919050565b60006132fd600283613a5f565b915061330882614122565b600282019050919050565b6000613320600783613a5f565b915061332b8261414b565b600782019050919050565b6000613343600f83613a5f565b915061334e82614174565b600f82019050919050565b6000613366602083613a4e565b91506133718261419d565b602082019050919050565b6000613389602c83613a4e565b9150613394826141c6565b604082019050919050565b60006133ac602083613a4e565b91506133b782614215565b602082019050919050565b60006133cf601083613a4e565b91506133da8261423e565b602082019050919050565b60006133f2602983613a4e565b91506133fd82614267565b604082019050919050565b6000613415602183613a4e565b9150613420826142b6565b604082019050919050565b6000613438607c83613a5f565b915061344382614305565b607c82019050919050565b600061345b601d83613a5f565b9150613466826143a0565b601d82019050919050565b600061347e600f83613a5f565b9150613489826143c9565b600f82019050919050565b60006134a1603183613a4e565b91506134ac826143f2565b604082019050919050565b6134c081613be9565b82525050565b6134d76134d282613be9565b613ce1565b82525050565b60006134e9828461311b565b915081905092915050565b6000613500828861311b565b915061350c828761311b565b9150613518828661311b565b9150613524828561311b565b9150613530828461311b565b91508190509695505050505050565b600061354b828c61311b565b9150613557828b61311b565b9150613563828a61311b565b915061356f828961311b565b915061357b828861311b565b9150613587828761311b565b9150613593828661311b565b915061359f828561311b565b91506135ab828461311b565b91508190509a9950505050505050505050565b60006135ca828561311b565b91506135d582613264565b91506135e1828461311b565b91508190509392505050565b60006135f9828561311b565b915061360582846134c6565b6020820191508190509392505050565b60006136208261314c565b915061362c828561311b565b915061363782613471565b9150613643828461311b565b915061364e82613313565b91508190509392505050565b600061366582613336565b9150613671828561311b565b915061367c8261342b565b9150613688828461311b565b9150613693826132f0565b91508190509392505050565b60006136aa8261344e565b91506136b6828461311b565b915081905092915050565b60006020820190506136d6600083018461308b565b92915050565b60006080820190506136f1600083018761308b565b6136fe602083018661308b565b61370b60408301856134b7565b818103606083015261371d81846130a9565b905095945050505050565b600060208201905061373d600083018461309a565b92915050565b6000602082019050818103600083015261375d81846130e2565b905092915050565b6000602082019050818103600083015261377e8161316f565b9050919050565b6000602082019050818103600083015261379e81613192565b9050919050565b600060208201905081810360008301526137be816131b5565b9050919050565b600060208201905081810360008301526137de816131d8565b9050919050565b600060208201905081810360008301526137fe816131fb565b9050919050565b6000602082019050818103600083015261381e8161321e565b9050919050565b6000602082019050818103600083015261383e81613241565b9050919050565b6000602082019050818103600083015261385e81613287565b9050919050565b6000602082019050818103600083015261387e816132aa565b9050919050565b6000602082019050818103600083015261389e816132cd565b9050919050565b600060208201905081810360008301526138be81613359565b9050919050565b600060208201905081810360008301526138de8161337c565b9050919050565b600060208201905081810360008301526138fe8161339f565b9050919050565b6000602082019050818103600083015261391e816133c2565b9050919050565b6000602082019050818103600083015261393e816133e5565b9050919050565b6000602082019050818103600083015261395e81613408565b9050919050565b6000602082019050818103600083015261397e81613494565b9050919050565b600060208201905061399a60008301846134b7565b92915050565b60006139aa6139bb565b90506139b68282613c67565b919050565b6000604051905090565b600067ffffffffffffffff8211156139e0576139df613dd8565b5b6139e982613e1b565b9050602081019050919050565b600067ffffffffffffffff821115613a1157613a10613dd8565b5b613a1a82613e1b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a7582613be9565b9150613a8083613be9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ab557613ab4613d1c565b5b828201905092915050565b6000613acb82613be9565b9150613ad683613be9565b925082613ae657613ae5613d4b565b5b828204905092915050565b6000613afc82613be9565b9150613b0783613be9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4057613b3f613d1c565b5b828202905092915050565b6000613b5682613be9565b9150613b6183613be9565b925082821015613b7457613b73613d1c565b5b828203905092915050565b6000613b8a82613bc9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c20578082015181840152602081019050613c05565b83811115613c2f576000848401525b50505050565b60006002820490506001821680613c4d57607f821691505b60208210811415613c6157613c60613d7a565b5b50919050565b613c7082613e1b565b810181811067ffffffffffffffff82111715613c8f57613c8e613dd8565b5b80604052505050565b6000613ca382613be9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cd657613cd5613d1c565b5b600182019050919050565b6000819050919050565b6000613cf682613be9565b9150613d0183613be9565b925082613d1157613d10613d4b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f3c7465787420783d2231302220793d2200000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f636c61696d206f76657220330000000000000000000000000000000000000000600082015250565b7f2000000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f3c2f746578743e00000000000000000000000000000000000000000000000000600082015250565b7f7b226e616d65223a202242616720230000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a20224c6f6f742b2069732072616e6460008201527f6f6d697a656420616476656e747572657220676561722067656e65726174656460208201527f20616e642073746f726564206f6e20636861696e2e222c2022696d616765223a60408201527f2022646174613a696d6167652f7376672b786d6c3b6261736536342c00000000606082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f2220636c6173733d2262617365223e0000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61444a81613b7f565b811461445557600080fd5b50565b61446181613b91565b811461446c57600080fd5b50565b61447881613b9d565b811461448357600080fd5b50565b61448f81613be9565b811461449a57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3ea2646970667358221220049c1afefd43308ebdaaab4dd89067a0a6659bca23aad7c26f6336f74c46808764736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063715018a611610104578063a22cb465116100a2578063d47f269e11610071578063d47f269e146105b3578063e985e9c5146105e3578063ef68075a14610613578063f2fde38b14610643576101da565b8063a22cb4651461051b578063b88d4fde14610537578063c08a5dd514610553578063c87b56dd14610583576101da565b80639720c969116100de5780639720c9691461045b5780639bdc1b691461048b5780639d7adfa9146104bb5780639e41b73f146104eb576101da565b8063715018a6146104155780638da5cb5b1461041f57806395d89b411461043d576101da565b806342842e0e1161017c5780635bc0a6231161014b5780635bc0a623146103555780636352211e1461038557806367209aa8146103b557806370a08231146103e5576101da565b806342842e0e146102e3578063434f48c4146102ff5780634e71d92d1461031b5780634e97e4ae14610325576101da565b8063095ea7b3116101b8578063095ea7b31461025d5780630e99990d1461027957806318160ddd146102a957806323b872dd146102c7576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190612fbb565b61065f565b6040516102069190613728565b60405180910390f35b610217610741565b6040516102249190613743565b60405180910390f35b6102476004803603810190610242919061305e565b6107d3565b60405161025491906136c1565b60405180910390f35b61027760048036038101906102729190612f7b565b610858565b005b610293600480360381019061028e919061305e565b610970565b6040516102a09190613743565b60405180910390f35b6102b1610a29565b6040516102be9190613985565b60405180910390f35b6102e160048036038101906102dc9190612e65565b610a2f565b005b6102fd60048036038101906102f89190612e65565b610a8f565b005b6103196004803603810190610314919061305e565b610aaf565b005b610323610ba8565b005b61033f600480360381019061033a919061305e565b610c7b565b60405161034c9190613743565b60405180910390f35b61036f600480360381019061036a919061305e565b610cc3565b60405161037c9190613743565b60405180910390f35b61039f600480360381019061039a919061305e565b610d0b565b6040516103ac91906136c1565b60405180910390f35b6103cf60048036038101906103ca919061305e565b610dbd565b6040516103dc9190613743565b60405180910390f35b6103ff60048036038101906103fa9190612df8565b610e76565b60405161040c9190613985565b60405180910390f35b61041d610f2e565b005b61042761106b565b60405161043491906136c1565b60405180910390f35b610445611095565b6040516104529190613743565b60405180910390f35b6104756004803603810190610470919061305e565b611127565b6040516104829190613743565b60405180910390f35b6104a560048036038101906104a0919061305e565b6111e0565b6040516104b29190613743565b60405180910390f35b6104d560048036038101906104d0919061305e565b611299565b6040516104e29190613743565b60405180910390f35b6105056004803603810190610500919061305e565b6112e1565b6040516105129190613743565b60405180910390f35b61053560048036038101906105309190612f3b565b61139a565b005b610551600480360381019061054c9190612eb8565b61151b565b005b61056d6004803603810190610568919061305e565b61157d565b60405161057a9190613743565b60405180910390f35b61059d6004803603810190610598919061305e565b611636565b6040516105aa9190613743565b60405180910390f35b6105cd60048036038101906105c8919061305e565b611ace565b6040516105da9190613743565b60405180910390f35b6105fd60048036038101906105f89190612e25565b611b87565b60405161060a9190613728565b60405180910390f35b61062d6004803603810190610628919061305e565b611c1b565b60405161063a9190613743565b60405180910390f35b61065d60048036038101906106589190612df8565b611cd4565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061072a57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061073a575061073982611e80565b5b9050919050565b60606000805461075090613c35565b80601f016020809104026020016040519081016040528092919081815260200182805461077c90613c35565b80156107c95780601f1061079e576101008083540402835291602001916107c9565b820191906000526020600020905b8154815290600101906020018083116107ac57829003601f168201915b5050505050905090565b60006107de82611eea565b61081d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610814906138c5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061086382610d0b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108cb90613945565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108f3611f56565b73ffffffffffffffffffffffffffffffffffffffff16148061092257506109218161091c611f56565b611b87565b5b610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890613845565b60405180910390fd5b61096b8383611f5e565b505050565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630e99990d836040518263ffffffff1660e01b81526004016109cd9190613985565b60006040518083038186803b1580156109e557600080fd5b505afa1580156109f9573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610a229190613015565b9050919050565b60075481565b610a40610a3a611f56565b82612017565b610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7690613965565b60405180910390fd5b610a8a8383836120f5565b505050565b610aaa8383836040518060200160405280600081525061151b565b505050565b610ab7611f56565b73ffffffffffffffffffffffffffffffffffffffff16610ad561106b565b73ffffffffffffffffffffffffffffffffffffffff1614610b2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b22906138e5565b60405180910390fd5b60076000815480929190610b3e90613c98565b9190505550611e7881118015610b555750611f4181105b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90613905565b60405180910390fd5b610ba5610b9f61106b565b82612351565b50565b60076000815480929190610bbb90613c98565b91905055506003610bd2610bcd611f56565b610e76565b10610c12576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0990613825565b60405180910390fd5b6000600754118015610c275750611e79600754105b610c66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5d90613905565b60405180910390fd5b610c79610c71611f56565b600754612351565b565b6060610cbc826040518060400160405280600781526020017f4865616c7468790000000000000000000000000000000000000000000000000081525061236f565b9050919050565b6060610d04826040518060400160405280600581526020017f4d6167696300000000000000000000000000000000000000000000000000000081525061236f565b9050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dab90613885565b60405180910390fd5b80915050919050565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166367209aa8836040518263ffffffff1660e01b8152600401610e1a9190613985565b60006040518083038186803b158015610e3257600080fd5b505afa158015610e46573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190610e6f9190613015565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90613865565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f36611f56565b73ffffffffffffffffffffffffffffffffffffffff16610f5461106b565b73ffffffffffffffffffffffffffffffffffffffff1614610faa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa1906138e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600180546110a490613c35565b80601f01602080910402602001604051908101604052809291908181526020018280546110d090613c35565b801561111d5780601f106110f25761010080835404028352916020019161111d565b820191906000526020600020905b81548152906001019060200180831161110057829003601f168201915b5050505050905090565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639720c969836040518263ffffffff1660e01b81526004016111849190613985565b60006040518083038186803b15801561119c57600080fd5b505afa1580156111b0573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906111d99190613015565b9050919050565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639bdc1b69836040518263ffffffff1660e01b815260040161123d9190613985565b60006040518083038186803b15801561125557600080fd5b505afa158015611269573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906112929190613015565b9050919050565b60606112da826040518060400160405280600a81526020017f4c6561646572736869700000000000000000000000000000000000000000000081525061236f565b9050919050565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16639e41b73f836040518263ffffffff1660e01b815260040161133e9190613985565b60006040518083038186803b15801561135657600080fd5b505afa15801561136a573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f820116820180604052508101906113939190613015565b9050919050565b6113a2611f56565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611410576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611407906137e5565b60405180910390fd5b806005600061141d611f56565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166114ca611f56565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161150f9190613728565b60405180910390a35050565b61152c611526611f56565b83612017565b61156b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156290613965565b60405180910390fd5b611577848484846124e7565b50505050565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c08a5dd5836040518263ffffffff1660e01b81526004016115da9190613985565b60006040518083038186803b1580156115f257600080fd5b505afa158015611606573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f8201168201806040525081019061162f9190613015565b9050919050565b6060611640612c87565b60405180610100016040528060dc81526020016144de60dc9139816000600d811061166e5761166d613da9565b5b6020020181905250611689611682846112e1565b6001612543565b816001600d811061169d5761169c613da9565b5b60200201819052506116b86116b184611c1b565b6002612543565b816002600d81106116cc576116cb613da9565b5b60200201819052506116e76116e084611127565b6003612543565b816003600d81106116fb576116fa613da9565b5b602002018190525061171661170f846111e0565b6004612543565b816004600d811061172a57611729613da9565b5b602002018190525061174561173e84610970565b6005612543565b816005600d811061175957611758613da9565b5b602002018190525061177461176d84611ace565b6006612543565b816006600d811061178857611787613da9565b5b60200201819052506117a361179c84610dbd565b6007612543565b816007600d81106117b7576117b6613da9565b5b60200201819052506117d26117cb8461157d565b6008612543565b816008600d81106117e6576117e5613da9565b5b60200201819052506118016117fa84610c7b565b6009612543565b816009600d811061181557611814613da9565b5b602002018190525061183061182984610cc3565b600a612543565b81600a600d811061184457611843613da9565b5b602002018190525061185f61185884611299565b600b612543565b81600b600d811061187357611872613da9565b5b60200201819052506040518060400160405280600681526020017f3c2f7376673e000000000000000000000000000000000000000000000000000081525081600c600d81106118c5576118c4613da9565b5b60200201819052506000816000600d81106118e3576118e2613da9565b5b6020020151826001600d81106118fc576118fb613da9565b5b6020020151836002600d811061191557611914613da9565b5b6020020151846003600d811061192e5761192d613da9565b5b6020020151856004600d811061194757611946613da9565b5b6020020151866005600d81106119605761195f613da9565b5b6020020151876006600d811061197957611978613da9565b5b6020020151886007600d811061199257611991613da9565b5b6020020151896008600d81106119ab576119aa613da9565b5b60200201516040516020016119c89998979695949392919061353f565b604051602081830303815290604052905080826009600d81106119ee576119ed613da9565b5b602002015183600a600d8110611a0757611a06613da9565b5b602002015184600b600d8110611a2057611a1f613da9565b5b602002015185600c600d8110611a3957611a38613da9565b5b6020020151604051602001611a529594939291906134f4565b60405160208183030381529060405290506000611a9f611a7186612583565b611a7a846126e4565b604051602001611a8b92919061365a565b6040516020818303038152906040526126e4565b905080604051602001611ab2919061369f565b6040516020818303038152906040529150819350505050919050565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d47f269e836040518263ffffffff1660e01b8152600401611b2b9190613985565b60006040518083038186803b158015611b4357600080fd5b505afa158015611b57573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611b809190613015565b9050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ef68075a836040518263ffffffff1660e01b8152600401611c789190613985565b60006040518083038186803b158015611c9057600080fd5b505afa158015611ca4573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190611ccd9190613015565b9050919050565b611cdc611f56565b73ffffffffffffffffffffffffffffffffffffffff16611cfa61106b565b73ffffffffffffffffffffffffffffffffffffffff1614611d50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d47906138e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611dc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611db790613785565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611fd183610d0b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061202282611eea565b612061576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205890613805565b60405180910390fd5b600061206c83610d0b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806120db57508373ffffffffffffffffffffffffffffffffffffffff166120c3846107d3565b73ffffffffffffffffffffffffffffffffffffffff16145b806120ec57506120eb8185611b87565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661211582610d0b565b73ffffffffffffffffffffffffffffffffffffffff161461216b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161216290613925565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121d2906137c5565b60405180910390fd5b6121e683838361287c565b6121f1600082611f5e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122419190613b4b565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122989190613a6a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b61236b828260405180602001604052806000815250612881565b5050565b6060600061239d83856040516020016123899291906135ed565b6040516020818303038152906040526128dc565b905060006015826123ae9190613ceb565b905060006040518060400160405280600181526020017f430000000000000000000000000000000000000000000000000000000000000081525090506013821115612430576040518060400160405280600181526020017f530000000000000000000000000000000000000000000000000000000000000081525090506124ba565b600f821115612476576040518060400160405280600181526020017f410000000000000000000000000000000000000000000000000000000000000081525090506124b9565b60058211156124b8576040518060400160405280600181526020017f420000000000000000000000000000000000000000000000000000000000000081525090505b5b5b84816040516020016124cd9291906135be565b604051602081830303815290604052935050505092915050565b6124f28484846120f5565b6124fe8484848461290f565b61253d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161253490613765565b60405180910390fd5b50505050565b606061255a6014836125559190613af1565b612583565b8360405160200161256c929190613615565b604051602081830303815290604052905092915050565b606060008214156125cb576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126df565b600082905060005b600082146125fd5780806125e690613c98565b915050600a826125f69190613ac0565b91506125d3565b60008167ffffffffffffffff81111561261957612618613dd8565b5b6040519080825280601f01601f19166020018201604052801561264b5781602001600182028036833780820191505090505b5090505b600085146126d8576001826126649190613b4b565b9150600a856126739190613ceb565b603061267f9190613a6a565b60f81b81838151811061269557612694613da9565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126d19190613ac0565b945061264f565b8093505050505b919050565b6060600082519050600081141561270d5760405180602001604052806000815250915050612877565b6000600360028361271e9190613a6a565b6127289190613ac0565b60046127349190613af1565b905060006020826127459190613a6a565b67ffffffffffffffff81111561275e5761275d613dd8565b5b6040519080825280601f01601f1916602001820160405280156127905781602001600182028036833780820191505090505b509050600060405180606001604052806040815260200161449e604091399050600181016020830160005b868110156128345760038101905062ffffff818a015116603f8160121c168401518060081b905060ff603f83600c1c1686015116810190508060081b905060ff603f8360061c1686015116810190508060081b905060ff603f831686015116810190508060e01b905080845260048401935050506127bb565b50600386066001811461284e576002811461285e57612869565b613d3d60f01b6002830352612869565b603d60f81b60018303525b508484525050819450505050505b919050565b505050565b61288b8383612aa6565b612898600084848461290f565b6128d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ce90613765565b60405180910390fd5b505050565b6000816040516020016128ef91906134dd565b6040516020818303038152906040528051906020012060001c9050919050565b60006129308473ffffffffffffffffffffffffffffffffffffffff16612c74565b15612a99578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612959611f56565b8786866040518563ffffffff1660e01b815260040161297b94939291906136dc565b602060405180830381600087803b15801561299557600080fd5b505af19250505080156129c657506040513d601f19601f820116820180604052508101906129c39190612fe8565b60015b612a49573d80600081146129f6576040519150601f19603f3d011682016040523d82523d6000602084013e6129fb565b606091505b50600081511415612a41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3890613765565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612a9e565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612b16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0d906138a5565b60405180910390fd5b612b1f81611eea565b15612b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b56906137a5565b60405180910390fd5b612b6b6000838361287c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612bbb9190613a6a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b604051806101a00160405280600d905b6060815260200190600190039081612c975790505090565b6000612cc2612cbd846139c5565b6139a0565b905082815260208101848484011115612cde57612cdd613e0c565b5b612ce9848285613bf3565b509392505050565b6000612d04612cff846139f6565b6139a0565b905082815260208101848484011115612d2057612d1f613e0c565b5b612d2b848285613c02565b509392505050565b600081359050612d4281614441565b92915050565b600081359050612d5781614458565b92915050565b600081359050612d6c8161446f565b92915050565b600081519050612d818161446f565b92915050565b600082601f830112612d9c57612d9b613e07565b5b8135612dac848260208601612caf565b91505092915050565b600082601f830112612dca57612dc9613e07565b5b8151612dda848260208601612cf1565b91505092915050565b600081359050612df281614486565b92915050565b600060208284031215612e0e57612e0d613e16565b5b6000612e1c84828501612d33565b91505092915050565b60008060408385031215612e3c57612e3b613e16565b5b6000612e4a85828601612d33565b9250506020612e5b85828601612d33565b9150509250929050565b600080600060608486031215612e7e57612e7d613e16565b5b6000612e8c86828701612d33565b9350506020612e9d86828701612d33565b9250506040612eae86828701612de3565b9150509250925092565b60008060008060808587031215612ed257612ed1613e16565b5b6000612ee087828801612d33565b9450506020612ef187828801612d33565b9350506040612f0287828801612de3565b925050606085013567ffffffffffffffff811115612f2357612f22613e11565b5b612f2f87828801612d87565b91505092959194509250565b60008060408385031215612f5257612f51613e16565b5b6000612f6085828601612d33565b9250506020612f7185828601612d48565b9150509250929050565b60008060408385031215612f9257612f91613e16565b5b6000612fa085828601612d33565b9250506020612fb185828601612de3565b9150509250929050565b600060208284031215612fd157612fd0613e16565b5b6000612fdf84828501612d5d565b91505092915050565b600060208284031215612ffe57612ffd613e16565b5b600061300c84828501612d72565b91505092915050565b60006020828403121561302b5761302a613e16565b5b600082015167ffffffffffffffff81111561304957613048613e11565b5b61305584828501612db5565b91505092915050565b60006020828403121561307457613073613e16565b5b600061308284828501612de3565b91505092915050565b61309481613b7f565b82525050565b6130a381613b91565b82525050565b60006130b482613a27565b6130be8185613a3d565b93506130ce818560208601613c02565b6130d781613e1b565b840191505092915050565b60006130ed82613a32565b6130f78185613a4e565b9350613107818560208601613c02565b61311081613e1b565b840191505092915050565b600061312682613a32565b6131308185613a5f565b9350613140818560208601613c02565b80840191505092915050565b6000613159601083613a5f565b915061316482613e2c565b601082019050919050565b600061317c603283613a4e565b915061318782613e55565b604082019050919050565b600061319f602683613a4e565b91506131aa82613ea4565b604082019050919050565b60006131c2601c83613a4e565b91506131cd82613ef3565b602082019050919050565b60006131e5602483613a4e565b91506131f082613f1c565b604082019050919050565b6000613208601983613a4e565b915061321382613f6b565b602082019050919050565b600061322b602c83613a4e565b915061323682613f94565b604082019050919050565b600061324e600c83613a4e565b915061325982613fe3565b602082019050919050565b6000613271600183613a5f565b915061327c8261400c565b600182019050919050565b6000613294603883613a4e565b915061329f82614035565b604082019050919050565b60006132b7602a83613a4e565b91506132c282614084565b604082019050919050565b60006132da602983613a4e565b91506132e5826140d3565b604082019050919050565b60006132fd600283613a5f565b915061330882614122565b600282019050919050565b6000613320600783613a5f565b915061332b8261414b565b600782019050919050565b6000613343600f83613a5f565b915061334e82614174565b600f82019050919050565b6000613366602083613a4e565b91506133718261419d565b602082019050919050565b6000613389602c83613a4e565b9150613394826141c6565b604082019050919050565b60006133ac602083613a4e565b91506133b782614215565b602082019050919050565b60006133cf601083613a4e565b91506133da8261423e565b602082019050919050565b60006133f2602983613a4e565b91506133fd82614267565b604082019050919050565b6000613415602183613a4e565b9150613420826142b6565b604082019050919050565b6000613438607c83613a5f565b915061344382614305565b607c82019050919050565b600061345b601d83613a5f565b9150613466826143a0565b601d82019050919050565b600061347e600f83613a5f565b9150613489826143c9565b600f82019050919050565b60006134a1603183613a4e565b91506134ac826143f2565b604082019050919050565b6134c081613be9565b82525050565b6134d76134d282613be9565b613ce1565b82525050565b60006134e9828461311b565b915081905092915050565b6000613500828861311b565b915061350c828761311b565b9150613518828661311b565b9150613524828561311b565b9150613530828461311b565b91508190509695505050505050565b600061354b828c61311b565b9150613557828b61311b565b9150613563828a61311b565b915061356f828961311b565b915061357b828861311b565b9150613587828761311b565b9150613593828661311b565b915061359f828561311b565b91506135ab828461311b565b91508190509a9950505050505050505050565b60006135ca828561311b565b91506135d582613264565b91506135e1828461311b565b91508190509392505050565b60006135f9828561311b565b915061360582846134c6565b6020820191508190509392505050565b60006136208261314c565b915061362c828561311b565b915061363782613471565b9150613643828461311b565b915061364e82613313565b91508190509392505050565b600061366582613336565b9150613671828561311b565b915061367c8261342b565b9150613688828461311b565b9150613693826132f0565b91508190509392505050565b60006136aa8261344e565b91506136b6828461311b565b915081905092915050565b60006020820190506136d6600083018461308b565b92915050565b60006080820190506136f1600083018761308b565b6136fe602083018661308b565b61370b60408301856134b7565b818103606083015261371d81846130a9565b905095945050505050565b600060208201905061373d600083018461309a565b92915050565b6000602082019050818103600083015261375d81846130e2565b905092915050565b6000602082019050818103600083015261377e8161316f565b9050919050565b6000602082019050818103600083015261379e81613192565b9050919050565b600060208201905081810360008301526137be816131b5565b9050919050565b600060208201905081810360008301526137de816131d8565b9050919050565b600060208201905081810360008301526137fe816131fb565b9050919050565b6000602082019050818103600083015261381e8161321e565b9050919050565b6000602082019050818103600083015261383e81613241565b9050919050565b6000602082019050818103600083015261385e81613287565b9050919050565b6000602082019050818103600083015261387e816132aa565b9050919050565b6000602082019050818103600083015261389e816132cd565b9050919050565b600060208201905081810360008301526138be81613359565b9050919050565b600060208201905081810360008301526138de8161337c565b9050919050565b600060208201905081810360008301526138fe8161339f565b9050919050565b6000602082019050818103600083015261391e816133c2565b9050919050565b6000602082019050818103600083015261393e816133e5565b9050919050565b6000602082019050818103600083015261395e81613408565b9050919050565b6000602082019050818103600083015261397e81613494565b9050919050565b600060208201905061399a60008301846134b7565b92915050565b60006139aa6139bb565b90506139b68282613c67565b919050565b6000604051905090565b600067ffffffffffffffff8211156139e0576139df613dd8565b5b6139e982613e1b565b9050602081019050919050565b600067ffffffffffffffff821115613a1157613a10613dd8565b5b613a1a82613e1b565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a7582613be9565b9150613a8083613be9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ab557613ab4613d1c565b5b828201905092915050565b6000613acb82613be9565b9150613ad683613be9565b925082613ae657613ae5613d4b565b5b828204905092915050565b6000613afc82613be9565b9150613b0783613be9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b4057613b3f613d1c565b5b828202905092915050565b6000613b5682613be9565b9150613b6183613be9565b925082821015613b7457613b73613d1c565b5b828203905092915050565b6000613b8a82613bc9565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c20578082015181840152602081019050613c05565b83811115613c2f576000848401525b50505050565b60006002820490506001821680613c4d57607f821691505b60208210811415613c6157613c60613d7a565b5b50919050565b613c7082613e1b565b810181811067ffffffffffffffff82111715613c8f57613c8e613dd8565b5b80604052505050565b6000613ca382613be9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cd657613cd5613d1c565b5b600182019050919050565b6000819050919050565b6000613cf682613be9565b9150613d0183613be9565b925082613d1157613d10613d4b565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f3c7465787420783d2231302220793d2200000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f636c61696d206f76657220330000000000000000000000000000000000000000600082015250565b7f2000000000000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f227d000000000000000000000000000000000000000000000000000000000000600082015250565b7f3c2f746578743e00000000000000000000000000000000000000000000000000600082015250565b7f7b226e616d65223a202242616720230000000000000000000000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f546f6b656e20494420696e76616c696400000000000000000000000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f222c20226465736372697074696f6e223a20224c6f6f742b2069732072616e6460008201527f6f6d697a656420616476656e747572657220676561722067656e65726174656460208201527f20616e642073746f726564206f6e20636861696e2e222c2022696d616765223a60408201527f2022646174613a696d6167652f7376672b786d6c3b6261736536342c00000000606082015250565b7f646174613a6170706c69636174696f6e2f6a736f6e3b6261736536342c000000600082015250565b7f2220636c6173733d2262617365223e0000000000000000000000000000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b61444a81613b7f565b811461445557600080fd5b50565b61446181613b91565b811461446c57600080fd5b50565b61447881613b9d565b811461448357600080fd5b50565b61448f81613be9565b811461449a57600080fd5b5056fe4142434445464748494a4b4c4d4e4f505152535455565758595a6162636465666768696a6b6c6d6e6f707172737475767778797a303132333435363738392b2f3c73766720786d6c6e733d22687474703a2f2f7777772e77332e6f72672f323030302f73766722207072657365727665417370656374526174696f3d22784d696e594d696e206d656574222076696577426f783d223020302033353020333530223e3c7374796c653e2e62617365207b2066696c6c3a2077686974653b20666f6e742d66616d696c793a2073657269663b20666f6e742d73697a653a20313470783b207d3c2f7374796c653e3c726563742077696474683d223130302522206865696768743d2231303025222066696c6c3d22626c61636b22202f3ea2646970667358221220049c1afefd43308ebdaaab4dd89067a0a6659bca23aad7c26f6336f74c46808764736f6c63430008070033
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.