ERC-721
Overview
Max Total Supply
153 PIXEL
Holders
65
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 PIXELLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
nftattoo
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; contract nftattoo is ERC721, Ownable { bool public isActive = true; string private _baseURIextended; uint16 private totalSupply_ = 0; uint16 private nbFreeMint = 0; address payable public immutable shareholderAddress; uint16[] private forbiddenPixels; mapping(uint16 => uint16) idToPixel; mapping(address => uint16[]) ownerToPixel; uint16[] lstSold; constructor(address payable shareholderAddress_) ERC721("The Non-Fungible Tattoo", "PIXEL") { require(shareholderAddress_ != address(0)); shareholderAddress = shareholderAddress_; _baseURIextended = "ipfs://"; totalSupply_ = 1; _safeMint(shareholderAddress_, 0); forbiddenPixels.push(271); forbiddenPixels.push(272); forbiddenPixels.push(273); forbiddenPixels.push(331); forbiddenPixels.push(332); forbiddenPixels.push(333); forbiddenPixels.push(391); forbiddenPixels.push(392); forbiddenPixels.push(393); forbiddenPixels.push(106); forbiddenPixels.push(107); forbiddenPixels.push(740); forbiddenPixels.push(741); forbiddenPixels.push(800); forbiddenPixels.push(801); forbiddenPixels.push(1542); forbiddenPixels.push(1602); forbiddenPixels.push(1945); forbiddenPixels.push(1946); forbiddenPixels.push(1947); forbiddenPixels.push(2005); forbiddenPixels.push(2006); forbiddenPixels.push(2007); forbiddenPixels.push(2881); forbiddenPixels.push(2882); forbiddenPixels.push(2941); forbiddenPixels.push(2942); } function setBaseURI(string memory baseURI_) external onlyOwner() { _baseURIextended = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function totalSupply() public view returns (uint16) { return totalSupply_; } function setNbFree(uint16 nbFree) external onlyOwner { nbFreeMint = nbFree; } function setSaleState(bool newState) public onlyOwner { isActive = newState; } function mint(uint16[] memory pixels) public payable { require(isActive, "Sale must be active to mint pixels"); require( totalSupply_ + pixels.length <= 4774, "Purchase would exceed max supply of tokens" ); require( 0.069 ether * pixels.length <= msg.value, "Ether value sent is not correct" ); for (uint16 i = 0; i < pixels.length; i++) { for (uint8 j = 0; j < forbiddenPixels.length; j++) { require(pixels[i] != forbiddenPixels[j], "This pixel is not for sale!"); } uint16 mintIndex = totalSupply_ + 1; if (totalSupply_ < 4774) { idToPixel[mintIndex] = pixels[i]; ownerToPixel[msg.sender].push(pixels[i]); lstSold.push(pixels[i]); totalSupply_ = totalSupply_ + 1; _safeMint(msg.sender, pixels[i]); } } } function withdraw() public onlyOwner { uint256 balance = address(this).balance; Address.sendValue(shareholderAddress, balance); } function soldPixels() public view returns (uint16[] memory) { return lstSold; } function owned(address ownerAddress) public view returns (uint16[] memory) { return ownerToPixel[ownerAddress]; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; 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; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"shareholderAddress_","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16[]","name":"pixels","type":"uint16[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"ownerAddress","type":"address"}],"name":"owned","outputs":[{"internalType":"uint16[]","name":"","type":"uint16[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"nbFree","type":"uint16"}],"name":"setNbFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"shareholderAddress","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"soldPixels","outputs":[{"internalType":"uint16[]","name":"","type":"uint16[]"}],"stateMutability":"view","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":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040526001600660146101000a81548160ff0219169083151502179055506000600860006101000a81548161ffff021916908361ffff1602179055506000600860026101000a81548161ffff021916908361ffff1602179055503480156200006857600080fd5b50604051620054803803806200548083398181016040528101906200008e9190620010ac565b6040518060400160405280601781526020017f546865204e6f6e2d46756e6769626c6520546174746f6f0000000000000000008152506040518060400160405280600581526020017f504958454c00000000000000000000000000000000000000000000000000000081525081600090805190602001906200011292919062000fce565b5080600190805190602001906200012b92919062000fce565b5050506200014e6200014262000a4860201b60201c565b62000a5060201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200018957600080fd5b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff1660601b815250506040518060400160405280600781526020017f697066733a2f2f00000000000000000000000000000000000000000000000000815250600790805190602001906200020d92919062000fce565b506001600860006101000a81548161ffff021916908361ffff1602179055506200023f81600062000b1660201b60201c565b600961010f90806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600961011090806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600961011190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600961014b90806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600961014c90806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600961014d90806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600961018790806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600961018890806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600961018990806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff1602179055506009606a90806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff1602179055506009606b90806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff16021790555060096102e490806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff16021790555060096102e590806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600961032090806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600961032190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600961060690806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600961064290806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600961079990806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600961079a90806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600961079b90806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff16021790555060096107d590806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff16021790555060096107d690806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff16021790555060096107d790806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff1602179055506009610b4190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff1602179055506009610b4290806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff1602179055506009610b7d90806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff1602179055506009610b7e90806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff1602179055505062001524565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b62000b3882826040518060200160405280600081525062000b3c60201b60201c565b5050565b62000b4e838362000baa60201b60201c565b62000b63600084848462000d9060201b60201c565b62000ba5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b9c90620012a7565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000c1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c1490620012eb565b60405180910390fd5b62000c2e8162000f4a60201b60201c565b1562000c71576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000c6890620012c9565b60405180910390fd5b62000c856000838362000fb660201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000cd791906200133a565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600062000dbe8473ffffffffffffffffffffffffffffffffffffffff1662000fbb60201b6200195b1760201c565b1562000f3d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000df062000a4860201b60201c565b8786866040518563ffffffff1660e01b815260040162000e14949392919062001253565b602060405180830381600087803b15801562000e2f57600080fd5b505af192505050801562000e6357506040513d601f19601f8201168201806040525081019062000e609190620010d8565b60015b62000eec573d806000811462000e96576040519150601f19603f3d011682016040523d82523d6000602084013e62000e9b565b606091505b5060008151141562000ee4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000edb90620012a7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000f42565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b82805462000fdc906200144b565b90600052602060002090601f0160209004810192826200100057600085556200104c565b82601f106200101b57805160ff19168380011785556200104c565b828001600101855582156200104c579182015b828111156200104b5782518255916020019190600101906200102e565b5b5090506200105b91906200105f565b5090565b5b808211156200107a57600081600090555060010162001060565b5090565b6000815190506200108f81620014f0565b92915050565b600081519050620010a6816200150a565b92915050565b600060208284031215620010bf57600080fd5b6000620010cf848285016200107e565b91505092915050565b600060208284031215620010eb57600080fd5b6000620010fb8482850162001095565b91505092915050565b6200110f8162001397565b82525050565b600062001122826200130d565b6200112e818562001318565b93506200114081856020860162001415565b6200114b81620014df565b840191505092915050565b60006200116560328362001329565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000620011cd601c8362001329565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006200120f60208362001329565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6200124d816200140b565b82525050565b60006080820190506200126a600083018762001104565b62001279602083018662001104565b62001288604083018562001242565b81810360608301526200129c818462001115565b905095945050505050565b60006020820190508181036000830152620012c28162001156565b9050919050565b60006020820190508181036000830152620012e481620011be565b9050919050565b60006020820190508181036000830152620013068162001200565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600062001347826200140b565b915062001354836200140b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200138c576200138b62001481565b5b828201905092915050565b6000620013a482620013eb565b9050919050565b6000620013b882620013eb565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200143557808201518184015260208101905062001418565b8381111562001445576000848401525b50505050565b600060028204905060018216806200146457607f821691505b602082108114156200147b576200147a620014b0565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b620014fb81620013ab565b81146200150757600080fd5b50565b6200151581620013bf565b81146200152157600080fd5b50565b60805160601c613f366200154a60003960008181610a3b0152610db70152613f366000f3fe6080604052600436106101815760003560e01c8063715018a6116100d1578063b1ab93171161008a578063c87b56dd11610064578063c87b56dd1461054d578063d620f4cf1461058a578063e985e9c5146105b3578063f2fde38b146105f057610181565b8063b1ab9317146104be578063b88d4fde146104fb578063c4e370951461052457610181565b8063715018a6146103e15780638da5cb5b146103f8578063943d40e71461042357806395d89b411461044e5780639c5e92fb14610479578063a22cb4651461049557610181565b806323b872dd1161013e57806355f804b31161011857806355f804b31461031357806358afbec41461033c5780636352211e1461036757806370a08231146103a457610181565b806323b872dd146102aa5780633ccfd60b146102d357806342842e0e146102ea57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806322f3e2d41461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612b0f565b610619565b6040516101ba9190613618565b60405180910390f35b3480156101cf57600080fd5b506101d86106fb565b6040516101e59190613633565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612bcb565b61078d565b6040516102229190613574565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612a69565b610812565b005b34801561026057600080fd5b5061026961092a565b6040516102769190613915565b60405180910390f35b34801561028b57600080fd5b50610294610942565b6040516102a19190613618565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612963565b610955565b005b3480156102df57600080fd5b506102e86109b5565b005b3480156102f657600080fd5b50610311600480360381019061030c9190612963565b610a63565b005b34801561031f57600080fd5b5061033a60048036038101906103359190612b61565b610a83565b005b34801561034857600080fd5b50610351610b19565b60405161035e91906135f6565b60405180910390f35b34801561037357600080fd5b5061038e60048036038101906103899190612bcb565b610b99565b60405161039b9190613574565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c691906128fe565b610c4b565b6040516103d89190613930565b60405180910390f35b3480156103ed57600080fd5b506103f6610d03565b005b34801561040457600080fd5b5061040d610d8b565b60405161041a9190613574565b60405180910390f35b34801561042f57600080fd5b50610438610db5565b604051610445919061358f565b60405180910390f35b34801561045a57600080fd5b50610463610dd9565b6040516104709190613633565b60405180910390f35b610493600480360381019061048e9190612aa5565b610e6b565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190612a2d565b611351565b005b3480156104ca57600080fd5b506104e560048036038101906104e091906128fe565b6114d2565b6040516104f291906135f6565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d91906129b2565b611591565b005b34801561053057600080fd5b5061054b60048036038101906105469190612ae6565b6115f3565b005b34801561055957600080fd5b50610574600480360381019061056f9190612bcb565b61168c565b6040516105819190613633565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190612ba2565b611733565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190612927565b6117cf565b6040516105e79190613618565b60405180910390f35b3480156105fc57600080fd5b50610617600480360381019061061291906128fe565b611863565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106f457506106f38261196e565b5b9050919050565b60606000805461070a90613cbf565b80601f016020809104026020016040519081016040528092919081815260200182805461073690613cbf565b80156107835780601f1061075857610100808354040283529160200191610783565b820191906000526020600020905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b6000610798826119d8565b6107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce90613835565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081d82610b99565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561088e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610885906138b5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108ad611a44565b73ffffffffffffffffffffffffffffffffffffffff1614806108dc57506108db816108d6611a44565b6117cf565b5b61091b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091290613775565b60405180910390fd5b6109258383611a4c565b505050565b6000600860009054906101000a900461ffff16905090565b600660149054906101000a900460ff1681565b610966610960611a44565b82611b05565b6109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c906138d5565b60405180910390fd5b6109b0838383611be3565b505050565b6109bd611a44565b73ffffffffffffffffffffffffffffffffffffffff166109db610d8b565b73ffffffffffffffffffffffffffffffffffffffff1614610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890613855565b60405180910390fd5b6000479050610a607f000000000000000000000000000000000000000000000000000000000000000082611e3f565b50565b610a7e83838360405180602001604052806000815250611591565b505050565b610a8b611a44565b73ffffffffffffffffffffffffffffffffffffffff16610aa9610d8b565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613855565b60405180910390fd5b8060079080519060200190610b15929190612677565b5050565b6060600c805480602002602001604051908101604052809291908181526020018280548015610b8f57602002820191906000526020600020906000905b82829054906101000a900461ffff1661ffff1681526020019060020190602082600101049283019260010382029150808411610b565790505b5050505050905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c39906137b5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613795565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d0b611a44565b73ffffffffffffffffffffffffffffffffffffffff16610d29610d8b565b73ffffffffffffffffffffffffffffffffffffffff1614610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7690613855565b60405180910390fd5b610d896000611f33565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000000000000000000000000000000000000000000081565b606060018054610de890613cbf565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1490613cbf565b8015610e615780601f10610e3657610100808354040283529160200191610e61565b820191906000526020600020905b815481529060010190602001808311610e4457829003601f168201915b5050505050905090565b600660149054906101000a900460ff16610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb1906138f5565b60405180910390fd5b6112a68151600860009054906101000a900461ffff1661ffff16610ede9190613ac7565b1115610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f16906137d5565b60405180910390fd5b34815166f5232269808000610f349190613b4e565b1115610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c906136f5565b60405180910390fd5b60005b81518161ffff16101561134d5760005b6009805490508160ff16101561109a5760098160ff1681548110610fd5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff16838361ffff168151811061103a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161ffff161415611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90613815565b60405180910390fd5b808061109290613d65565b915050610f88565b5060006001600860009054906101000a900461ffff166110ba9190613a8f565b90506112a6600860009054906101000a900461ffff1661ffff16101561133957828261ffff1681518110611117577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600a60008361ffff1661ffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff160217905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020838361ffff16815181106111d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600c838361ffff168151811061125e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff1602179055506001600860009054906101000a900461ffff166112ca9190613a8f565b600860006101000a81548161ffff021916908361ffff16021790555061133833848461ffff1681518110611327577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161ffff16611ff9565b5b50808061134590613cf1565b915050610f78565b5050565b611359611a44565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be906136d5565b60405180910390fd5b80600560006113d4611a44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611481611a44565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114c69190613618565b60405180910390a35050565b6060600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561158557602002820191906000526020600020906000905b82829054906101000a900461ffff1661ffff168152602001906002019060208260010104928301926001038202915080841161154c5790505b50505050509050919050565b6115a261159c611a44565b83611b05565b6115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d8906138d5565b60405180910390fd5b6115ed84848484612017565b50505050565b6115fb611a44565b73ffffffffffffffffffffffffffffffffffffffff16611619610d8b565b73ffffffffffffffffffffffffffffffffffffffff161461166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690613855565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6060611697826119d8565b6116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613895565b60405180910390fd5b60006116e0612073565b90506000815111611700576040518060200160405280600081525061172b565b8061170a84612105565b60405160200161171b92919061353b565b6040516020818303038152906040525b915050919050565b61173b611a44565b73ffffffffffffffffffffffffffffffffffffffff16611759610d8b565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690613855565b60405180910390fd5b80600860026101000a81548161ffff021916908361ffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61186b611a44565b73ffffffffffffffffffffffffffffffffffffffff16611889610d8b565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690613855565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690613675565b60405180910390fd5b61195881611f33565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611abf83610b99565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b10826119d8565b611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4690613755565b60405180910390fd5b6000611b5a83610b99565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bc957508373ffffffffffffffffffffffffffffffffffffffff16611bb18461078d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bda5750611bd981856117cf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c0382610b99565b73ffffffffffffffffffffffffffffffffffffffff1614611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5090613875565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc0906136b5565b60405180910390fd5b611cd48383836122b2565b611cdf600082611a4c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d2f9190613ba8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d869190613ac7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7990613735565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611ea89061355f565b60006040518083038185875af1925050503d8060008114611ee5576040519150601f19603f3d011682016040523d82523d6000602084013e611eea565b606091505b5050905080611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2590613715565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120138282604051806020016040528060008152506122b7565b5050565b612022848484611be3565b61202e84848484612312565b61206d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206490613655565b60405180910390fd5b50505050565b60606007805461208290613cbf565b80601f01602080910402602001604051908101604052809291908181526020018280546120ae90613cbf565b80156120fb5780601f106120d0576101008083540402835291602001916120fb565b820191906000526020600020905b8154815290600101906020018083116120de57829003601f168201915b5050505050905090565b6060600082141561214d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122ad565b600082905060005b6000821461217f57808061216890613d1c565b915050600a826121789190613b1d565b9150612155565b60008167ffffffffffffffff8111156121c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121f35781602001600182028036833780820191505090505b5090505b600085146122a65760018261220c9190613ba8565b9150600a8561221b9190613d8f565b60306122279190613ac7565b60f81b818381518110612263577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561229f9190613b1d565b94506121f7565b8093505050505b919050565b505050565b6122c183836124a9565b6122ce6000848484612312565b61230d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230490613655565b60405180910390fd5b505050565b60006123338473ffffffffffffffffffffffffffffffffffffffff1661195b565b1561249c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261235c611a44565b8786866040518563ffffffff1660e01b815260040161237e94939291906135aa565b602060405180830381600087803b15801561239857600080fd5b505af19250505080156123c957506040513d601f19601f820116820180604052508101906123c69190612b38565b60015b61244c573d80600081146123f9576040519150601f19603f3d011682016040523d82523d6000602084013e6123fe565b606091505b50600081511415612444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243b90613655565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124a1565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612519576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612510906137f5565b60405180910390fd5b612522816119d8565b15612562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255990613695565b60405180910390fd5b61256e600083836122b2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125be9190613ac7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461268390613cbf565b90600052602060002090601f0160209004810192826126a557600085556126ec565b82601f106126be57805160ff19168380011785556126ec565b828001600101855582156126ec579182015b828111156126eb5782518255916020019190600101906126d0565b5b5090506126f991906126fd565b5090565b5b808211156127165760008160009055506001016126fe565b5090565b600061272d6127288461397c565b61394b565b9050808382526020820190508285602086028201111561274c57600080fd5b60005b8581101561277c578161276288826128d4565b84526020840193506020830192505060018101905061274f565b5050509392505050565b6000612799612794846139a8565b61394b565b9050828152602081018484840111156127b157600080fd5b6127bc848285613c7d565b509392505050565b60006127d76127d2846139d8565b61394b565b9050828152602081018484840111156127ef57600080fd5b6127fa848285613c7d565b509392505050565b60008135905061281181613e8d565b92915050565b600082601f83011261282857600080fd5b813561283884826020860161271a565b91505092915050565b60008135905061285081613ea4565b92915050565b60008135905061286581613ebb565b92915050565b60008151905061287a81613ebb565b92915050565b600082601f83011261289157600080fd5b81356128a1848260208601612786565b91505092915050565b600082601f8301126128bb57600080fd5b81356128cb8482602086016127c4565b91505092915050565b6000813590506128e381613ed2565b92915050565b6000813590506128f881613ee9565b92915050565b60006020828403121561291057600080fd5b600061291e84828501612802565b91505092915050565b6000806040838503121561293a57600080fd5b600061294885828601612802565b925050602061295985828601612802565b9150509250929050565b60008060006060848603121561297857600080fd5b600061298686828701612802565b935050602061299786828701612802565b92505060406129a8868287016128e9565b9150509250925092565b600080600080608085870312156129c857600080fd5b60006129d687828801612802565b94505060206129e787828801612802565b93505060406129f8878288016128e9565b925050606085013567ffffffffffffffff811115612a1557600080fd5b612a2187828801612880565b91505092959194509250565b60008060408385031215612a4057600080fd5b6000612a4e85828601612802565b9250506020612a5f85828601612841565b9150509250929050565b60008060408385031215612a7c57600080fd5b6000612a8a85828601612802565b9250506020612a9b858286016128e9565b9150509250929050565b600060208284031215612ab757600080fd5b600082013567ffffffffffffffff811115612ad157600080fd5b612add84828501612817565b91505092915050565b600060208284031215612af857600080fd5b6000612b0684828501612841565b91505092915050565b600060208284031215612b2157600080fd5b6000612b2f84828501612856565b91505092915050565b600060208284031215612b4a57600080fd5b6000612b588482850161286b565b91505092915050565b600060208284031215612b7357600080fd5b600082013567ffffffffffffffff811115612b8d57600080fd5b612b99848285016128aa565b91505092915050565b600060208284031215612bb457600080fd5b6000612bc2848285016128d4565b91505092915050565b600060208284031215612bdd57600080fd5b6000612beb848285016128e9565b91505092915050565b6000612c00838361350e565b60208301905092915050565b612c1581613bee565b82525050565b612c2481613bdc565b82525050565b6000612c3582613a18565b612c3f8185613a46565b9350612c4a83613a08565b8060005b83811015612c7b578151612c628882612bf4565b9750612c6d83613a39565b925050600181019050612c4e565b5085935050505092915050565b612c9181613c00565b82525050565b6000612ca282613a23565b612cac8185613a57565b9350612cbc818560208601613c8c565b612cc581613e7c565b840191505092915050565b6000612cdb82613a2e565b612ce58185613a73565b9350612cf5818560208601613c8c565b612cfe81613e7c565b840191505092915050565b6000612d1482613a2e565b612d1e8185613a84565b9350612d2e818560208601613c8c565b80840191505092915050565b6000612d47603283613a73565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612dad602683613a73565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e13601c83613a73565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612e53602483613a73565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612eb9601983613a73565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612ef9601f83613a73565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000612f39603a83613a73565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000612f9f601d83613a73565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b6000612fdf602c83613a73565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613045603883613a73565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006130ab602a83613a73565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613111602983613a73565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613177602a83613a73565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620746f6b656e73000000000000000000000000000000000000000000006020830152604082019050919050565b60006131dd602083613a73565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061321d601b83613a73565b91507f5468697320706978656c206973206e6f7420666f722073616c652100000000006000830152602082019050919050565b600061325d602c83613a73565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132c3602083613a73565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613303602983613a73565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613369602f83613a73565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006133cf602183613a73565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613435600083613a68565b9150600082019050919050565b600061344f603183613a73565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006134b5602283613a73565b91507f53616c65206d7573742062652061637469766520746f206d696e74207069786560008301527f6c730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61351781613c38565b82525050565b61352681613c38565b82525050565b61353581613c66565b82525050565b60006135478285612d09565b91506135538284612d09565b91508190509392505050565b600061356a82613428565b9150819050919050565b60006020820190506135896000830184612c1b565b92915050565b60006020820190506135a46000830184612c0c565b92915050565b60006080820190506135bf6000830187612c1b565b6135cc6020830186612c1b565b6135d9604083018561352c565b81810360608301526135eb8184612c97565b905095945050505050565b600060208201905081810360008301526136108184612c2a565b905092915050565b600060208201905061362d6000830184612c88565b92915050565b6000602082019050818103600083015261364d8184612cd0565b905092915050565b6000602082019050818103600083015261366e81612d3a565b9050919050565b6000602082019050818103600083015261368e81612da0565b9050919050565b600060208201905081810360008301526136ae81612e06565b9050919050565b600060208201905081810360008301526136ce81612e46565b9050919050565b600060208201905081810360008301526136ee81612eac565b9050919050565b6000602082019050818103600083015261370e81612eec565b9050919050565b6000602082019050818103600083015261372e81612f2c565b9050919050565b6000602082019050818103600083015261374e81612f92565b9050919050565b6000602082019050818103600083015261376e81612fd2565b9050919050565b6000602082019050818103600083015261378e81613038565b9050919050565b600060208201905081810360008301526137ae8161309e565b9050919050565b600060208201905081810360008301526137ce81613104565b9050919050565b600060208201905081810360008301526137ee8161316a565b9050919050565b6000602082019050818103600083015261380e816131d0565b9050919050565b6000602082019050818103600083015261382e81613210565b9050919050565b6000602082019050818103600083015261384e81613250565b9050919050565b6000602082019050818103600083015261386e816132b6565b9050919050565b6000602082019050818103600083015261388e816132f6565b9050919050565b600060208201905081810360008301526138ae8161335c565b9050919050565b600060208201905081810360008301526138ce816133c2565b9050919050565b600060208201905081810360008301526138ee81613442565b9050919050565b6000602082019050818103600083015261390e816134a8565b9050919050565b600060208201905061392a600083018461351d565b92915050565b6000602082019050613945600083018461352c565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561397257613971613e4d565b5b8060405250919050565b600067ffffffffffffffff82111561399757613996613e4d565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139c3576139c2613e4d565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156139f3576139f2613e4d565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a9a82613c38565b9150613aa583613c38565b92508261ffff03821115613abc57613abb613dc0565b5b828201905092915050565b6000613ad282613c66565b9150613add83613c66565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b1257613b11613dc0565b5b828201905092915050565b6000613b2882613c66565b9150613b3383613c66565b925082613b4357613b42613def565b5b828204905092915050565b6000613b5982613c66565b9150613b6483613c66565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b9d57613b9c613dc0565b5b828202905092915050565b6000613bb382613c66565b9150613bbe83613c66565b925082821015613bd157613bd0613dc0565b5b828203905092915050565b6000613be782613c46565b9050919050565b6000613bf982613c46565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613caa578082015181840152602081019050613c8f565b83811115613cb9576000848401525b50505050565b60006002820490506001821680613cd757607f821691505b60208210811415613ceb57613cea613e1e565b5b50919050565b6000613cfc82613c38565b915061ffff821415613d1157613d10613dc0565b5b600182019050919050565b6000613d2782613c66565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d5a57613d59613dc0565b5b600182019050919050565b6000613d7082613c70565b915060ff821415613d8457613d83613dc0565b5b600182019050919050565b6000613d9a82613c66565b9150613da583613c66565b925082613db557613db4613def565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613e9681613bdc565b8114613ea157600080fd5b50565b613ead81613c00565b8114613eb857600080fd5b50565b613ec481613c0c565b8114613ecf57600080fd5b50565b613edb81613c38565b8114613ee657600080fd5b50565b613ef281613c66565b8114613efd57600080fd5b5056fea264697066735822122004adc14194f45607eeccf50ccee454094d8508233862ac2b18d6a79cf1f9ec6764736f6c63430008000033000000000000000000000000cb72374610296d8cdc2198dc281ae04bf11a2d66
Deployed Bytecode
0x6080604052600436106101815760003560e01c8063715018a6116100d1578063b1ab93171161008a578063c87b56dd11610064578063c87b56dd1461054d578063d620f4cf1461058a578063e985e9c5146105b3578063f2fde38b146105f057610181565b8063b1ab9317146104be578063b88d4fde146104fb578063c4e370951461052457610181565b8063715018a6146103e15780638da5cb5b146103f8578063943d40e71461042357806395d89b411461044e5780639c5e92fb14610479578063a22cb4651461049557610181565b806323b872dd1161013e57806355f804b31161011857806355f804b31461031357806358afbec41461033c5780636352211e1461036757806370a08231146103a457610181565b806323b872dd146102aa5780633ccfd60b146102d357806342842e0e146102ea57610181565b806301ffc9a71461018657806306fdde03146101c3578063081812fc146101ee578063095ea7b31461022b57806318160ddd1461025457806322f3e2d41461027f575b600080fd5b34801561019257600080fd5b506101ad60048036038101906101a89190612b0f565b610619565b6040516101ba9190613618565b60405180910390f35b3480156101cf57600080fd5b506101d86106fb565b6040516101e59190613633565b60405180910390f35b3480156101fa57600080fd5b5061021560048036038101906102109190612bcb565b61078d565b6040516102229190613574565b60405180910390f35b34801561023757600080fd5b50610252600480360381019061024d9190612a69565b610812565b005b34801561026057600080fd5b5061026961092a565b6040516102769190613915565b60405180910390f35b34801561028b57600080fd5b50610294610942565b6040516102a19190613618565b60405180910390f35b3480156102b657600080fd5b506102d160048036038101906102cc9190612963565b610955565b005b3480156102df57600080fd5b506102e86109b5565b005b3480156102f657600080fd5b50610311600480360381019061030c9190612963565b610a63565b005b34801561031f57600080fd5b5061033a60048036038101906103359190612b61565b610a83565b005b34801561034857600080fd5b50610351610b19565b60405161035e91906135f6565b60405180910390f35b34801561037357600080fd5b5061038e60048036038101906103899190612bcb565b610b99565b60405161039b9190613574565b60405180910390f35b3480156103b057600080fd5b506103cb60048036038101906103c691906128fe565b610c4b565b6040516103d89190613930565b60405180910390f35b3480156103ed57600080fd5b506103f6610d03565b005b34801561040457600080fd5b5061040d610d8b565b60405161041a9190613574565b60405180910390f35b34801561042f57600080fd5b50610438610db5565b604051610445919061358f565b60405180910390f35b34801561045a57600080fd5b50610463610dd9565b6040516104709190613633565b60405180910390f35b610493600480360381019061048e9190612aa5565b610e6b565b005b3480156104a157600080fd5b506104bc60048036038101906104b79190612a2d565b611351565b005b3480156104ca57600080fd5b506104e560048036038101906104e091906128fe565b6114d2565b6040516104f291906135f6565b60405180910390f35b34801561050757600080fd5b50610522600480360381019061051d91906129b2565b611591565b005b34801561053057600080fd5b5061054b60048036038101906105469190612ae6565b6115f3565b005b34801561055957600080fd5b50610574600480360381019061056f9190612bcb565b61168c565b6040516105819190613633565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac9190612ba2565b611733565b005b3480156105bf57600080fd5b506105da60048036038101906105d59190612927565b6117cf565b6040516105e79190613618565b60405180910390f35b3480156105fc57600080fd5b50610617600480360381019061061291906128fe565b611863565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806106e457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106f457506106f38261196e565b5b9050919050565b60606000805461070a90613cbf565b80601f016020809104026020016040519081016040528092919081815260200182805461073690613cbf565b80156107835780601f1061075857610100808354040283529160200191610783565b820191906000526020600020905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b6000610798826119d8565b6107d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ce90613835565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061081d82610b99565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561088e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610885906138b5565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108ad611a44565b73ffffffffffffffffffffffffffffffffffffffff1614806108dc57506108db816108d6611a44565b6117cf565b5b61091b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091290613775565b60405180910390fd5b6109258383611a4c565b505050565b6000600860009054906101000a900461ffff16905090565b600660149054906101000a900460ff1681565b610966610960611a44565b82611b05565b6109a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099c906138d5565b60405180910390fd5b6109b0838383611be3565b505050565b6109bd611a44565b73ffffffffffffffffffffffffffffffffffffffff166109db610d8b565b73ffffffffffffffffffffffffffffffffffffffff1614610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2890613855565b60405180910390fd5b6000479050610a607f000000000000000000000000cb72374610296d8cdc2198dc281ae04bf11a2d6682611e3f565b50565b610a7e83838360405180602001604052806000815250611591565b505050565b610a8b611a44565b73ffffffffffffffffffffffffffffffffffffffff16610aa9610d8b565b73ffffffffffffffffffffffffffffffffffffffff1614610aff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af690613855565b60405180910390fd5b8060079080519060200190610b15929190612677565b5050565b6060600c805480602002602001604051908101604052809291908181526020018280548015610b8f57602002820191906000526020600020906000905b82829054906101000a900461ffff1661ffff1681526020019060020190602082600101049283019260010382029150808411610b565790505b5050505050905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c39906137b5565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb390613795565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d0b611a44565b73ffffffffffffffffffffffffffffffffffffffff16610d29610d8b565b73ffffffffffffffffffffffffffffffffffffffff1614610d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7690613855565b60405180910390fd5b610d896000611f33565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b7f000000000000000000000000cb72374610296d8cdc2198dc281ae04bf11a2d6681565b606060018054610de890613cbf565b80601f0160208091040260200160405190810160405280929190818152602001828054610e1490613cbf565b8015610e615780601f10610e3657610100808354040283529160200191610e61565b820191906000526020600020905b815481529060010190602001808311610e4457829003601f168201915b5050505050905090565b600660149054906101000a900460ff16610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb1906138f5565b60405180910390fd5b6112a68151600860009054906101000a900461ffff1661ffff16610ede9190613ac7565b1115610f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f16906137d5565b60405180910390fd5b34815166f5232269808000610f349190613b4e565b1115610f75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6c906136f5565b60405180910390fd5b60005b81518161ffff16101561134d5760005b6009805490508160ff16101561109a5760098160ff1681548110610fd5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002090601091828204019190066002029054906101000a900461ffff1661ffff16838361ffff168151811061103a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161ffff161415611087576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107e90613815565b60405180910390fd5b808061109290613d65565b915050610f88565b5060006001600860009054906101000a900461ffff166110ba9190613a8f565b90506112a6600860009054906101000a900461ffff1661ffff16101561133957828261ffff1681518110611117577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600a60008361ffff1661ffff16815260200190815260200160002060006101000a81548161ffff021916908361ffff160217905550600b60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020838361ffff16815181106111d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff160217905550600c838361ffff168151811061125e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190806001815401808255809150506001900390600052602060002090601091828204019190066002029091909190916101000a81548161ffff021916908361ffff1602179055506001600860009054906101000a900461ffff166112ca9190613a8f565b600860006101000a81548161ffff021916908361ffff16021790555061133833848461ffff1681518110611327577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161ffff16611ff9565b5b50808061134590613cf1565b915050610f78565b5050565b611359611a44565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113be906136d5565b60405180910390fd5b80600560006113d4611a44565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611481611a44565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516114c69190613618565b60405180910390a35050565b6060600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002080548060200260200160405190810160405280929190818152602001828054801561158557602002820191906000526020600020906000905b82829054906101000a900461ffff1661ffff168152602001906002019060208260010104928301926001038202915080841161154c5790505b50505050509050919050565b6115a261159c611a44565b83611b05565b6115e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d8906138d5565b60405180910390fd5b6115ed84848484612017565b50505050565b6115fb611a44565b73ffffffffffffffffffffffffffffffffffffffff16611619610d8b565b73ffffffffffffffffffffffffffffffffffffffff161461166f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166690613855565b60405180910390fd5b80600660146101000a81548160ff02191690831515021790555050565b6060611697826119d8565b6116d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cd90613895565b60405180910390fd5b60006116e0612073565b90506000815111611700576040518060200160405280600081525061172b565b8061170a84612105565b60405160200161171b92919061353b565b6040516020818303038152906040525b915050919050565b61173b611a44565b73ffffffffffffffffffffffffffffffffffffffff16611759610d8b565b73ffffffffffffffffffffffffffffffffffffffff16146117af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a690613855565b60405180910390fd5b80600860026101000a81548161ffff021916908361ffff16021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61186b611a44565b73ffffffffffffffffffffffffffffffffffffffff16611889610d8b565b73ffffffffffffffffffffffffffffffffffffffff16146118df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d690613855565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561194f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194690613675565b60405180910390fd5b61195881611f33565b50565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611abf83610b99565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b10826119d8565b611b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4690613755565b60405180910390fd5b6000611b5a83610b99565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bc957508373ffffffffffffffffffffffffffffffffffffffff16611bb18461078d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611bda5750611bd981856117cf565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c0382610b99565b73ffffffffffffffffffffffffffffffffffffffff1614611c59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5090613875565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611cc9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc0906136b5565b60405180910390fd5b611cd48383836122b2565b611cdf600082611a4c565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d2f9190613ba8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d869190613ac7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b80471015611e82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7990613735565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611ea89061355f565b60006040518083038185875af1925050503d8060008114611ee5576040519150601f19603f3d011682016040523d82523d6000602084013e611eea565b606091505b5050905080611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2590613715565b60405180910390fd5b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6120138282604051806020016040528060008152506122b7565b5050565b612022848484611be3565b61202e84848484612312565b61206d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206490613655565b60405180910390fd5b50505050565b60606007805461208290613cbf565b80601f01602080910402602001604051908101604052809291908181526020018280546120ae90613cbf565b80156120fb5780601f106120d0576101008083540402835291602001916120fb565b820191906000526020600020905b8154815290600101906020018083116120de57829003601f168201915b5050505050905090565b6060600082141561214d576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122ad565b600082905060005b6000821461217f57808061216890613d1c565b915050600a826121789190613b1d565b9150612155565b60008167ffffffffffffffff8111156121c1577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156121f35781602001600182028036833780820191505090505b5090505b600085146122a65760018261220c9190613ba8565b9150600a8561221b9190613d8f565b60306122279190613ac7565b60f81b818381518110612263577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561229f9190613b1d565b94506121f7565b8093505050505b919050565b505050565b6122c183836124a9565b6122ce6000848484612312565b61230d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230490613655565b60405180910390fd5b505050565b60006123338473ffffffffffffffffffffffffffffffffffffffff1661195b565b1561249c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261235c611a44565b8786866040518563ffffffff1660e01b815260040161237e94939291906135aa565b602060405180830381600087803b15801561239857600080fd5b505af19250505080156123c957506040513d601f19601f820116820180604052508101906123c69190612b38565b60015b61244c573d80600081146123f9576040519150601f19603f3d011682016040523d82523d6000602084013e6123fe565b606091505b50600081511415612444576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243b90613655565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506124a1565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612519576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612510906137f5565b60405180910390fd5b612522816119d8565b15612562576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255990613695565b60405180910390fd5b61256e600083836122b2565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125be9190613ac7565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461268390613cbf565b90600052602060002090601f0160209004810192826126a557600085556126ec565b82601f106126be57805160ff19168380011785556126ec565b828001600101855582156126ec579182015b828111156126eb5782518255916020019190600101906126d0565b5b5090506126f991906126fd565b5090565b5b808211156127165760008160009055506001016126fe565b5090565b600061272d6127288461397c565b61394b565b9050808382526020820190508285602086028201111561274c57600080fd5b60005b8581101561277c578161276288826128d4565b84526020840193506020830192505060018101905061274f565b5050509392505050565b6000612799612794846139a8565b61394b565b9050828152602081018484840111156127b157600080fd5b6127bc848285613c7d565b509392505050565b60006127d76127d2846139d8565b61394b565b9050828152602081018484840111156127ef57600080fd5b6127fa848285613c7d565b509392505050565b60008135905061281181613e8d565b92915050565b600082601f83011261282857600080fd5b813561283884826020860161271a565b91505092915050565b60008135905061285081613ea4565b92915050565b60008135905061286581613ebb565b92915050565b60008151905061287a81613ebb565b92915050565b600082601f83011261289157600080fd5b81356128a1848260208601612786565b91505092915050565b600082601f8301126128bb57600080fd5b81356128cb8482602086016127c4565b91505092915050565b6000813590506128e381613ed2565b92915050565b6000813590506128f881613ee9565b92915050565b60006020828403121561291057600080fd5b600061291e84828501612802565b91505092915050565b6000806040838503121561293a57600080fd5b600061294885828601612802565b925050602061295985828601612802565b9150509250929050565b60008060006060848603121561297857600080fd5b600061298686828701612802565b935050602061299786828701612802565b92505060406129a8868287016128e9565b9150509250925092565b600080600080608085870312156129c857600080fd5b60006129d687828801612802565b94505060206129e787828801612802565b93505060406129f8878288016128e9565b925050606085013567ffffffffffffffff811115612a1557600080fd5b612a2187828801612880565b91505092959194509250565b60008060408385031215612a4057600080fd5b6000612a4e85828601612802565b9250506020612a5f85828601612841565b9150509250929050565b60008060408385031215612a7c57600080fd5b6000612a8a85828601612802565b9250506020612a9b858286016128e9565b9150509250929050565b600060208284031215612ab757600080fd5b600082013567ffffffffffffffff811115612ad157600080fd5b612add84828501612817565b91505092915050565b600060208284031215612af857600080fd5b6000612b0684828501612841565b91505092915050565b600060208284031215612b2157600080fd5b6000612b2f84828501612856565b91505092915050565b600060208284031215612b4a57600080fd5b6000612b588482850161286b565b91505092915050565b600060208284031215612b7357600080fd5b600082013567ffffffffffffffff811115612b8d57600080fd5b612b99848285016128aa565b91505092915050565b600060208284031215612bb457600080fd5b6000612bc2848285016128d4565b91505092915050565b600060208284031215612bdd57600080fd5b6000612beb848285016128e9565b91505092915050565b6000612c00838361350e565b60208301905092915050565b612c1581613bee565b82525050565b612c2481613bdc565b82525050565b6000612c3582613a18565b612c3f8185613a46565b9350612c4a83613a08565b8060005b83811015612c7b578151612c628882612bf4565b9750612c6d83613a39565b925050600181019050612c4e565b5085935050505092915050565b612c9181613c00565b82525050565b6000612ca282613a23565b612cac8185613a57565b9350612cbc818560208601613c8c565b612cc581613e7c565b840191505092915050565b6000612cdb82613a2e565b612ce58185613a73565b9350612cf5818560208601613c8c565b612cfe81613e7c565b840191505092915050565b6000612d1482613a2e565b612d1e8185613a84565b9350612d2e818560208601613c8c565b80840191505092915050565b6000612d47603283613a73565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000612dad602683613a73565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612e13601c83613a73565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000612e53602483613a73565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000612eb9601983613a73565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000612ef9601f83613a73565b91507f45746865722076616c75652073656e74206973206e6f7420636f7272656374006000830152602082019050919050565b6000612f39603a83613a73565b91507f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008301527f6563697069656e74206d617920686176652072657665727465640000000000006020830152604082019050919050565b6000612f9f601d83613a73565b91507f416464726573733a20696e73756666696369656e742062616c616e63650000006000830152602082019050919050565b6000612fdf602c83613a73565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613045603883613a73565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006130ab602a83613a73565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613111602983613a73565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613177602a83613a73565b91507f507572636861736520776f756c6420657863656564206d617820737570706c7960008301527f206f6620746f6b656e73000000000000000000000000000000000000000000006020830152604082019050919050565b60006131dd602083613a73565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b600061321d601b83613a73565b91507f5468697320706978656c206973206e6f7420666f722073616c652100000000006000830152602082019050919050565b600061325d602c83613a73565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006132c3602083613a73565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613303602983613a73565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000613369602f83613a73565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006133cf602183613a73565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613435600083613a68565b9150600082019050919050565b600061344f603183613a73565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006134b5602283613a73565b91507f53616c65206d7573742062652061637469766520746f206d696e74207069786560008301527f6c730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61351781613c38565b82525050565b61352681613c38565b82525050565b61353581613c66565b82525050565b60006135478285612d09565b91506135538284612d09565b91508190509392505050565b600061356a82613428565b9150819050919050565b60006020820190506135896000830184612c1b565b92915050565b60006020820190506135a46000830184612c0c565b92915050565b60006080820190506135bf6000830187612c1b565b6135cc6020830186612c1b565b6135d9604083018561352c565b81810360608301526135eb8184612c97565b905095945050505050565b600060208201905081810360008301526136108184612c2a565b905092915050565b600060208201905061362d6000830184612c88565b92915050565b6000602082019050818103600083015261364d8184612cd0565b905092915050565b6000602082019050818103600083015261366e81612d3a565b9050919050565b6000602082019050818103600083015261368e81612da0565b9050919050565b600060208201905081810360008301526136ae81612e06565b9050919050565b600060208201905081810360008301526136ce81612e46565b9050919050565b600060208201905081810360008301526136ee81612eac565b9050919050565b6000602082019050818103600083015261370e81612eec565b9050919050565b6000602082019050818103600083015261372e81612f2c565b9050919050565b6000602082019050818103600083015261374e81612f92565b9050919050565b6000602082019050818103600083015261376e81612fd2565b9050919050565b6000602082019050818103600083015261378e81613038565b9050919050565b600060208201905081810360008301526137ae8161309e565b9050919050565b600060208201905081810360008301526137ce81613104565b9050919050565b600060208201905081810360008301526137ee8161316a565b9050919050565b6000602082019050818103600083015261380e816131d0565b9050919050565b6000602082019050818103600083015261382e81613210565b9050919050565b6000602082019050818103600083015261384e81613250565b9050919050565b6000602082019050818103600083015261386e816132b6565b9050919050565b6000602082019050818103600083015261388e816132f6565b9050919050565b600060208201905081810360008301526138ae8161335c565b9050919050565b600060208201905081810360008301526138ce816133c2565b9050919050565b600060208201905081810360008301526138ee81613442565b9050919050565b6000602082019050818103600083015261390e816134a8565b9050919050565b600060208201905061392a600083018461351d565b92915050565b6000602082019050613945600083018461352c565b92915050565b6000604051905081810181811067ffffffffffffffff8211171561397257613971613e4d565b5b8060405250919050565b600067ffffffffffffffff82111561399757613996613e4d565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156139c3576139c2613e4d565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156139f3576139f2613e4d565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a9a82613c38565b9150613aa583613c38565b92508261ffff03821115613abc57613abb613dc0565b5b828201905092915050565b6000613ad282613c66565b9150613add83613c66565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b1257613b11613dc0565b5b828201905092915050565b6000613b2882613c66565b9150613b3383613c66565b925082613b4357613b42613def565b5b828204905092915050565b6000613b5982613c66565b9150613b6483613c66565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b9d57613b9c613dc0565b5b828202905092915050565b6000613bb382613c66565b9150613bbe83613c66565b925082821015613bd157613bd0613dc0565b5b828203905092915050565b6000613be782613c46565b9050919050565b6000613bf982613c46565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b83811015613caa578082015181840152602081019050613c8f565b83811115613cb9576000848401525b50505050565b60006002820490506001821680613cd757607f821691505b60208210811415613ceb57613cea613e1e565b5b50919050565b6000613cfc82613c38565b915061ffff821415613d1157613d10613dc0565b5b600182019050919050565b6000613d2782613c66565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d5a57613d59613dc0565b5b600182019050919050565b6000613d7082613c70565b915060ff821415613d8457613d83613dc0565b5b600182019050919050565b6000613d9a82613c66565b9150613da583613c66565b925082613db557613db4613def565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613e9681613bdc565b8114613ea157600080fd5b50565b613ead81613c00565b8114613eb857600080fd5b50565b613ec481613c0c565b8114613ecf57600080fd5b50565b613edb81613c38565b8114613ee657600080fd5b50565b613ef281613c66565b8114613efd57600080fd5b5056fea264697066735822122004adc14194f45607eeccf50ccee454094d8508233862ac2b18d6a79cf1f9ec6764736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000cb72374610296d8cdc2198dc281ae04bf11a2d66
-----Decoded View---------------
Arg [0] : shareholderAddress_ (address): 0xcB72374610296D8CdC2198DC281AE04bF11a2D66
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000cb72374610296d8cdc2198dc281ae04bf11a2d66
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.