ERC-721
Overview
Max Total Supply
0 PORTRAA
Holders
435
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
14 PORTRAALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
portraa
Compiler Version
v0.8.1+commit.df193b15
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/extensions/ERC721URIStorage.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; ///////////////////////////////////////////////////////////////////////////////////////////////// // ...... ...... // // .000000: =00000% // // .000000: =00000% // // .000000: =00000% // // .000000: =00000% // // .000000: +%%%%%* #%%%%%- =00000% #%%%%%- :%%%%%%. // // .000000: *00000# 000000- =00000% %00000= -000000. // // .000000: +00000# 000000- =00000% %00000= :000000. // // .000000: *00000# 000000- =00000% %00000= -000000. // // .000000: *00000# 000000- =00000% %00000= :000000. // // .000000: *00000# 000000- =00000% %00000= -000000. // // .000000: +000000+..:*000000- =00000% %00000%-..-%000000. // // .000000: :00000000000000000- =00000% =00000000000000000. // // .000000: :%000000000000000- =000000 =0000000000000000. // // .******. -+#%%%#=:+*****: -*****+ -*#%%#*=:****** // // .... .. .. .. . ... ... // // .#000000- *000000+ .#000000= +000000* *000000+ =000000*. // // *000000+.#000000- +000000+.#000000= =000000*.*000000+ // // -000000000000#. -000000000000%: :%00000000000%: // // .%000000000+ .#000000000* *000000000#. // // %0000000= #0000000* *0000000# // // *000000000= +000000000= =000000000+ // // :%00000000000* .#00000000000*. .#00000000000#. // // =000000*:%00000%. -000000#:%00000%: :%00000%:#000000- // // .#000000= .#000000= .*000000+ *000000+ +000000* *000000*. // // =++++++- =++++++:-*+++++- =++++++::*+++++= -+++++*- // // // // PORTR(AA) // // a curated semi-generative , neural-network assisted , automatic portrait generator. // // // // @luluixixix // // // ///////////////////////////////////////////////////////////////////////////////////////////////// contract portraa is ReentrancyGuard, ERC721URIStorage, Ownable { using Strings for uint256; /* price */ uint256 public mintPrice = 0.2 ether; /* royalties */ uint256 private _royaltyBps; address payable private _royaltyRecipient; bytes4 private constant _INTERFACE_ID_ROYALTIES = 0xbb3bafd6; bytes4 private constant _INTERFACE_ID_ROYALTIES_EIP2981 = 0x2a55205a; bytes4 private constant _INTERFACE_ID_ROYALTIES_RARIBLE = 0xb7799584; event ChangeMintPrice(uint256 mintPrice); constructor() ERC721("portraa", "PORTRAA") { _royaltyRecipient = payable(msg.sender); _royaltyBps = 2500; } function changeMintPrice(uint256 _mintPrice) external onlyOwner{ mintPrice = _mintPrice; emit ChangeMintPrice(_mintPrice); } function getMintPrice(uint256) external view returns (uint256 _mintPrice) { return mintPrice; } function contractURI() public pure returns (string memory) { return "https://arweave.net/viqKWky_V-FMc3edU879tq7gbs6clT4PVUlrBxa9R2M"; } function mintportraa(string memory tokenURI,uint collecnum) public payable nonReentrant { require(msg.value == mintPrice , "Invalid eth sent"); require(msg.sender == tx.origin, "NOT EOA"); //no bots _safeMint(msg.sender, collecnum); _setTokenURI(collecnum, tokenURI); } function mint3portraa(string memory tURI1, uint n1, string memory tURI2, uint n2, string memory tURI3, uint n3) public payable nonReentrant { require(msg.value == 3*mintPrice , "Invalid eth sent"); require(msg.sender == tx.origin, "NOT EOA"); //no bots // mint 3 tokens _safeMint(msg.sender, n1); _setTokenURI(n1, tURI1); _safeMint(msg.sender, n2); _setTokenURI(n2, tURI2); _safeMint(msg.sender, n3); _setTokenURI(n3, tURI3); } /*** @dev See {IERC165-supportsInterface}.*/ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721) returns (bool) { return ERC721.supportsInterface(interfaceId) || interfaceId == _INTERFACE_ID_ROYALTIES || interfaceId == _INTERFACE_ID_ROYALTIES_EIP2981 || interfaceId == _INTERFACE_ID_ROYALTIES_RARIBLE; } /*** ROYALTIES implem: check EIP-2981 https://eips.ethereum.org/EIPS/eip-2981**/ function updateRoyalties(address payable recipient, uint256 bps) external onlyOwner { _royaltyRecipient = recipient; _royaltyBps = bps; } function getRoyalties(uint256) external view returns (address payable[] memory recipients, uint256[] memory bps) { if (_royaltyRecipient != address(0x0)) { recipients = new address payable[](1); recipients[0] = _royaltyRecipient; bps = new uint256[](1); bps[0] = _royaltyBps; } return (recipients, bps); } function getFeeRecipients(uint256) external view returns (address payable[] memory recipients) { if (_royaltyRecipient != address(0x0)) { recipients = new address payable[](1); recipients[0] = _royaltyRecipient; } return recipients; } function getFeeBps(uint256) external view returns (uint[] memory bps) { if (_royaltyRecipient != address(0x0)) { bps = new uint256[](1); bps[0] = _royaltyBps; } return bps; } function royaltyInfo(uint256, uint256 value) external view returns (address, uint256) { return (_royaltyRecipient, value*_royaltyBps/10000); } function withdraw() external onlyOwner{ uint balance = address(this).balance; require(balance > 0, "Bad Balance"); (bool success, ) = payable(msg.sender).call{value: balance}(""); require(success, "ETH failed"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721URIStorage.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) 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 { _setApprovalForAll(_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); _afterTokenTransfer(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); _afterTokenTransfer(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 from incorrect owner"); 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); _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) 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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) 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 // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) 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 // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"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":false,"internalType":"uint256","name":"mintPrice","type":"uint256"}],"name":"ChangeMintPrice","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":"_mintPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeBps","outputs":[{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getFeeRecipients","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getRoyalties","outputs":[{"internalType":"address payable[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"bps","type":"uint256[]"}],"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":"string","name":"tURI1","type":"string"},{"internalType":"uint256","name":"n1","type":"uint256"},{"internalType":"string","name":"tURI2","type":"string"},{"internalType":"uint256","name":"n2","type":"uint256"},{"internalType":"string","name":"tURI3","type":"string"},{"internalType":"uint256","name":"n3","type":"uint256"}],"name":"mint3portraa","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"tokenURI","type":"string"},{"internalType":"uint256","name":"collecnum","type":"uint256"}],"name":"mintportraa","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":[{"internalType":"address payable","name":"recipient","type":"address"},{"internalType":"uint256","name":"bps","type":"uint256"}],"name":"updateRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526702c68af0bb1400006009553480156200001d57600080fd5b506040518060400160405280600781526020017f706f7274726161000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f504f52545241410000000000000000000000000000000000000000000000000081525060016000819055508160019080519060200190620000aa92919062000204565b508060029080519060200190620000c392919062000204565b505050620000e6620000da6200013660201b60201c565b6200013e60201b60201c565b33600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506109c4600a8190555062000319565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200021290620002b4565b90600052602060002090601f01602090048101928262000236576000855562000282565b82601f106200025157805160ff191683800117855562000282565b8280016001018555821562000282579182015b828111156200028157825182559160200191906001019062000264565b5b50905062000291919062000295565b5090565b5b80821115620002b057600081600090555060010162000296565b5090565b60006002820490506001821680620002cd57607f821691505b60208210811415620002e457620002e3620002ea565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61453380620003296000396000f3fe6080604052600436106101b75760003560e01c80636c2f5acd116100ec578063b9c4d9fb1161008a578063cb8690e211610064578063cb8690e214610635578063e8a3d48514610651578063e985e9c51461067c578063f2fde38b146106b9576101b7565b8063b9c4d9fb1461057d578063bb3bafd6146105ba578063c87b56dd146105f8576101b7565b80638da5cb5b116100c65780638da5cb5b146104d557806395d89b4114610500578063a22cb4651461052b578063b88d4fde14610554576101b7565b80636c2f5acd1461045857806370a0823114610481578063715018a6146104be576101b7565b80633ccfd60b116101595780634451f68c116101335780634451f68c14610397578063559e775b146103b35780636352211e146103f05780636817c76c1461042d576101b7565b80633ccfd60b1461032e5780633fd173661461034557806342842e0e1461036e576101b7565b8063095ea7b311610195578063095ea7b3146102615780630ebd4c7f1461028a57806323b872dd146102c75780632a55205a146102f0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612e3d565b6106e2565b6040516101f0919061367f565b60405180910390f35b34801561020557600080fd5b5061020e6107e1565b60405161021b919061369a565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612fb4565b610873565b6040516102589190613574565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612e01565b6108f8565b005b34801561029657600080fd5b506102b160048036038101906102ac9190612fb4565b610a10565b6040516102be919061365d565b60405180910390f35b3480156102d357600080fd5b506102ee60048036038101906102e99190612cfb565b610b29565b005b3480156102fc57600080fd5b5061031760048036038101906103129190612fdd565b610b89565b6040516103259291906135db565b60405180910390f35b34801561033a57600080fd5b50610343610bd5565b005b34801561035157600080fd5b5061036c60048036038101906103679190612fb4565b610d49565b005b34801561037a57600080fd5b5061039560048036038101906103909190612cfb565b610e06565b005b6103b160048036038101906103ac9190612ee3565b610e26565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612fb4565b610f7e565b6040516103e7919061399c565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612fb4565b610f8a565b6040516104249190613574565b60405180910390f35b34801561043957600080fd5b5061044261103c565b60405161044f919061399c565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612c83565b611042565b005b34801561048d57600080fd5b506104a860048036038101906104a39190612c5a565b61110a565b6040516104b5919061399c565b60405180910390f35b3480156104ca57600080fd5b506104d36111c2565b005b3480156104e157600080fd5b506104ea61124a565b6040516104f79190613574565b60405180910390f35b34801561050c57600080fd5b50610515611274565b604051610522919061369a565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d9190612dc5565b611306565b005b34801561056057600080fd5b5061057b60048036038101906105769190612d4a565b61131c565b005b34801561058957600080fd5b506105a4600480360381019061059f9190612fb4565b61137e565b6040516105b19190613604565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc9190612fb4565b6114e5565b6040516105ef929190613626565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612fb4565b611708565b60405161062c919061369a565b60405180910390f35b61064f600480360381019061064a9190612e8f565b61185a565b005b34801561065d57600080fd5b5061066661197a565b604051610673919061369a565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190612cbf565b61199a565b6040516106b0919061367f565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190612c5a565b611a2e565b005b60006106ed82611b26565b8061073c575063bb3bafd660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061078b5750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107da575063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600180546107f090613cdb565b80601f016020809104026020016040519081016040528092919081815260200182805461081c90613cdb565b80156108695780601f1061083e57610100808354040283529160200191610869565b820191906000526020600020905b81548152906001019060200180831161084c57829003601f168201915b5050505050905090565b600061087e82611c08565b6108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b49061387c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090382610f8a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b906138dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610993611c74565b73ffffffffffffffffffffffffffffffffffffffff1614806109c257506109c1816109bc611c74565b61199a565b5b610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f8906137bc565b60405180910390fd5b610a0b8383611c7c565b505050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b2457600167ffffffffffffffff811115610aa9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ad75781602001602082028036833780820191505090505b509050600a5481600081518110610b17577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b919050565b610b3a610b34611c74565b82611d35565b610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b70906138fc565b60405180910390fd5b610b84838383611e13565b505050565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600a5485610bc09190613b85565b610bca9190613b54565b915091509250929050565b610bdd611c74565b73ffffffffffffffffffffffffffffffffffffffff16610bfb61124a565b73ffffffffffffffffffffffffffffffffffffffff1614610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c489061389c565b60405180910390fd5b600047905060008111610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c909061397c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610cbf9061355f565b60006040518083038185875af1925050503d8060008114610cfc576040519150601f19603f3d011682016040523d82523d6000602084013e610d01565b606091505b5050905080610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c9061373c565b60405180910390fd5b5050565b610d51611c74565b73ffffffffffffffffffffffffffffffffffffffff16610d6f61124a565b73ffffffffffffffffffffffffffffffffffffffff1614610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc9061389c565b60405180910390fd5b806009819055507fd6800b65b866c2769be54531e82b793515adb30a5c12080699dcd3c07784caa681604051610dfb919061399c565b60405180910390a150565b610e218383836040518060200160405280600081525061131c565b505050565b60026000541415610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e639061395c565b60405180910390fd5b60026000819055506009546003610e839190613b85565b3414610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb9061391c565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f299061393c565b60405180910390fd5b610f3c338661207a565b610f468587612098565b610f50338461207a565b610f5a8385612098565b610f64338261207a565b610f6e8183612098565b6001600081905550505050505050565b60006009549050919050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906137fc565b60405180910390fd5b80915050919050565b60095481565b61104a611c74565b73ffffffffffffffffffffffffffffffffffffffff1661106861124a565b73ffffffffffffffffffffffffffffffffffffffff16146110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b59061389c565b60405180910390fd5b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a819055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611172906137dc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111ca611c74565b73ffffffffffffffffffffffffffffffffffffffff166111e861124a565b73ffffffffffffffffffffffffffffffffffffffff161461123e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112359061389c565b60405180910390fd5b611248600061210c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461128390613cdb565b80601f01602080910402602001604051908101604052809291908181526020018280546112af90613cdb565b80156112fc5780601f106112d1576101008083540402835291602001916112fc565b820191906000526020600020905b8154815290600101906020018083116112df57829003601f168201915b5050505050905090565b611318611311611c74565b83836121d2565b5050565b61132d611327611c74565b83611d35565b61136c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611363906138fc565b60405180910390fd5b6113788484848461233f565b50505050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114e057600167ffffffffffffffff811115611417577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114455781602001602082028036833780820191505090505b509050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106114a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b919050565b606080600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461170357600167ffffffffffffffff81111561157f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115ad5781602001602082028036833780820191505090505b509150600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260008151811061160d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600167ffffffffffffffff811115611688577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116b65781602001602082028036833780820191505090505b509050600a54816000815181106116f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b915091565b606061171382611c08565b611752576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117499061385c565b60405180910390fd5b600060076000848152602001908152602001600020805461177290613cdb565b80601f016020809104026020016040519081016040528092919081815260200182805461179e90613cdb565b80156117eb5780601f106117c0576101008083540402835291602001916117eb565b820191906000526020600020905b8154815290600101906020018083116117ce57829003601f168201915b5050505050905060006117fc61239b565b9050600081511415611812578192505050611855565b60008251111561184757808260405160200161182f92919061353b565b60405160208183030381529060405292505050611855565b611850846123b2565b925050505b919050565b600260005414156118a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118979061395c565b60405180910390fd5b600260008190555060095434146118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e39061391c565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461195a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119519061393c565b60405180910390fd5b611964338261207a565b61196e8183612098565b60016000819055505050565b60606040518060600160405280603f81526020016144bf603f9139905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a36611c74565b73ffffffffffffffffffffffffffffffffffffffff16611a5461124a565b73ffffffffffffffffffffffffffffffffffffffff1614611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa19061389c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b11906136dc565b60405180910390fd5b611b238161210c565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bf157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c015750611c0082612459565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cef83610f8a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d4082611c08565b611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d769061379c565b60405180910390fd5b6000611d8a83610f8a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611df957508373ffffffffffffffffffffffffffffffffffffffff16611de184610873565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e0a5750611e09818561199a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e3382610f8a565b73ffffffffffffffffffffffffffffffffffffffff1614611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e80906136fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef09061375c565b60405180910390fd5b611f048383836124c3565b611f0f600082611c7c565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f5f9190613bdf565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fb69190613afe565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120758383836124c8565b505050565b6120948282604051806020016040528060008152506124cd565b5050565b6120a182611c08565b6120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d79061381c565b60405180910390fd5b80600760008481526020019081526020016000209080519060200190612107929190612a69565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612241576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122389061377c565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612332919061367f565b60405180910390a3505050565b61234a848484611e13565b61235684848484612528565b612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c906136bc565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606123bd82611c08565b6123fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f3906138bc565b60405180910390fd5b600061240661239b565b905060008151116124265760405180602001604052806000815250612451565b80612430846126bf565b60405160200161244192919061353b565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b505050565b6124d7838361286c565b6124e46000848484612528565b612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251a906136bc565b60405180910390fd5b505050565b60006125498473ffffffffffffffffffffffffffffffffffffffff16612a46565b156126b2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612572611c74565b8786866040518563ffffffff1660e01b8152600401612594949392919061358f565b602060405180830381600087803b1580156125ae57600080fd5b505af19250505080156125df57506040513d601f19601f820116820180604052508101906125dc9190612e66565b60015b612662573d806000811461260f576040519150601f19603f3d011682016040523d82523d6000602084013e612614565b606091505b5060008151141561265a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612651906136bc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126b7565b600190505b949350505050565b60606000821415612707576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612867565b600082905060005b6000821461273957808061272290613d3e565b915050600a826127329190613b54565b915061270f565b60008167ffffffffffffffff81111561277b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127ad5781602001600182028036833780820191505090505b5090505b60008514612860576001826127c69190613bdf565b9150600a856127d59190613d87565b60306127e19190613afe565b60f81b81838151811061281d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128599190613b54565b94506127b1565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d39061383c565b60405180910390fd5b6128e581611c08565b15612925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291c9061371c565b60405180910390fd5b612931600083836124c3565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129819190613afe565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a42600083836124c8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612a7590613cdb565b90600052602060002090601f016020900481019282612a975760008555612ade565b82601f10612ab057805160ff1916838001178555612ade565b82800160010185558215612ade579182015b82811115612add578251825591602001919060010190612ac2565b5b509050612aeb9190612aef565b5090565b5b80821115612b08576000816000905550600101612af0565b5090565b6000612b1f612b1a846139dc565b6139b7565b905082815260208101848484011115612b3757600080fd5b612b42848285613c99565b509392505050565b6000612b5d612b5884613a0d565b6139b7565b905082815260208101848484011115612b7557600080fd5b612b80848285613c99565b509392505050565b600081359050612b978161444b565b92915050565b600081359050612bac81614462565b92915050565b600081359050612bc181614479565b92915050565b600081359050612bd681614490565b92915050565b600081519050612beb81614490565b92915050565b600082601f830112612c0257600080fd5b8135612c12848260208601612b0c565b91505092915050565b600082601f830112612c2c57600080fd5b8135612c3c848260208601612b4a565b91505092915050565b600081359050612c54816144a7565b92915050565b600060208284031215612c6c57600080fd5b6000612c7a84828501612b88565b91505092915050565b60008060408385031215612c9657600080fd5b6000612ca485828601612b9d565b9250506020612cb585828601612c45565b9150509250929050565b60008060408385031215612cd257600080fd5b6000612ce085828601612b88565b9250506020612cf185828601612b88565b9150509250929050565b600080600060608486031215612d1057600080fd5b6000612d1e86828701612b88565b9350506020612d2f86828701612b88565b9250506040612d4086828701612c45565b9150509250925092565b60008060008060808587031215612d6057600080fd5b6000612d6e87828801612b88565b9450506020612d7f87828801612b88565b9350506040612d9087828801612c45565b925050606085013567ffffffffffffffff811115612dad57600080fd5b612db987828801612bf1565b91505092959194509250565b60008060408385031215612dd857600080fd5b6000612de685828601612b88565b9250506020612df785828601612bb2565b9150509250929050565b60008060408385031215612e1457600080fd5b6000612e2285828601612b88565b9250506020612e3385828601612c45565b9150509250929050565b600060208284031215612e4f57600080fd5b6000612e5d84828501612bc7565b91505092915050565b600060208284031215612e7857600080fd5b6000612e8684828501612bdc565b91505092915050565b60008060408385031215612ea257600080fd5b600083013567ffffffffffffffff811115612ebc57600080fd5b612ec885828601612c1b565b9250506020612ed985828601612c45565b9150509250929050565b60008060008060008060c08789031215612efc57600080fd5b600087013567ffffffffffffffff811115612f1657600080fd5b612f2289828a01612c1b565b9650506020612f3389828a01612c45565b955050604087013567ffffffffffffffff811115612f5057600080fd5b612f5c89828a01612c1b565b9450506060612f6d89828a01612c45565b935050608087013567ffffffffffffffff811115612f8a57600080fd5b612f9689828a01612c1b565b92505060a0612fa789828a01612c45565b9150509295509295509295565b600060208284031215612fc657600080fd5b6000612fd484828501612c45565b91505092915050565b60008060408385031215612ff057600080fd5b6000612ffe85828601612c45565b925050602061300f85828601612c45565b9150509250929050565b60006130258383613049565b60208301905092915050565b600061303d838361351d565b60208301905092915050565b61305281613c25565b82525050565b61306181613c13565b82525050565b600061307282613a5e565b61307c8185613aa4565b935061308783613a3e565b8060005b838110156130b857815161309f8882613019565b97506130aa83613a8a565b92505060018101905061308b565b5085935050505092915050565b60006130d082613a69565b6130da8185613ab5565b93506130e583613a4e565b8060005b838110156131165781516130fd8882613031565b975061310883613a97565b9250506001810190506130e9565b5085935050505092915050565b61312c81613c37565b82525050565b600061313d82613a74565b6131478185613ac6565b9350613157818560208601613ca8565b61316081613e74565b840191505092915050565b600061317682613a7f565b6131808185613ae2565b9350613190818560208601613ca8565b61319981613e74565b840191505092915050565b60006131af82613a7f565b6131b98185613af3565b93506131c9818560208601613ca8565b80840191505092915050565b60006131e2603283613ae2565b91506131ed82613e85565b604082019050919050565b6000613205602683613ae2565b915061321082613ed4565b604082019050919050565b6000613228602583613ae2565b915061323382613f23565b604082019050919050565b600061324b601c83613ae2565b915061325682613f72565b602082019050919050565b600061326e600a83613ae2565b915061327982613f9b565b602082019050919050565b6000613291602483613ae2565b915061329c82613fc4565b604082019050919050565b60006132b4601983613ae2565b91506132bf82614013565b602082019050919050565b60006132d7602c83613ae2565b91506132e28261403c565b604082019050919050565b60006132fa603883613ae2565b91506133058261408b565b604082019050919050565b600061331d602a83613ae2565b9150613328826140da565b604082019050919050565b6000613340602983613ae2565b915061334b82614129565b604082019050919050565b6000613363602e83613ae2565b915061336e82614178565b604082019050919050565b6000613386602083613ae2565b9150613391826141c7565b602082019050919050565b60006133a9603183613ae2565b91506133b4826141f0565b604082019050919050565b60006133cc602c83613ae2565b91506133d78261423f565b604082019050919050565b60006133ef602083613ae2565b91506133fa8261428e565b602082019050919050565b6000613412602f83613ae2565b915061341d826142b7565b604082019050919050565b6000613435602183613ae2565b915061344082614306565b604082019050919050565b6000613458600083613ad7565b915061346382614355565b600082019050919050565b600061347b603183613ae2565b915061348682614358565b604082019050919050565b600061349e601083613ae2565b91506134a9826143a7565b602082019050919050565b60006134c1600783613ae2565b91506134cc826143d0565b602082019050919050565b60006134e4601f83613ae2565b91506134ef826143f9565b602082019050919050565b6000613507600b83613ae2565b915061351282614422565b602082019050919050565b61352681613c8f565b82525050565b61353581613c8f565b82525050565b600061354782856131a4565b915061355382846131a4565b91508190509392505050565b600061356a8261344b565b9150819050919050565b60006020820190506135896000830184613058565b92915050565b60006080820190506135a46000830187613058565b6135b16020830186613058565b6135be604083018561352c565b81810360608301526135d08184613132565b905095945050505050565b60006040820190506135f06000830185613058565b6135fd602083018461352c565b9392505050565b6000602082019050818103600083015261361e8184613067565b905092915050565b600060408201905081810360008301526136408185613067565b9050818103602083015261365481846130c5565b90509392505050565b6000602082019050818103600083015261367781846130c5565b905092915050565b60006020820190506136946000830184613123565b92915050565b600060208201905081810360008301526136b4818461316b565b905092915050565b600060208201905081810360008301526136d5816131d5565b9050919050565b600060208201905081810360008301526136f5816131f8565b9050919050565b600060208201905081810360008301526137158161321b565b9050919050565b600060208201905081810360008301526137358161323e565b9050919050565b6000602082019050818103600083015261375581613261565b9050919050565b6000602082019050818103600083015261377581613284565b9050919050565b60006020820190508181036000830152613795816132a7565b9050919050565b600060208201905081810360008301526137b5816132ca565b9050919050565b600060208201905081810360008301526137d5816132ed565b9050919050565b600060208201905081810360008301526137f581613310565b9050919050565b6000602082019050818103600083015261381581613333565b9050919050565b6000602082019050818103600083015261383581613356565b9050919050565b6000602082019050818103600083015261385581613379565b9050919050565b600060208201905081810360008301526138758161339c565b9050919050565b60006020820190508181036000830152613895816133bf565b9050919050565b600060208201905081810360008301526138b5816133e2565b9050919050565b600060208201905081810360008301526138d581613405565b9050919050565b600060208201905081810360008301526138f581613428565b9050919050565b600060208201905081810360008301526139158161346e565b9050919050565b6000602082019050818103600083015261393581613491565b9050919050565b60006020820190508181036000830152613955816134b4565b9050919050565b60006020820190508181036000830152613975816134d7565b9050919050565b60006020820190508181036000830152613995816134fa565b9050919050565b60006020820190506139b1600083018461352c565b92915050565b60006139c16139d2565b90506139cd8282613d0d565b919050565b6000604051905090565b600067ffffffffffffffff8211156139f7576139f6613e45565b5b613a0082613e74565b9050602081019050919050565b600067ffffffffffffffff821115613a2857613a27613e45565b5b613a3182613e74565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b0982613c8f565b9150613b1483613c8f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b4957613b48613db8565b5b828201905092915050565b6000613b5f82613c8f565b9150613b6a83613c8f565b925082613b7a57613b79613de7565b5b828204905092915050565b6000613b9082613c8f565b9150613b9b83613c8f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bd457613bd3613db8565b5b828202905092915050565b6000613bea82613c8f565b9150613bf583613c8f565b925082821015613c0857613c07613db8565b5b828203905092915050565b6000613c1e82613c6f565b9050919050565b6000613c3082613c6f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cc6578082015181840152602081019050613cab565b83811115613cd5576000848401525b50505050565b60006002820490506001821680613cf357607f821691505b60208210811415613d0757613d06613e16565b5b50919050565b613d1682613e74565b810181811067ffffffffffffffff82111715613d3557613d34613e45565b5b80604052505050565b6000613d4982613c8f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d7c57613d7b613db8565b5b600182019050919050565b6000613d9282613c8f565b9150613d9d83613c8f565b925082613dad57613dac613de7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f455448206661696c656400000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e76616c6964206574682073656e7400000000000000000000000000000000600082015250565b7f4e4f5420454f4100000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4261642042616c616e6365000000000000000000000000000000000000000000600082015250565b61445481613c13565b811461445f57600080fd5b50565b61446b81613c25565b811461447657600080fd5b50565b61448281613c37565b811461448d57600080fd5b50565b61449981613c43565b81146144a457600080fd5b50565b6144b081613c8f565b81146144bb57600080fd5b5056fe68747470733a2f2f617277656176652e6e65742f7669714b576b795f562d464d633365645538373974713767627336636c54345056556c724278613952324da26469706673582212208da6b292c4a79ef5165d20bb0bd0d1e1ab457224f5c2ca0338bc4353e435710a64736f6c63430008010033
Deployed Bytecode
0x6080604052600436106101b75760003560e01c80636c2f5acd116100ec578063b9c4d9fb1161008a578063cb8690e211610064578063cb8690e214610635578063e8a3d48514610651578063e985e9c51461067c578063f2fde38b146106b9576101b7565b8063b9c4d9fb1461057d578063bb3bafd6146105ba578063c87b56dd146105f8576101b7565b80638da5cb5b116100c65780638da5cb5b146104d557806395d89b4114610500578063a22cb4651461052b578063b88d4fde14610554576101b7565b80636c2f5acd1461045857806370a0823114610481578063715018a6146104be576101b7565b80633ccfd60b116101595780634451f68c116101335780634451f68c14610397578063559e775b146103b35780636352211e146103f05780636817c76c1461042d576101b7565b80633ccfd60b1461032e5780633fd173661461034557806342842e0e1461036e576101b7565b8063095ea7b311610195578063095ea7b3146102615780630ebd4c7f1461028a57806323b872dd146102c75780632a55205a146102f0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190612e3d565b6106e2565b6040516101f0919061367f565b60405180910390f35b34801561020557600080fd5b5061020e6107e1565b60405161021b919061369a565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190612fb4565b610873565b6040516102589190613574565b60405180910390f35b34801561026d57600080fd5b5061028860048036038101906102839190612e01565b6108f8565b005b34801561029657600080fd5b506102b160048036038101906102ac9190612fb4565b610a10565b6040516102be919061365d565b60405180910390f35b3480156102d357600080fd5b506102ee60048036038101906102e99190612cfb565b610b29565b005b3480156102fc57600080fd5b5061031760048036038101906103129190612fdd565b610b89565b6040516103259291906135db565b60405180910390f35b34801561033a57600080fd5b50610343610bd5565b005b34801561035157600080fd5b5061036c60048036038101906103679190612fb4565b610d49565b005b34801561037a57600080fd5b5061039560048036038101906103909190612cfb565b610e06565b005b6103b160048036038101906103ac9190612ee3565b610e26565b005b3480156103bf57600080fd5b506103da60048036038101906103d59190612fb4565b610f7e565b6040516103e7919061399c565b60405180910390f35b3480156103fc57600080fd5b5061041760048036038101906104129190612fb4565b610f8a565b6040516104249190613574565b60405180910390f35b34801561043957600080fd5b5061044261103c565b60405161044f919061399c565b60405180910390f35b34801561046457600080fd5b5061047f600480360381019061047a9190612c83565b611042565b005b34801561048d57600080fd5b506104a860048036038101906104a39190612c5a565b61110a565b6040516104b5919061399c565b60405180910390f35b3480156104ca57600080fd5b506104d36111c2565b005b3480156104e157600080fd5b506104ea61124a565b6040516104f79190613574565b60405180910390f35b34801561050c57600080fd5b50610515611274565b604051610522919061369a565b60405180910390f35b34801561053757600080fd5b50610552600480360381019061054d9190612dc5565b611306565b005b34801561056057600080fd5b5061057b60048036038101906105769190612d4a565b61131c565b005b34801561058957600080fd5b506105a4600480360381019061059f9190612fb4565b61137e565b6040516105b19190613604565b60405180910390f35b3480156105c657600080fd5b506105e160048036038101906105dc9190612fb4565b6114e5565b6040516105ef929190613626565b60405180910390f35b34801561060457600080fd5b5061061f600480360381019061061a9190612fb4565b611708565b60405161062c919061369a565b60405180910390f35b61064f600480360381019061064a9190612e8f565b61185a565b005b34801561065d57600080fd5b5061066661197a565b604051610673919061369a565b60405180910390f35b34801561068857600080fd5b506106a3600480360381019061069e9190612cbf565b61199a565b6040516106b0919061367f565b60405180910390f35b3480156106c557600080fd5b506106e060048036038101906106db9190612c5a565b611a2e565b005b60006106ed82611b26565b8061073c575063bb3bafd660e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061078b5750632a55205a60e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107da575063b779958460e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b6060600180546107f090613cdb565b80601f016020809104026020016040519081016040528092919081815260200182805461081c90613cdb565b80156108695780601f1061083e57610100808354040283529160200191610869565b820191906000526020600020905b81548152906001019060200180831161084c57829003601f168201915b5050505050905090565b600061087e82611c08565b6108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b49061387c565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061090382610f8a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610974576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161096b906138dc565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610993611c74565b73ffffffffffffffffffffffffffffffffffffffff1614806109c257506109c1816109bc611c74565b61199a565b5b610a01576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f8906137bc565b60405180910390fd5b610a0b8383611c7c565b505050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610b2457600167ffffffffffffffff811115610aa9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610ad75781602001602082028036833780820191505090505b509050600a5481600081518110610b17577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b919050565b610b3a610b34611c74565b82611d35565b610b79576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b70906138fc565b60405180910390fd5b610b84838383611e13565b505050565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16612710600a5485610bc09190613b85565b610bca9190613b54565b915091509250929050565b610bdd611c74565b73ffffffffffffffffffffffffffffffffffffffff16610bfb61124a565b73ffffffffffffffffffffffffffffffffffffffff1614610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c489061389c565b60405180910390fd5b600047905060008111610c99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c909061397c565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1682604051610cbf9061355f565b60006040518083038185875af1925050503d8060008114610cfc576040519150601f19603f3d011682016040523d82523d6000602084013e610d01565b606091505b5050905080610d45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3c9061373c565b60405180910390fd5b5050565b610d51611c74565b73ffffffffffffffffffffffffffffffffffffffff16610d6f61124a565b73ffffffffffffffffffffffffffffffffffffffff1614610dc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dbc9061389c565b60405180910390fd5b806009819055507fd6800b65b866c2769be54531e82b793515adb30a5c12080699dcd3c07784caa681604051610dfb919061399c565b60405180910390a150565b610e218383836040518060200160405280600081525061131c565b505050565b60026000541415610e6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e639061395c565b60405180910390fd5b60026000819055506009546003610e839190613b85565b3414610ec4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ebb9061391c565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f299061393c565b60405180910390fd5b610f3c338661207a565b610f468587612098565b610f50338461207a565b610f5a8385612098565b610f64338261207a565b610f6e8183612098565b6001600081905550505050505050565b60006009549050919050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a906137fc565b60405180910390fd5b80915050919050565b60095481565b61104a611c74565b73ffffffffffffffffffffffffffffffffffffffff1661106861124a565b73ffffffffffffffffffffffffffffffffffffffff16146110be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b59061389c565b60405180910390fd5b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600a819055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561117b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611172906137dc565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6111ca611c74565b73ffffffffffffffffffffffffffffffffffffffff166111e861124a565b73ffffffffffffffffffffffffffffffffffffffff161461123e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112359061389c565b60405180910390fd5b611248600061210c565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461128390613cdb565b80601f01602080910402602001604051908101604052809291908181526020018280546112af90613cdb565b80156112fc5780601f106112d1576101008083540402835291602001916112fc565b820191906000526020600020905b8154815290600101906020018083116112df57829003601f168201915b5050505050905090565b611318611311611c74565b83836121d2565b5050565b61132d611327611c74565b83611d35565b61136c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611363906138fc565b60405180910390fd5b6113788484848461233f565b50505050565b6060600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146114e057600167ffffffffffffffff811115611417577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156114455781602001602082028036833780820191505090505b509050600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16816000815181106114a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250505b919050565b606080600073ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461170357600167ffffffffffffffff81111561157f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115ad5781602001602082028036833780820191505090505b509150600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168260008151811061160d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600167ffffffffffffffff811115611688577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116b65781602001602082028036833780820191505090505b509050600a54816000815181106116f6577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250505b915091565b606061171382611c08565b611752576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117499061385c565b60405180910390fd5b600060076000848152602001908152602001600020805461177290613cdb565b80601f016020809104026020016040519081016040528092919081815260200182805461179e90613cdb565b80156117eb5780601f106117c0576101008083540402835291602001916117eb565b820191906000526020600020905b8154815290600101906020018083116117ce57829003601f168201915b5050505050905060006117fc61239b565b9050600081511415611812578192505050611855565b60008251111561184757808260405160200161182f92919061353b565b60405160208183030381529060405292505050611855565b611850846123b2565b925050505b919050565b600260005414156118a0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118979061395c565b60405180910390fd5b600260008190555060095434146118ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118e39061391c565b60405180910390fd5b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461195a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119519061393c565b60405180910390fd5b611964338261207a565b61196e8183612098565b60016000819055505050565b60606040518060600160405280603f81526020016144bf603f9139905090565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611a36611c74565b73ffffffffffffffffffffffffffffffffffffffff16611a5461124a565b73ffffffffffffffffffffffffffffffffffffffff1614611aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa19061389c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611b1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b11906136dc565b60405180910390fd5b611b238161210c565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611bf157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611c015750611c0082612459565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611cef83610f8a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d4082611c08565b611d7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d769061379c565b60405180910390fd5b6000611d8a83610f8a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611df957508373ffffffffffffffffffffffffffffffffffffffff16611de184610873565b73ffffffffffffffffffffffffffffffffffffffff16145b80611e0a5750611e09818561199a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611e3382610f8a565b73ffffffffffffffffffffffffffffffffffffffff1614611e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e80906136fc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ef9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef09061375c565b60405180910390fd5b611f048383836124c3565b611f0f600082611c7c565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f5f9190613bdf565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fb69190613afe565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46120758383836124c8565b505050565b6120948282604051806020016040528060008152506124cd565b5050565b6120a182611c08565b6120e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d79061381c565b60405180910390fd5b80600760008481526020019081526020016000209080519060200190612107929190612a69565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612241576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122389061377c565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612332919061367f565b60405180910390a3505050565b61234a848484611e13565b61235684848484612528565b612395576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238c906136bc565b60405180910390fd5b50505050565b606060405180602001604052806000815250905090565b60606123bd82611c08565b6123fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f3906138bc565b60405180910390fd5b600061240661239b565b905060008151116124265760405180602001604052806000815250612451565b80612430846126bf565b60405160200161244192919061353b565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b505050565b6124d7838361286c565b6124e46000848484612528565b612523576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251a906136bc565b60405180910390fd5b505050565b60006125498473ffffffffffffffffffffffffffffffffffffffff16612a46565b156126b2578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612572611c74565b8786866040518563ffffffff1660e01b8152600401612594949392919061358f565b602060405180830381600087803b1580156125ae57600080fd5b505af19250505080156125df57506040513d601f19601f820116820180604052508101906125dc9190612e66565b60015b612662573d806000811461260f576040519150601f19603f3d011682016040523d82523d6000602084013e612614565b606091505b5060008151141561265a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612651906136bc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506126b7565b600190505b949350505050565b60606000821415612707576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612867565b600082905060005b6000821461273957808061272290613d3e565b915050600a826127329190613b54565b915061270f565b60008167ffffffffffffffff81111561277b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156127ad5781602001600182028036833780820191505090505b5090505b60008514612860576001826127c69190613bdf565b9150600a856127d59190613d87565b60306127e19190613afe565b60f81b81838151811061281d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856128599190613b54565b94506127b1565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156128dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d39061383c565b60405180910390fd5b6128e581611c08565b15612925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291c9061371c565b60405180910390fd5b612931600083836124c3565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546129819190613afe565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612a42600083836124c8565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612a7590613cdb565b90600052602060002090601f016020900481019282612a975760008555612ade565b82601f10612ab057805160ff1916838001178555612ade565b82800160010185558215612ade579182015b82811115612add578251825591602001919060010190612ac2565b5b509050612aeb9190612aef565b5090565b5b80821115612b08576000816000905550600101612af0565b5090565b6000612b1f612b1a846139dc565b6139b7565b905082815260208101848484011115612b3757600080fd5b612b42848285613c99565b509392505050565b6000612b5d612b5884613a0d565b6139b7565b905082815260208101848484011115612b7557600080fd5b612b80848285613c99565b509392505050565b600081359050612b978161444b565b92915050565b600081359050612bac81614462565b92915050565b600081359050612bc181614479565b92915050565b600081359050612bd681614490565b92915050565b600081519050612beb81614490565b92915050565b600082601f830112612c0257600080fd5b8135612c12848260208601612b0c565b91505092915050565b600082601f830112612c2c57600080fd5b8135612c3c848260208601612b4a565b91505092915050565b600081359050612c54816144a7565b92915050565b600060208284031215612c6c57600080fd5b6000612c7a84828501612b88565b91505092915050565b60008060408385031215612c9657600080fd5b6000612ca485828601612b9d565b9250506020612cb585828601612c45565b9150509250929050565b60008060408385031215612cd257600080fd5b6000612ce085828601612b88565b9250506020612cf185828601612b88565b9150509250929050565b600080600060608486031215612d1057600080fd5b6000612d1e86828701612b88565b9350506020612d2f86828701612b88565b9250506040612d4086828701612c45565b9150509250925092565b60008060008060808587031215612d6057600080fd5b6000612d6e87828801612b88565b9450506020612d7f87828801612b88565b9350506040612d9087828801612c45565b925050606085013567ffffffffffffffff811115612dad57600080fd5b612db987828801612bf1565b91505092959194509250565b60008060408385031215612dd857600080fd5b6000612de685828601612b88565b9250506020612df785828601612bb2565b9150509250929050565b60008060408385031215612e1457600080fd5b6000612e2285828601612b88565b9250506020612e3385828601612c45565b9150509250929050565b600060208284031215612e4f57600080fd5b6000612e5d84828501612bc7565b91505092915050565b600060208284031215612e7857600080fd5b6000612e8684828501612bdc565b91505092915050565b60008060408385031215612ea257600080fd5b600083013567ffffffffffffffff811115612ebc57600080fd5b612ec885828601612c1b565b9250506020612ed985828601612c45565b9150509250929050565b60008060008060008060c08789031215612efc57600080fd5b600087013567ffffffffffffffff811115612f1657600080fd5b612f2289828a01612c1b565b9650506020612f3389828a01612c45565b955050604087013567ffffffffffffffff811115612f5057600080fd5b612f5c89828a01612c1b565b9450506060612f6d89828a01612c45565b935050608087013567ffffffffffffffff811115612f8a57600080fd5b612f9689828a01612c1b565b92505060a0612fa789828a01612c45565b9150509295509295509295565b600060208284031215612fc657600080fd5b6000612fd484828501612c45565b91505092915050565b60008060408385031215612ff057600080fd5b6000612ffe85828601612c45565b925050602061300f85828601612c45565b9150509250929050565b60006130258383613049565b60208301905092915050565b600061303d838361351d565b60208301905092915050565b61305281613c25565b82525050565b61306181613c13565b82525050565b600061307282613a5e565b61307c8185613aa4565b935061308783613a3e565b8060005b838110156130b857815161309f8882613019565b97506130aa83613a8a565b92505060018101905061308b565b5085935050505092915050565b60006130d082613a69565b6130da8185613ab5565b93506130e583613a4e565b8060005b838110156131165781516130fd8882613031565b975061310883613a97565b9250506001810190506130e9565b5085935050505092915050565b61312c81613c37565b82525050565b600061313d82613a74565b6131478185613ac6565b9350613157818560208601613ca8565b61316081613e74565b840191505092915050565b600061317682613a7f565b6131808185613ae2565b9350613190818560208601613ca8565b61319981613e74565b840191505092915050565b60006131af82613a7f565b6131b98185613af3565b93506131c9818560208601613ca8565b80840191505092915050565b60006131e2603283613ae2565b91506131ed82613e85565b604082019050919050565b6000613205602683613ae2565b915061321082613ed4565b604082019050919050565b6000613228602583613ae2565b915061323382613f23565b604082019050919050565b600061324b601c83613ae2565b915061325682613f72565b602082019050919050565b600061326e600a83613ae2565b915061327982613f9b565b602082019050919050565b6000613291602483613ae2565b915061329c82613fc4565b604082019050919050565b60006132b4601983613ae2565b91506132bf82614013565b602082019050919050565b60006132d7602c83613ae2565b91506132e28261403c565b604082019050919050565b60006132fa603883613ae2565b91506133058261408b565b604082019050919050565b600061331d602a83613ae2565b9150613328826140da565b604082019050919050565b6000613340602983613ae2565b915061334b82614129565b604082019050919050565b6000613363602e83613ae2565b915061336e82614178565b604082019050919050565b6000613386602083613ae2565b9150613391826141c7565b602082019050919050565b60006133a9603183613ae2565b91506133b4826141f0565b604082019050919050565b60006133cc602c83613ae2565b91506133d78261423f565b604082019050919050565b60006133ef602083613ae2565b91506133fa8261428e565b602082019050919050565b6000613412602f83613ae2565b915061341d826142b7565b604082019050919050565b6000613435602183613ae2565b915061344082614306565b604082019050919050565b6000613458600083613ad7565b915061346382614355565b600082019050919050565b600061347b603183613ae2565b915061348682614358565b604082019050919050565b600061349e601083613ae2565b91506134a9826143a7565b602082019050919050565b60006134c1600783613ae2565b91506134cc826143d0565b602082019050919050565b60006134e4601f83613ae2565b91506134ef826143f9565b602082019050919050565b6000613507600b83613ae2565b915061351282614422565b602082019050919050565b61352681613c8f565b82525050565b61353581613c8f565b82525050565b600061354782856131a4565b915061355382846131a4565b91508190509392505050565b600061356a8261344b565b9150819050919050565b60006020820190506135896000830184613058565b92915050565b60006080820190506135a46000830187613058565b6135b16020830186613058565b6135be604083018561352c565b81810360608301526135d08184613132565b905095945050505050565b60006040820190506135f06000830185613058565b6135fd602083018461352c565b9392505050565b6000602082019050818103600083015261361e8184613067565b905092915050565b600060408201905081810360008301526136408185613067565b9050818103602083015261365481846130c5565b90509392505050565b6000602082019050818103600083015261367781846130c5565b905092915050565b60006020820190506136946000830184613123565b92915050565b600060208201905081810360008301526136b4818461316b565b905092915050565b600060208201905081810360008301526136d5816131d5565b9050919050565b600060208201905081810360008301526136f5816131f8565b9050919050565b600060208201905081810360008301526137158161321b565b9050919050565b600060208201905081810360008301526137358161323e565b9050919050565b6000602082019050818103600083015261375581613261565b9050919050565b6000602082019050818103600083015261377581613284565b9050919050565b60006020820190508181036000830152613795816132a7565b9050919050565b600060208201905081810360008301526137b5816132ca565b9050919050565b600060208201905081810360008301526137d5816132ed565b9050919050565b600060208201905081810360008301526137f581613310565b9050919050565b6000602082019050818103600083015261381581613333565b9050919050565b6000602082019050818103600083015261383581613356565b9050919050565b6000602082019050818103600083015261385581613379565b9050919050565b600060208201905081810360008301526138758161339c565b9050919050565b60006020820190508181036000830152613895816133bf565b9050919050565b600060208201905081810360008301526138b5816133e2565b9050919050565b600060208201905081810360008301526138d581613405565b9050919050565b600060208201905081810360008301526138f581613428565b9050919050565b600060208201905081810360008301526139158161346e565b9050919050565b6000602082019050818103600083015261393581613491565b9050919050565b60006020820190508181036000830152613955816134b4565b9050919050565b60006020820190508181036000830152613975816134d7565b9050919050565b60006020820190508181036000830152613995816134fa565b9050919050565b60006020820190506139b1600083018461352c565b92915050565b60006139c16139d2565b90506139cd8282613d0d565b919050565b6000604051905090565b600067ffffffffffffffff8211156139f7576139f6613e45565b5b613a0082613e74565b9050602081019050919050565b600067ffffffffffffffff821115613a2857613a27613e45565b5b613a3182613e74565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613b0982613c8f565b9150613b1483613c8f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613b4957613b48613db8565b5b828201905092915050565b6000613b5f82613c8f565b9150613b6a83613c8f565b925082613b7a57613b79613de7565b5b828204905092915050565b6000613b9082613c8f565b9150613b9b83613c8f565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613bd457613bd3613db8565b5b828202905092915050565b6000613bea82613c8f565b9150613bf583613c8f565b925082821015613c0857613c07613db8565b5b828203905092915050565b6000613c1e82613c6f565b9050919050565b6000613c3082613c6f565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613cc6578082015181840152602081019050613cab565b83811115613cd5576000848401525b50505050565b60006002820490506001821680613cf357607f821691505b60208210811415613d0757613d06613e16565b5b50919050565b613d1682613e74565b810181811067ffffffffffffffff82111715613d3557613d34613e45565b5b80604052505050565b6000613d4982613c8f565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613d7c57613d7b613db8565b5b600182019050919050565b6000613d9282613c8f565b9150613d9d83613c8f565b925082613dad57613dac613de7565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f455448206661696c656400000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008201527f6578697374656e7420746f6b656e000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e76616c6964206574682073656e7400000000000000000000000000000000600082015250565b7f4e4f5420454f4100000000000000000000000000000000000000000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4261642042616c616e6365000000000000000000000000000000000000000000600082015250565b61445481613c13565b811461445f57600080fd5b50565b61446b81613c25565b811461447657600080fd5b50565b61448281613c37565b811461448d57600080fd5b50565b61449981613c43565b81146144a457600080fd5b50565b6144b081613c8f565b81146144bb57600080fd5b5056fe68747470733a2f2f617277656176652e6e65742f7669714b576b795f562d464d633365645538373974713767627336636c54345056556c724278613952324da26469706673582212208da6b292c4a79ef5165d20bb0bd0d1e1ab457224f5c2ca0338bc4353e435710a64736f6c63430008010033
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.