Overview
CRO Balance
CRO Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,379 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 16877433 | 77 days ago | IN | 0 CRO | 0.2357037 | ||||
Set Approval For... | 16521364 | 101 days ago | IN | 0 CRO | 0.23344001 | ||||
Transfer From | 16235544 | 119 days ago | IN | 0 CRO | 0.505 | ||||
Transfer From | 16235542 | 119 days ago | IN | 0 CRO | 0.505 | ||||
Transfer From | 15898791 | 141 days ago | IN | 0 CRO | 0.505 | ||||
Safe Transfer Fr... | 15896091 | 142 days ago | IN | 0 CRO | 0.50624338 | ||||
Safe Transfer Fr... | 15896084 | 142 days ago | IN | 0 CRO | 0.41991403 | ||||
Safe Transfer Fr... | 15895670 | 142 days ago | IN | 0 CRO | 0.5063938 | ||||
Safe Transfer Fr... | 15895665 | 142 days ago | IN | 0 CRO | 0.5063938 | ||||
Safe Transfer Fr... | 15884269 | 142 days ago | IN | 0 CRO | 0.5063938 | ||||
Safe Transfer Fr... | 15884263 | 142 days ago | IN | 0 CRO | 0.4200388 | ||||
Set Approval For... | 15856038 | 144 days ago | IN | 0 CRO | 0.13516853 | ||||
Set Approval For... | 15856035 | 144 days ago | IN | 0 CRO | 0.23563368 | ||||
Safe Transfer Fr... | 15851858 | 145 days ago | IN | 0 CRO | 0.5063938 | ||||
Safe Transfer Fr... | 15851854 | 145 days ago | IN | 0 CRO | 0.4199782 | ||||
Safe Transfer Fr... | 15851849 | 145 days ago | IN | 0 CRO | 0.4200388 | ||||
Safe Transfer Fr... | 15841256 | 145 days ago | IN | 0 CRO | 0.47277595 | ||||
Safe Transfer Fr... | 15841234 | 145 days ago | IN | 0 CRO | 0.47283655 | ||||
Safe Transfer Fr... | 15840668 | 145 days ago | IN | 0 CRO | 0.50460462 | ||||
Safe Transfer Fr... | 15840662 | 145 days ago | IN | 0 CRO | 0.41991403 | ||||
Safe Transfer Fr... | 15840657 | 145 days ago | IN | 0 CRO | 0.4160817 | ||||
Safe Transfer Fr... | 15840652 | 145 days ago | IN | 0 CRO | 0.41985345 | ||||
Safe Transfer Fr... | 15839959 | 145 days ago | IN | 0 CRO | 0.4199782 | ||||
Safe Transfer Fr... | 15839540 | 145 days ago | IN | 0 CRO | 0.47277595 | ||||
Safe Transfer Fr... | 15839195 | 145 days ago | IN | 0 CRO | 0.4200388 |
Loading...
Loading
Contract Name:
CarkayousExpedition8_2
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "../LushLinkNftV1.sol"; contract CarkayousExpedition8_2 is LushLinkNftV1 { /////////////////////////// // Constructor ////////////////////////// constructor(address _ownerAddress) LushLinkNftV1 ( "Carkayous Expedition 8.2 - The Blooming of the Psilofish", "CARKAYOUS EXP 8.2", "https://www.lushlink.io/collection/MnFxS3I1S3J1ZC9JODY4bkNFWHlHdz09/nft", _ownerAddress, 10000 ){ setRegularCost(0 ether); setDefaultRoyalty(0x24462722e63Ca1BAb3a2311DFfa4A3a21665647a, 750); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/token/common/ERC2981.sol"; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "./utils/Hierarchy.sol"; import "./utils/SafePct.sol"; contract LushLinkNftV1 is ERC721Enumerable, ERC2981, Hierarchy { using Strings for uint256; using SafePct for uint256; using SafeMathLite for uint256; event MaxSupplyUpdated( address indexed _who, uint256 _value ); // Supply uint256 public maxSupply; uint256 private _currentId; // Metadata string public baseURI; mapping(uint => string) private overrideIds; // Costs. uint256 public regularCost; //Restrictions. address ownerAddress; bool allowPublicMint; // Rev Split. address[] private payees; uint16[] private shares; // Drop Timing. uint256 publicStartTime; constructor( string memory name_, string memory symbol_, string memory baseURI_, address ownerAddress_, uint256 maxSupply_ ) ERC721(name_, symbol_) Hierarchy(ownerAddress_) { setBaseURI(baseURI_); ownerAddress = ownerAddress_; allowPublicMint = false; maxSupply = maxSupply_; } // Supply function setMaxSupply(uint256 value) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not allowed to set max supply"); require((_currentId + 1) < value, "Max supply can not be less than current supply"); maxSupply = value; emit MaxSupplyUpdated(msg.sender, value); } // Pricing. function mintCost(address _address) public view returns (uint256) { require(_address != address(0), "not address 0"); return regularCost; } function setRegularCost(uint256 _cost) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender())); regularCost = _cost; } // Minting. function setAllowPublicMint(bool _allowed) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not allowed to set public mint."); allowPublicMint = _allowed; } function mint(uint256 _mintAmount) public payable { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not allowed to mint"); require(_mintAmount > 0, "need to mint at least 1 NFT"); uint256 cost = regularCost; uint256 totalCost = cost.mul(_mintAmount); require(totalCost <= msg.value, "Insufficient Funds"); for (uint256 i = 1; i <= _mintAmount; i++) { _mintNextId(msg.sender); } } function publicMint(uint256 _mintAmount) public payable { require(allowPublicMint, "Caller is not allowed to mint"); require(_mintAmount > 0, "need to mint at least 1 NFT"); uint256 cost = regularCost; uint256 totalCost = cost.mul(_mintAmount); require(totalCost <= msg.value, "Insufficient Funds"); for (uint256 i = 1; i <= _mintAmount; i++) { _mintNextId(msg.sender); } } function airdropMint(address _to, uint256 _amount) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not allowed to airdrop"); require(_currentId + _amount <= maxSupply, "Will exceed maximum supply"); for (uint256 i = 1; i <= _amount; i++) { _mintNextId(_to); } } function airdropMintBatch(address[] memory destinations) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not allowed to airdrop"); require(_currentId + destinations.length <= maxSupply, "Will exceed maximum supply"); for (uint i = 0; i < destinations.length; i++) { _mintNextId(destinations[i]); } } function _mintNextId(address to) private { _currentId = totalSupply() + 1; _safeMint(to, _currentId); } function withdraw() public payable { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not allowed to withdraw"); (bool success,) = msg.sender.call{value : address(this).balance}(""); require(success, "Withdrawal failed"); } // Burn. function burn(uint256 tokenId) public { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } // Metadata. function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = string(abi.encodePacked(baseURI, "/", Strings.toString(_tokenId), ".json")); return _tokenURI; } function setBaseURI(string memory _newBaseURI) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not allowed to set base uri"); baseURI = _newBaseURI; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } // Access function grantAdminRole(address account) public { grantRole(DEFAULT_ADMIN_ROLE, account); } function removeAdminRole(address account) public { require(account != ownerAddress, "Can not remove Admin role from owner."); revokeRole(DEFAULT_ADMIN_ROLE, account); } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view override returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || hasRole(DEFAULT_ADMIN_ROLE, _msgSender())); } // Royalties function setDefaultRoyalty(address receiver, uint96 feeNumerator) public { require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Caller is not allowed to set royalty"); _setDefaultRoyalty(receiver, feeNumerator); } function supportsInterface(bytes4 interfaceId) public view override(ERC721Enumerable, AccessControl, ERC2981) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/common/ERC2981.sol) pragma solidity ^0.8.0; import "../../interfaces/IERC2981.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information. * * Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for * specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first. * * Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the * fee is specified in basis points by default. * * IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See * https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to * voluntarily pay royalties together with sales, but note that this standard is not yet widely supported. * * _Available since v4.5._ */ abstract contract ERC2981 is IERC2981, ERC165 { struct RoyaltyInfo { address receiver; uint96 royaltyFraction; } RoyaltyInfo private _defaultRoyaltyInfo; mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } /** * @inheritdoc IERC2981 */ function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual override returns (address, uint256) { RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId]; if (royalty.receiver == address(0)) { royalty = _defaultRoyaltyInfo; } uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) / _feeDenominator(); return (royalty.receiver, royaltyAmount); } /** * @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a * fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an * override. */ function _feeDenominator() internal pure virtual returns (uint96) { return 10000; } /** * @dev Sets the royalty information that all ids in this contract will default to. * * Requirements: * * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setDefaultRoyalty(address receiver, uint96 feeNumerator) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: invalid receiver"); _defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Removes default royalty information. */ function _deleteDefaultRoyalty() internal virtual { delete _defaultRoyaltyInfo; } /** * @dev Sets the royalty information for a specific token id, overriding the global default. * * Requirements: * * - `tokenId` must be already minted. * - `receiver` cannot be the zero address. * - `feeNumerator` cannot be greater than the fee denominator. */ function _setTokenRoyalty( uint256 tokenId, address receiver, uint96 feeNumerator ) internal virtual { require(feeNumerator <= _feeDenominator(), "ERC2981: royalty fee will exceed salePrice"); require(receiver != address(0), "ERC2981: Invalid parameters"); _tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator); } /** * @dev Resets royalty information for the token id back to the global default. */ function _resetTokenRoyalty(uint256 tokenId) internal virtual { delete _tokenRoyaltyInfo[tokenId]; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.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 overridden 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 || isApprovedForAll(owner, spender) || getApproved(tokenId) == 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/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "@openzeppelin/contracts/access/AccessControl.sol"; /** * @title Hierarchy * @author Joe Ybarra Jr. USA * @notice Implements a dynamic role structure for Roles */ contract Hierarchy is AccessControl { event AdminRoleSet(bytes32 roleId, bytes32 adminRoleId); /// @dev Add `root` as a member of the root role. constructor (address root) { _setupRole(DEFAULT_ADMIN_ROLE, root); } /// @dev Restricted to members of the role passed as a parameter. modifier onlyMember(bytes32 roleId) { require(hasRole(roleId, msg.sender), "Restricted to members."); _; } /// @dev Create a new role with the specified admin role. function addRole(bytes32 roleId, bytes32 adminRoleId) public onlyMember(adminRoleId) { _setRoleAdmin(roleId, adminRoleId); emit AdminRoleSet(roleId, adminRoleId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "./SafeMathLite.sol"; /** * @dev Compute percentages safely without phantom overflows. * * Intermediate operations can overflow even when the result will always * fit into computed type. Developers usually * assume that overflows raise errors. `SafePct` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafePct { using SafeMathLite for uint256; /** * Requirements: * * - intermediate operations must revert on overflow */ function mulDiv(uint256 x, uint256 y, uint256 z) internal pure returns (uint256) { require(z > 0, "Division by zero"); if (x == 0) return 0; uint256 xy = x * y; if (xy / x == y) { // no overflow happened - same as in SafeMath mul return xy / z; } //slither-disable-next-line divide-before-multiply uint256 a = x / z; uint256 b = x % z; // x = a * z + b //slither-disable-next-line divide-before-multiply uint256 c = y / z; uint256 d = y % z; // y = c * z + d return (a.mul(c).mul(z)).add(a.mul(d)).add(b.mul(c)).add(b.mul(d).div(z)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol) pragma solidity ^0.8.0; import "../utils/introspection/IERC165.sol"; /** * @dev Interface for the NFT Royalty Standard. * * A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal * support for royalty payments across all NFT marketplaces and ecosystem participants. * * _Available since v4.5._ */ interface IERC2981 is IERC165 { /** * @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of * exchange. The royalty amount is denominated and should be paid in that same unit of exchange. */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); }
// 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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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/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/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; library SafeMathLite{ /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_ownerAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"roleId","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"adminRoleId","type":"bytes32"}],"name":"AdminRoleSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_who","type":"address"},{"indexed":false,"internalType":"uint256","name":"_value","type":"uint256"}],"name":"MaxSupplyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"roleId","type":"bytes32"},{"internalType":"bytes32","name":"adminRoleId","type":"bytes32"}],"name":"addRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"airdropMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"destinations","type":"address[]"}],"name":"airdropMintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"grantAdminRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"regularCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeAdminRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","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":"bool","name":"_allowed","type":"bool"}],"name":"setAllowPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"feeNumerator","type":"uint96"}],"name":"setDefaultRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setRegularCost","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200675e3803806200675e8339818101604052810190620000379190620006d2565b60405180606001604052806038815260200162006726603891396040518060400160405280601181526020017f4341524b41594f55532045585020382e32000000000000000000000000000000815250604051806080016040528060478152602001620066df60479139836127108185858160009080519060200190620000c09291906200060b565b508060019080519060200190620000d99291906200060b565b505050620000f16000801b82620001ac60201b60201c565b506200010383620001c260201b60201c565b81601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601260146101000a81548160ff02191690831515021790555080600d8190555050505050506200017d60006200024460201b60201c565b620001a57324462722e63ca1bab3a2311dffa4a3a21665647a6102ee6200027c60201b60201c565b5062000a07565b620001be8282620002f860201b60201c565b5050565b620001e66000801b620001da620003ea60201b60201c565b620003f260201b60201c565b62000228576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200021f9062000806565b60405180910390fd5b80600f9080519060200190620002409291906200060b565b5050565b620002686000801b6200025c620003ea60201b60201c565b620003f260201b60201c565b6200027257600080fd5b8060118190555050565b620002a06000801b62000294620003ea60201b60201c565b620003f260201b60201c565b620002e2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d990620007c2565b60405180910390fd5b620002f482826200045d60201b60201c565b5050565b6200030a8282620003f260201b60201c565b620003e6576001600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200038b620003ea60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b600033905090565b6000600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6200046d6200060160201b60201c565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115620004ce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004c590620007a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000541576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200053890620007e4565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b6000612710905090565b82805462000619906200086d565b90600052602060002090601f0160209004810192826200063d576000855562000689565b82601f106200065857805160ff191683800117855562000689565b8280016001018555821562000689579182015b82811115620006885782518255916020019190600101906200066b565b5b5090506200069891906200069c565b5090565b5b80821115620006b75760008160009055506001016200069d565b5090565b600081519050620006cc81620009ed565b92915050565b600060208284031215620006eb57620006ea620008d2565b5b6000620006fb84828501620006bb565b91505092915050565b600062000713602a8362000828565b91506200072082620008d7565b604082019050919050565b60006200073a60248362000828565b9150620007478262000926565b604082019050919050565b60006200076160198362000828565b91506200076e8262000975565b602082019050919050565b60006200078860258362000828565b915062000795826200099e565b604082019050919050565b60006020820190508181036000830152620007bb8162000704565b9050919050565b60006020820190508181036000830152620007dd816200072b565b9050919050565b60006020820190508181036000830152620007ff8162000752565b9050919050565b60006020820190508181036000830152620008218162000779565b9050919050565b600082825260208201905092915050565b600062000846826200084d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600060028204905060018216806200088657607f821691505b602082108114156200089d576200089c620008a3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f2073657420726f7960008201527f616c747900000000000000000000000000000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f207365742062617360008201527f6520757269000000000000000000000000000000000000000000000000000000602082015250565b620009f88162000839565b811462000a0457600080fd5b50565b615cc88062000a176000396000f3fe6080604052600436106102465760003560e01c806351511cb411610139578063a22cb465116100b6578063d547741f1161007a578063d547741f14610894578063d5abeb01146108bd578063dccfe310146108e8578063e1ec629414610911578063e985e9c51461093a578063ea798c6d1461097757610246565b8063a22cb465146107b3578063b88d4fde146107dc578063c634b78e14610805578063c87b56dd1461082e578063d0b659841461086b57610246565b806370a08231116100fd57806370a08231146106c757806391d148541461070457806395d89b4114610741578063a0712d681461076c578063a217fddf1461078857610246565b806351511cb4146105e457806355f804b31461060d5780636352211e146106365780636c0360eb146106735780636f8b44b01461069e57610246565b80632a55205a116101c757806336568abe1161018b57806336568abe146105225780633ccfd60b1461054b57806342842e0e1461055557806342966c681461057e5780634f6ccce7146105a757610246565b80632a55205a146104255780632acc659e146104635780632db11544146104a05780632f2ff15d146104bc5780632f745c59146104e557610246565b8063095ea7b31161020e578063095ea7b31461034257806318160ddd1461036b57806322ad06701461039657806323b872dd146103bf578063248a9ca3146103e857610246565b806301ffc9a71461024b57806304634d8d1461028857806306323f8d146102b157806306fdde03146102da578063081812fc14610305575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613ea7565b6109a2565b60405161027f91906147c9565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613d44565b6109b4565b005b3480156102bd57600080fd5b506102d860048036038101906102d39190613e67565b610a15565b005b3480156102e657600080fd5b506102ef610aa7565b6040516102fc9190614828565b60405180910390f35b34801561031157600080fd5b5061032c60048036038101906103279190613f4a565b610b39565b6040516103399190614739565b60405180910390f35b34801561034e57600080fd5b5061036960048036038101906103649190613d04565b610bbe565b005b34801561037757600080fd5b50610380610cd6565b60405161038d9190614cca565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190613d04565b610ce3565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190613bee565b610db7565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190613dfa565b610e17565b60405161041c91906147e4565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613f77565b610e37565b60405161045a9291906147a0565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190613b81565b611022565b6040516104979190614cca565b60405180910390f35b6104ba60048036038101906104b59190613f4a565b61109d565b005b3480156104c857600080fd5b506104e360048036038101906104de9190613e27565b6111c0565b005b3480156104f157600080fd5b5061050c60048036038101906105079190613d04565b6111e1565b6040516105199190614cca565b60405180910390f35b34801561052e57600080fd5b5061054960048036038101906105449190613e27565b611286565b005b610553611309565b005b34801561056157600080fd5b5061057c60048036038101906105779190613bee565b61140b565b005b34801561058a57600080fd5b506105a560048036038101906105a09190613f4a565b61142b565b005b3480156105b357600080fd5b506105ce60048036038101906105c99190613f4a565b611487565b6040516105db9190614cca565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190613d84565b6114f8565b005b34801561061957600080fd5b50610634600480360381019061062f9190613f01565b6115e4565b005b34801561064257600080fd5b5061065d60048036038101906106589190613f4a565b611651565b60405161066a9190614739565b60405180910390f35b34801561067f57600080fd5b50610688611703565b6040516106959190614828565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190613f4a565b611791565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613b81565b61188c565b6040516106fb9190614cca565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613e27565b611944565b60405161073891906147c9565b60405180910390f35b34801561074d57600080fd5b506107566119af565b6040516107639190614828565b60405180910390f35b61078660048036038101906107819190613f4a565b611a41565b005b34801561079457600080fd5b5061079d611b68565b6040516107aa91906147e4565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d59190613cc4565b611b6f565b005b3480156107e857600080fd5b5061080360048036038101906107fe9190613c41565b611b85565b005b34801561081157600080fd5b5061082c60048036038101906108279190613b81565b611be7565b005b34801561083a57600080fd5b5061085560048036038101906108509190613f4a565b611bf7565b6040516108629190614828565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d9190613dcd565b611c79565b005b3480156108a057600080fd5b506108bb60048036038101906108b69190613e27565b611ce9565b005b3480156108c957600080fd5b506108d2611d0a565b6040516108df9190614cca565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a9190613b81565b611d10565b005b34801561091d57600080fd5b5061093860048036038101906109339190613f4a565b611db1565b005b34801561094657600080fd5b50610961600480360381019061095c9190613bae565b611dd8565b60405161096e91906147c9565b60405180910390f35b34801561098357600080fd5b5061098c611e6c565b6040516109999190614cca565b60405180910390f35b60006109ad82611e72565b9050919050565b6109c86000801b6109c3611eec565b611944565b610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90614bea565b60405180910390fd5b610a118282611ef4565b5050565b80610a208133611944565b610a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a569061488a565b60405180910390fd5b610a69838361208a565b7fe4723ce431fe464957aed6348016e9a32871bf3e3781d3642ea487276e6a68b68383604051610a9a9291906147ff565b60405180910390a1505050565b606060008054610ab690615012565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae290615012565b8015610b2f5780601f10610b0457610100808354040283529160200191610b2f565b820191906000526020600020905b815481529060010190602001808311610b1257829003601f168201915b5050505050905090565b6000610b44826120e6565b610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90614aea565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc982611651565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190614b4a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c59611eec565b73ffffffffffffffffffffffffffffffffffffffff161480610c885750610c8781610c82611eec565b611dd8565b5b610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90614a6a565b60405180910390fd5b610cd18383612152565b505050565b6000600880549050905090565b610cf76000801b610cf2611eec565b611944565b610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90614bca565b60405180910390fd5b600d5481600e54610d479190614dfb565b1115610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90614a4a565b60405180910390fd5b6000600190505b818111610db257610d9f8361220b565b8080610daa90615075565b915050610d8f565b505050565b610dc8610dc2611eec565b82612234565b610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90614b6a565b60405180910390fd5b610e128383836122de565b505050565b6000600c6000838152602001908152602001600020600101549050919050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610fcd57600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610fd7612545565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866110039190614e82565b61100d9190614e51565b90508160000151819350935050509250929050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90614b2a565b60405180910390fd5b6011549050919050565b601260149054906101000a900460ff166110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e3906148ca565b60405180910390fd5b6000811161112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690614c6a565b60405180910390fd5b60006011549050600061114b838361254f90919063ffffffff16565b905034811115611190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111879061496a565b60405180910390fd5b6000600190505b8381116111ba576111a73361220b565b80806111b290615075565b915050611197565b50505050565b6111c982610e17565b6111d281612565565b6111dc8383612579565b505050565b60006111ec8361188c565b821061122d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112249061486a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61128e611eec565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290614c8a565b60405180910390fd5b611305828261265a565b5050565b61131d6000801b611318611eec565b611944565b61135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390614a0a565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611382906146ea565b60006040518083038185875af1925050503d80600081146113bf576040519150601f19603f3d011682016040523d82523d6000602084013e6113c4565b606091505b5050905080611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90614c0a565b60405180910390fd5b50565b61142683838360405180602001604052806000815250611b85565b505050565b61143c611436611eec565b82612234565b61147b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147290614c2a565b60405180910390fd5b6114848161273c565b50565b6000611491610cd6565b82106114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990614b8a565b60405180910390fd5b600882815481106114e6576114e56151ab565b5b90600052602060002001549050919050565b61150c6000801b611507611eec565b611944565b61154b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154290614bca565b60405180910390fd5b600d548151600e5461155d9190614dfb565b111561159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159590614a4a565b60405180910390fd5b60005b81518110156115e0576115cd8282815181106115c0576115bf6151ab565b5b602002602001015161220b565b80806115d890615075565b9150506115a1565b5050565b6115f86000801b6115f3611eec565b611944565b611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e90614caa565b60405180910390fd5b80600f908051906020019061164d9291906138cd565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190614aaa565b60405180910390fd5b80915050919050565b600f805461171090615012565b80601f016020809104026020016040519081016040528092919081815260200182805461173c90615012565b80156117895780601f1061175e57610100808354040283529160200191611789565b820191906000526020600020905b81548152906001019060200180831161176c57829003601f168201915b505050505081565b6117a56000801b6117a0611eec565b611944565b6117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db906148ea565b60405180910390fd5b806001600e546117f49190614dfb565b10611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b9061494a565b60405180910390fd5b80600d819055503373ffffffffffffffffffffffffffffffffffffffff167f26843c619c87f9021bcc4ec5143177198076d9da3c13ce1bb2e941644c69d42e826040516118819190614cca565b60405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f490614a8a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600180546119be90615012565b80601f01602080910402602001604051908101604052809291908181526020018280546119ea90615012565b8015611a375780601f10611a0c57610100808354040283529160200191611a37565b820191906000526020600020905b815481529060010190602001808311611a1a57829003601f168201915b5050505050905090565b611a556000801b611a50611eec565b611944565b611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b906148ca565b60405180910390fd5b60008111611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90614c6a565b60405180910390fd5b600060115490506000611af3838361254f90919063ffffffff16565b905034811115611b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2f9061496a565b60405180910390fd5b6000600190505b838111611b6257611b4f3361220b565b8080611b5a90615075565b915050611b3f565b50505050565b6000801b81565b611b81611b7a611eec565b8383612859565b5050565b611b96611b90611eec565b83612234565b611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90614b6a565b60405180910390fd5b611be1848484846129c6565b50505050565b611bf46000801b826111c0565b50565b6060611c02826120e6565b611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890614b0a565b60405180910390fd5b6000600f611c4e84612a22565b604051602001611c5f9291906146b0565b604051602081830303815290604052905080915050919050565b611c8d6000801b611c88611eec565b611944565b611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390614a2a565b60405180910390fd5b80601260146101000a81548160ff02191690831515021790555050565b611cf282610e17565b611cfb81612565565b611d05838361265a565b505050565b600d5481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d98906149ca565b60405180910390fd5b611dae6000801b82611ce9565b50565b611dc56000801b611dc0611eec565b611944565b611dce57600080fd5b8060118190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60115481565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ee55750611ee482612b83565b5b9050919050565b600033905090565b611efc612545565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190614baa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc190614c4a565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600061209583610e17565b905081600c6000858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121c583611651565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001612215610cd6565b61221f9190614dfb565b600e8190555061223181600e54612bfd565b50565b600061223f826120e6565b61227e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612275906149ea565b60405180910390fd5b600061228983611651565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122d557506122d46000801b6122cf611eec565b611944565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122fe82611651565b73ffffffffffffffffffffffffffffffffffffffff1614612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b9061490a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bb9061498a565b60405180910390fd5b6123cf838383612c1b565b6123da600082612152565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461242a9190614edc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124819190614dfb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612540838383612d2f565b505050565b6000612710905090565b6000818361255d9190614e82565b905092915050565b61257681612571611eec565b612d34565b50565b6125838282611944565b612656576001600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125fb611eec565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6126648282611944565b15612738576000600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506126dd611eec565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600061274782611651565b905061275581600084612c1b565b612760600083612152565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127b09190614edc565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461285581600084612d2f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bf906149aa565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129b991906147c9565b60405180910390a3505050565b6129d18484846122de565b6129dd84848484612dd1565b612a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a13906148aa565b60405180910390fd5b50505050565b60606000821415612a6a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b7e565b600082905060005b60008214612a9c578080612a8590615075565b915050600a82612a959190614e51565b9150612a72565b60008167ffffffffffffffff811115612ab857612ab76151da565b5b6040519080825280601f01601f191660200182016040528015612aea5781602001600182028036833780820191505090505b5090505b60008514612b7757600182612b039190614edc565b9150600a85612b1291906150be565b6030612b1e9190614dfb565b60f81b818381518110612b3457612b336151ab565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b709190614e51565b9450612aee565b8093505050505b919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bf65750612bf582612f68565b5b9050919050565b612c17828260405180602001604052806000815250612fe2565b5050565b612c2683838361303d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c6957612c6481613042565b612ca8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ca757612ca6838261308b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ceb57612ce6816131f8565b612d2a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d2957612d2882826132c9565b5b5b505050565b505050565b612d3e8282611944565b612dcd57612d638173ffffffffffffffffffffffffffffffffffffffff166014613348565b612d718360001c6020613348565b604051602001612d829291906146ff565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc49190614828565b60405180910390fd5b5050565b6000612df28473ffffffffffffffffffffffffffffffffffffffff16613584565b15612f5b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e1b611eec565b8786866040518563ffffffff1660e01b8152600401612e3d9493929190614754565b602060405180830381600087803b158015612e5757600080fd5b505af1925050508015612e8857506040513d601f19601f82011682018060405250810190612e859190613ed4565b60015b612f0b573d8060008114612eb8576040519150601f19603f3d011682016040523d82523d6000602084013e612ebd565b606091505b50600081511415612f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efa906148aa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f60565b600190505b949350505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612fdb5750612fda826135a7565b5b9050919050565b612fec8383613689565b612ff96000848484612dd1565b613038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302f906148aa565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016130988461188c565b6130a29190614edc565b9050600060076000848152602001908152602001600020549050818114613187576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061320c9190614edc565b905060006009600084815260200190815260200160002054905060006008838154811061323c5761323b6151ab565b5b90600052602060002001549050806008838154811061325e5761325d6151ab565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132ad576132ac61517c565b5b6001900381819060005260206000200160009055905550505050565b60006132d48361188c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60606000600283600261335b9190614e82565b6133659190614dfb565b67ffffffffffffffff81111561337e5761337d6151da565b5b6040519080825280601f01601f1916602001820160405280156133b05781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106133e8576133e76151ab565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061344c5761344b6151ab565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261348c9190614e82565b6134969190614dfb565b90505b6001811115613536577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106134d8576134d76151ab565b5b1a60f81b8282815181106134ef576134ee6151ab565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061352f90614fe8565b9050613499565b506000841461357a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135719061484a565b60405180910390fd5b8091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061367257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613682575061368182613863565b5b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f090614aca565b60405180910390fd5b613702816120e6565b15613742576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137399061492a565b60405180910390fd5b61374e60008383612c1b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461379e9190614dfb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461385f60008383612d2f565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8280546138d990615012565b90600052602060002090601f0160209004810192826138fb5760008555613942565b82601f1061391457805160ff1916838001178555613942565b82800160010185558215613942579182015b82811115613941578251825591602001919060010190613926565b5b50905061394f9190613953565b5090565b5b8082111561396c576000816000905550600101613954565b5090565b600061398361397e84614d0a565b614ce5565b905080838252602082019050828560208602820111156139a6576139a561520e565b5b60005b858110156139d657816139bc8882613a64565b8452602084019350602083019250506001810190506139a9565b5050509392505050565b60006139f36139ee84614d36565b614ce5565b905082815260208101848484011115613a0f57613a0e615213565b5b613a1a848285614fa6565b509392505050565b6000613a35613a3084614d67565b614ce5565b905082815260208101848484011115613a5157613a50615213565b5b613a5c848285614fa6565b509392505050565b600081359050613a7381615c08565b92915050565b600082601f830112613a8e57613a8d615209565b5b8135613a9e848260208601613970565b91505092915050565b600081359050613ab681615c1f565b92915050565b600081359050613acb81615c36565b92915050565b600081359050613ae081615c4d565b92915050565b600081519050613af581615c4d565b92915050565b600082601f830112613b1057613b0f615209565b5b8135613b208482602086016139e0565b91505092915050565b600082601f830112613b3e57613b3d615209565b5b8135613b4e848260208601613a22565b91505092915050565b600081359050613b6681615c64565b92915050565b600081359050613b7b81615c7b565b92915050565b600060208284031215613b9757613b9661521d565b5b6000613ba584828501613a64565b91505092915050565b60008060408385031215613bc557613bc461521d565b5b6000613bd385828601613a64565b9250506020613be485828601613a64565b9150509250929050565b600080600060608486031215613c0757613c0661521d565b5b6000613c1586828701613a64565b9350506020613c2686828701613a64565b9250506040613c3786828701613b57565b9150509250925092565b60008060008060808587031215613c5b57613c5a61521d565b5b6000613c6987828801613a64565b9450506020613c7a87828801613a64565b9350506040613c8b87828801613b57565b925050606085013567ffffffffffffffff811115613cac57613cab615218565b5b613cb887828801613afb565b91505092959194509250565b60008060408385031215613cdb57613cda61521d565b5b6000613ce985828601613a64565b9250506020613cfa85828601613aa7565b9150509250929050565b60008060408385031215613d1b57613d1a61521d565b5b6000613d2985828601613a64565b9250506020613d3a85828601613b57565b9150509250929050565b60008060408385031215613d5b57613d5a61521d565b5b6000613d6985828601613a64565b9250506020613d7a85828601613b6c565b9150509250929050565b600060208284031215613d9a57613d9961521d565b5b600082013567ffffffffffffffff811115613db857613db7615218565b5b613dc484828501613a79565b91505092915050565b600060208284031215613de357613de261521d565b5b6000613df184828501613aa7565b91505092915050565b600060208284031215613e1057613e0f61521d565b5b6000613e1e84828501613abc565b91505092915050565b60008060408385031215613e3e57613e3d61521d565b5b6000613e4c85828601613abc565b9250506020613e5d85828601613a64565b9150509250929050565b60008060408385031215613e7e57613e7d61521d565b5b6000613e8c85828601613abc565b9250506020613e9d85828601613abc565b9150509250929050565b600060208284031215613ebd57613ebc61521d565b5b6000613ecb84828501613ad1565b91505092915050565b600060208284031215613eea57613ee961521d565b5b6000613ef884828501613ae6565b91505092915050565b600060208284031215613f1757613f1661521d565b5b600082013567ffffffffffffffff811115613f3557613f34615218565b5b613f4184828501613b29565b91505092915050565b600060208284031215613f6057613f5f61521d565b5b6000613f6e84828501613b57565b91505092915050565b60008060408385031215613f8e57613f8d61521d565b5b6000613f9c85828601613b57565b9250506020613fad85828601613b57565b9150509250929050565b613fc081614f10565b82525050565b613fcf81614f22565b82525050565b613fde81614f2e565b82525050565b6000613fef82614dad565b613ff98185614dc3565b9350614009818560208601614fb5565b61401281615222565b840191505092915050565b600061402882614db8565b6140328185614ddf565b9350614042818560208601614fb5565b61404b81615222565b840191505092915050565b600061406182614db8565b61406b8185614df0565b935061407b818560208601614fb5565b80840191505092915050565b6000815461409481615012565b61409e8186614df0565b945060018216600081146140b957600181146140ca576140fd565b60ff198316865281860193506140fd565b6140d385614d98565b60005b838110156140f5578154818901526001820191506020810190506140d6565b838801955050505b50505092915050565b6000614113602083614ddf565b915061411e82615233565b602082019050919050565b6000614136602b83614ddf565b91506141418261525c565b604082019050919050565b6000614159601683614ddf565b9150614164826152ab565b602082019050919050565b600061417c603283614ddf565b9150614187826152d4565b604082019050919050565b600061419f601d83614ddf565b91506141aa82615323565b602082019050919050565b60006141c2602783614ddf565b91506141cd8261534c565b604082019050919050565b60006141e5602583614ddf565b91506141f08261539b565b604082019050919050565b6000614208601c83614ddf565b9150614213826153ea565b602082019050919050565b600061422b602e83614ddf565b915061423682615413565b604082019050919050565b600061424e601283614ddf565b915061425982615462565b602082019050919050565b6000614271602483614ddf565b915061427c8261548b565b604082019050919050565b6000614294601983614ddf565b915061429f826154da565b602082019050919050565b60006142b7602583614ddf565b91506142c282615503565b604082019050919050565b60006142da602c83614ddf565b91506142e582615552565b604082019050919050565b60006142fd602183614ddf565b9150614308826155a1565b604082019050919050565b6000614320602983614ddf565b915061432b826155f0565b604082019050919050565b6000614343601a83614ddf565b915061434e8261563f565b602082019050919050565b6000614366603883614ddf565b915061437182615668565b604082019050919050565b6000614389602a83614ddf565b9150614394826156b7565b604082019050919050565b60006143ac602983614ddf565b91506143b782615706565b604082019050919050565b60006143cf602083614ddf565b91506143da82615755565b602082019050919050565b60006143f2602c83614ddf565b91506143fd8261577e565b604082019050919050565b6000614415600583614df0565b9150614420826157cd565b600582019050919050565b6000614438602f83614ddf565b9150614443826157f6565b604082019050919050565b600061445b600d83614ddf565b915061446682615845565b602082019050919050565b600061447e602183614ddf565b91506144898261586e565b604082019050919050565b60006144a1600083614dd4565b91506144ac826158bd565b600082019050919050565b60006144c4603183614ddf565b91506144cf826158c0565b604082019050919050565b60006144e7602c83614ddf565b91506144f28261590f565b604082019050919050565b600061450a601783614df0565b91506145158261595e565b601782019050919050565b600061452d602a83614ddf565b915061453882615987565b604082019050919050565b6000614550602083614ddf565b915061455b826159d6565b602082019050919050565b6000614573602483614ddf565b915061457e826159ff565b604082019050919050565b6000614596601183614ddf565b91506145a182615a4e565b602082019050919050565b60006145b9603083614ddf565b91506145c482615a77565b604082019050919050565b60006145dc601983614ddf565b91506145e782615ac6565b602082019050919050565b60006145ff601b83614ddf565b915061460a82615aef565b602082019050919050565b6000614622601183614df0565b915061462d82615b18565b601182019050919050565b6000614645602f83614ddf565b915061465082615b41565b604082019050919050565b6000614668600183614df0565b915061467382615b90565b600182019050919050565b600061468b602583614ddf565b915061469682615bb9565b604082019050919050565b6146aa81614f84565b82525050565b60006146bc8285614087565b91506146c78261465b565b91506146d38284614056565b91506146de82614408565b91508190509392505050565b60006146f582614494565b9150819050919050565b600061470a826144fd565b91506147168285614056565b915061472182614615565b915061472d8284614056565b91508190509392505050565b600060208201905061474e6000830184613fb7565b92915050565b60006080820190506147696000830187613fb7565b6147766020830186613fb7565b61478360408301856146a1565b81810360608301526147958184613fe4565b905095945050505050565b60006040820190506147b56000830185613fb7565b6147c260208301846146a1565b9392505050565b60006020820190506147de6000830184613fc6565b92915050565b60006020820190506147f96000830184613fd5565b92915050565b60006040820190506148146000830185613fd5565b6148216020830184613fd5565b9392505050565b60006020820190508181036000830152614842818461401d565b905092915050565b6000602082019050818103600083015261486381614106565b9050919050565b6000602082019050818103600083015261488381614129565b9050919050565b600060208201905081810360008301526148a38161414c565b9050919050565b600060208201905081810360008301526148c38161416f565b9050919050565b600060208201905081810360008301526148e381614192565b9050919050565b60006020820190508181036000830152614903816141b5565b9050919050565b60006020820190508181036000830152614923816141d8565b9050919050565b60006020820190508181036000830152614943816141fb565b9050919050565b600060208201905081810360008301526149638161421e565b9050919050565b6000602082019050818103600083015261498381614241565b9050919050565b600060208201905081810360008301526149a381614264565b9050919050565b600060208201905081810360008301526149c381614287565b9050919050565b600060208201905081810360008301526149e3816142aa565b9050919050565b60006020820190508181036000830152614a03816142cd565b9050919050565b60006020820190508181036000830152614a23816142f0565b9050919050565b60006020820190508181036000830152614a4381614313565b9050919050565b60006020820190508181036000830152614a6381614336565b9050919050565b60006020820190508181036000830152614a8381614359565b9050919050565b60006020820190508181036000830152614aa38161437c565b9050919050565b60006020820190508181036000830152614ac38161439f565b9050919050565b60006020820190508181036000830152614ae3816143c2565b9050919050565b60006020820190508181036000830152614b03816143e5565b9050919050565b60006020820190508181036000830152614b238161442b565b9050919050565b60006020820190508181036000830152614b438161444e565b9050919050565b60006020820190508181036000830152614b6381614471565b9050919050565b60006020820190508181036000830152614b83816144b7565b9050919050565b60006020820190508181036000830152614ba3816144da565b9050919050565b60006020820190508181036000830152614bc381614520565b9050919050565b60006020820190508181036000830152614be381614543565b9050919050565b60006020820190508181036000830152614c0381614566565b9050919050565b60006020820190508181036000830152614c2381614589565b9050919050565b60006020820190508181036000830152614c43816145ac565b9050919050565b60006020820190508181036000830152614c63816145cf565b9050919050565b60006020820190508181036000830152614c83816145f2565b9050919050565b60006020820190508181036000830152614ca381614638565b9050919050565b60006020820190508181036000830152614cc38161467e565b9050919050565b6000602082019050614cdf60008301846146a1565b92915050565b6000614cef614d00565b9050614cfb8282615044565b919050565b6000604051905090565b600067ffffffffffffffff821115614d2557614d246151da565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614d5157614d506151da565b5b614d5a82615222565b9050602081019050919050565b600067ffffffffffffffff821115614d8257614d816151da565b5b614d8b82615222565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e0682614f84565b9150614e1183614f84565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e4657614e456150ef565b5b828201905092915050565b6000614e5c82614f84565b9150614e6783614f84565b925082614e7757614e7661511e565b5b828204905092915050565b6000614e8d82614f84565b9150614e9883614f84565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ed157614ed06150ef565b5b828202905092915050565b6000614ee782614f84565b9150614ef283614f84565b925082821015614f0557614f046150ef565b5b828203905092915050565b6000614f1b82614f64565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614fd3578082015181840152602081019050614fb8565b83811115614fe2576000848401525b50505050565b6000614ff382614f84565b91506000821415615007576150066150ef565b5b600182039050919050565b6000600282049050600182168061502a57607f821691505b6020821081141561503e5761503d61514d565b5b50919050565b61504d82615222565b810181811067ffffffffffffffff8211171561506c5761506b6151da565b5b80604052505050565b600061508082614f84565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150b3576150b26150ef565b5b600182019050919050565b60006150c982614f84565b91506150d483614f84565b9250826150e4576150e361511e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f5265737472696374656420746f206d656d626572732e00000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f206d696e74000000600082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f20736574206d617860008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d617820737570706c792063616e206e6f74206265206c657373207468616e2060008201527f63757272656e7420737570706c79000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616e206e6f742072656d6f76652041646d696e20726f6c652066726f6d206f60008201527f776e65722e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f207769746864726160008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f207365742070756260008201527f6c6963206d696e742e0000000000000000000000000000000000000000000000602082015250565b7f57696c6c20657863656564206d6178696d756d20737570706c79000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6f742061646472657373203000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f2061697264726f70600082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f2073657420726f7960008201527f616c747900000000000000000000000000000000000000000000000000000000602082015250565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f207365742062617360008201527f6520757269000000000000000000000000000000000000000000000000000000602082015250565b615c1181614f10565b8114615c1c57600080fd5b50565b615c2881614f22565b8114615c3357600080fd5b50565b615c3f81614f2e565b8114615c4a57600080fd5b50565b615c5681614f38565b8114615c6157600080fd5b50565b615c6d81614f84565b8114615c7857600080fd5b50565b615c8481614f8e565b8114615c8f57600080fd5b5056fea2646970667358221220f9e0e9170f8a8a3ee66b6a8e8258cf6cc8eec84dfaf058bddf2f1dd7b1dd8e9d64736f6c6343000807003368747470733a2f2f7777772e6c7573686c696e6b2e696f2f636f6c6c656374696f6e2f4d6e46785333493153334a315a43394a4f445934626b4e4657486c48647a30392f6e66744361726b61796f75732045787065646974696f6e20382e32202d2054686520426c6f6f6d696e67206f6620746865205073696c6f6669736800000000000000000000000024462722e63ca1bab3a2311dffa4a3a21665647a
Deployed Bytecode
0x6080604052600436106102465760003560e01c806351511cb411610139578063a22cb465116100b6578063d547741f1161007a578063d547741f14610894578063d5abeb01146108bd578063dccfe310146108e8578063e1ec629414610911578063e985e9c51461093a578063ea798c6d1461097757610246565b8063a22cb465146107b3578063b88d4fde146107dc578063c634b78e14610805578063c87b56dd1461082e578063d0b659841461086b57610246565b806370a08231116100fd57806370a08231146106c757806391d148541461070457806395d89b4114610741578063a0712d681461076c578063a217fddf1461078857610246565b806351511cb4146105e457806355f804b31461060d5780636352211e146106365780636c0360eb146106735780636f8b44b01461069e57610246565b80632a55205a116101c757806336568abe1161018b57806336568abe146105225780633ccfd60b1461054b57806342842e0e1461055557806342966c681461057e5780634f6ccce7146105a757610246565b80632a55205a146104255780632acc659e146104635780632db11544146104a05780632f2ff15d146104bc5780632f745c59146104e557610246565b8063095ea7b31161020e578063095ea7b31461034257806318160ddd1461036b57806322ad06701461039657806323b872dd146103bf578063248a9ca3146103e857610246565b806301ffc9a71461024b57806304634d8d1461028857806306323f8d146102b157806306fdde03146102da578063081812fc14610305575b600080fd5b34801561025757600080fd5b50610272600480360381019061026d9190613ea7565b6109a2565b60405161027f91906147c9565b60405180910390f35b34801561029457600080fd5b506102af60048036038101906102aa9190613d44565b6109b4565b005b3480156102bd57600080fd5b506102d860048036038101906102d39190613e67565b610a15565b005b3480156102e657600080fd5b506102ef610aa7565b6040516102fc9190614828565b60405180910390f35b34801561031157600080fd5b5061032c60048036038101906103279190613f4a565b610b39565b6040516103399190614739565b60405180910390f35b34801561034e57600080fd5b5061036960048036038101906103649190613d04565b610bbe565b005b34801561037757600080fd5b50610380610cd6565b60405161038d9190614cca565b60405180910390f35b3480156103a257600080fd5b506103bd60048036038101906103b89190613d04565b610ce3565b005b3480156103cb57600080fd5b506103e660048036038101906103e19190613bee565b610db7565b005b3480156103f457600080fd5b5061040f600480360381019061040a9190613dfa565b610e17565b60405161041c91906147e4565b60405180910390f35b34801561043157600080fd5b5061044c60048036038101906104479190613f77565b610e37565b60405161045a9291906147a0565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190613b81565b611022565b6040516104979190614cca565b60405180910390f35b6104ba60048036038101906104b59190613f4a565b61109d565b005b3480156104c857600080fd5b506104e360048036038101906104de9190613e27565b6111c0565b005b3480156104f157600080fd5b5061050c60048036038101906105079190613d04565b6111e1565b6040516105199190614cca565b60405180910390f35b34801561052e57600080fd5b5061054960048036038101906105449190613e27565b611286565b005b610553611309565b005b34801561056157600080fd5b5061057c60048036038101906105779190613bee565b61140b565b005b34801561058a57600080fd5b506105a560048036038101906105a09190613f4a565b61142b565b005b3480156105b357600080fd5b506105ce60048036038101906105c99190613f4a565b611487565b6040516105db9190614cca565b60405180910390f35b3480156105f057600080fd5b5061060b60048036038101906106069190613d84565b6114f8565b005b34801561061957600080fd5b50610634600480360381019061062f9190613f01565b6115e4565b005b34801561064257600080fd5b5061065d60048036038101906106589190613f4a565b611651565b60405161066a9190614739565b60405180910390f35b34801561067f57600080fd5b50610688611703565b6040516106959190614828565b60405180910390f35b3480156106aa57600080fd5b506106c560048036038101906106c09190613f4a565b611791565b005b3480156106d357600080fd5b506106ee60048036038101906106e99190613b81565b61188c565b6040516106fb9190614cca565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190613e27565b611944565b60405161073891906147c9565b60405180910390f35b34801561074d57600080fd5b506107566119af565b6040516107639190614828565b60405180910390f35b61078660048036038101906107819190613f4a565b611a41565b005b34801561079457600080fd5b5061079d611b68565b6040516107aa91906147e4565b60405180910390f35b3480156107bf57600080fd5b506107da60048036038101906107d59190613cc4565b611b6f565b005b3480156107e857600080fd5b5061080360048036038101906107fe9190613c41565b611b85565b005b34801561081157600080fd5b5061082c60048036038101906108279190613b81565b611be7565b005b34801561083a57600080fd5b5061085560048036038101906108509190613f4a565b611bf7565b6040516108629190614828565b60405180910390f35b34801561087757600080fd5b50610892600480360381019061088d9190613dcd565b611c79565b005b3480156108a057600080fd5b506108bb60048036038101906108b69190613e27565b611ce9565b005b3480156108c957600080fd5b506108d2611d0a565b6040516108df9190614cca565b60405180910390f35b3480156108f457600080fd5b5061090f600480360381019061090a9190613b81565b611d10565b005b34801561091d57600080fd5b5061093860048036038101906109339190613f4a565b611db1565b005b34801561094657600080fd5b50610961600480360381019061095c9190613bae565b611dd8565b60405161096e91906147c9565b60405180910390f35b34801561098357600080fd5b5061098c611e6c565b6040516109999190614cca565b60405180910390f35b60006109ad82611e72565b9050919050565b6109c86000801b6109c3611eec565b611944565b610a07576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fe90614bea565b60405180910390fd5b610a118282611ef4565b5050565b80610a208133611944565b610a5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a569061488a565b60405180910390fd5b610a69838361208a565b7fe4723ce431fe464957aed6348016e9a32871bf3e3781d3642ea487276e6a68b68383604051610a9a9291906147ff565b60405180910390a1505050565b606060008054610ab690615012565b80601f0160208091040260200160405190810160405280929190818152602001828054610ae290615012565b8015610b2f5780601f10610b0457610100808354040283529160200191610b2f565b820191906000526020600020905b815481529060010190602001808311610b1257829003601f168201915b5050505050905090565b6000610b44826120e6565b610b83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7a90614aea565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610bc982611651565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3190614b4a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610c59611eec565b73ffffffffffffffffffffffffffffffffffffffff161480610c885750610c8781610c82611eec565b611dd8565b5b610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90614a6a565b60405180910390fd5b610cd18383612152565b505050565b6000600880549050905090565b610cf76000801b610cf2611eec565b611944565b610d36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2d90614bca565b60405180910390fd5b600d5481600e54610d479190614dfb565b1115610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90614a4a565b60405180910390fd5b6000600190505b818111610db257610d9f8361220b565b8080610daa90615075565b915050610d8f565b505050565b610dc8610dc2611eec565b82612234565b610e07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfe90614b6a565b60405180910390fd5b610e128383836122de565b505050565b6000600c6000838152602001908152602001600020600101549050919050565b6000806000600b60008681526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161415610fcd57600a6040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff168152505090505b6000610fd7612545565b6bffffffffffffffffffffffff1682602001516bffffffffffffffffffffffff16866110039190614e82565b61100d9190614e51565b90508160000151819350935050509250929050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611093576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108a90614b2a565b60405180910390fd5b6011549050919050565b601260149054906101000a900460ff166110ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e3906148ca565b60405180910390fd5b6000811161112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690614c6a565b60405180910390fd5b60006011549050600061114b838361254f90919063ffffffff16565b905034811115611190576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111879061496a565b60405180910390fd5b6000600190505b8381116111ba576111a73361220b565b80806111b290615075565b915050611197565b50505050565b6111c982610e17565b6111d281612565565b6111dc8383612579565b505050565b60006111ec8361188c565b821061122d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112249061486a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61128e611eec565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f290614c8a565b60405180910390fd5b611305828261265a565b5050565b61131d6000801b611318611eec565b611944565b61135c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135390614a0a565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff1647604051611382906146ea565b60006040518083038185875af1925050503d80600081146113bf576040519150601f19603f3d011682016040523d82523d6000602084013e6113c4565b606091505b5050905080611408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ff90614c0a565b60405180910390fd5b50565b61142683838360405180602001604052806000815250611b85565b505050565b61143c611436611eec565b82612234565b61147b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147290614c2a565b60405180910390fd5b6114848161273c565b50565b6000611491610cd6565b82106114d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c990614b8a565b60405180910390fd5b600882815481106114e6576114e56151ab565b5b90600052602060002001549050919050565b61150c6000801b611507611eec565b611944565b61154b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154290614bca565b60405180910390fd5b600d548151600e5461155d9190614dfb565b111561159e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161159590614a4a565b60405180910390fd5b60005b81518110156115e0576115cd8282815181106115c0576115bf6151ab565b5b602002602001015161220b565b80806115d890615075565b9150506115a1565b5050565b6115f86000801b6115f3611eec565b611944565b611637576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162e90614caa565b60405180910390fd5b80600f908051906020019061164d9291906138cd565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156116fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f190614aaa565b60405180910390fd5b80915050919050565b600f805461171090615012565b80601f016020809104026020016040519081016040528092919081815260200182805461173c90615012565b80156117895780601f1061175e57610100808354040283529160200191611789565b820191906000526020600020905b81548152906001019060200180831161176c57829003601f168201915b505050505081565b6117a56000801b6117a0611eec565b611944565b6117e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117db906148ea565b60405180910390fd5b806001600e546117f49190614dfb565b10611834576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182b9061494a565b60405180910390fd5b80600d819055503373ffffffffffffffffffffffffffffffffffffffff167f26843c619c87f9021bcc4ec5143177198076d9da3c13ce1bb2e941644c69d42e826040516118819190614cca565b60405180910390a250565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f490614a8a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600180546119be90615012565b80601f01602080910402602001604051908101604052809291908181526020018280546119ea90615012565b8015611a375780601f10611a0c57610100808354040283529160200191611a37565b820191906000526020600020905b815481529060010190602001808311611a1a57829003601f168201915b5050505050905090565b611a556000801b611a50611eec565b611944565b611a94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8b906148ca565b60405180910390fd5b60008111611ad7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ace90614c6a565b60405180910390fd5b600060115490506000611af3838361254f90919063ffffffff16565b905034811115611b38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2f9061496a565b60405180910390fd5b6000600190505b838111611b6257611b4f3361220b565b8080611b5a90615075565b915050611b3f565b50505050565b6000801b81565b611b81611b7a611eec565b8383612859565b5050565b611b96611b90611eec565b83612234565b611bd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bcc90614b6a565b60405180910390fd5b611be1848484846129c6565b50505050565b611bf46000801b826111c0565b50565b6060611c02826120e6565b611c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3890614b0a565b60405180910390fd5b6000600f611c4e84612a22565b604051602001611c5f9291906146b0565b604051602081830303815290604052905080915050919050565b611c8d6000801b611c88611eec565b611944565b611ccc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc390614a2a565b60405180910390fd5b80601260146101000a81548160ff02191690831515021790555050565b611cf282610e17565b611cfb81612565565b611d05838361265a565b505050565b600d5481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611da1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d98906149ca565b60405180910390fd5b611dae6000801b82611ce9565b50565b611dc56000801b611dc0611eec565b611944565b611dce57600080fd5b8060118190555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60115481565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611ee55750611ee482612b83565b5b9050919050565b600033905090565b611efc612545565b6bffffffffffffffffffffffff16816bffffffffffffffffffffffff161115611f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5190614baa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc190614c4a565b60405180910390fd5b60405180604001604052808373ffffffffffffffffffffffffffffffffffffffff168152602001826bffffffffffffffffffffffff16815250600a60008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff1602179055509050505050565b600061209583610e17565b905081600c6000858152602001908152602001600020600101819055508181847fbd79b86ffe0ab8e8776151514217cd7cacd52c909f66475c3af44e129f0b00ff60405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166121c583611651565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001612215610cd6565b61221f9190614dfb565b600e8190555061223181600e54612bfd565b50565b600061223f826120e6565b61227e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612275906149ea565b60405180910390fd5b600061228983611651565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806122d557506122d46000801b6122cf611eec565b611944565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166122fe82611651565b73ffffffffffffffffffffffffffffffffffffffff1614612354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234b9061490a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bb9061498a565b60405180910390fd5b6123cf838383612c1b565b6123da600082612152565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461242a9190614edc565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124819190614dfb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612540838383612d2f565b505050565b6000612710905090565b6000818361255d9190614e82565b905092915050565b61257681612571611eec565b612d34565b50565b6125838282611944565b612656576001600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506125fb611eec565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6126648282611944565b15612738576000600c600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506126dd611eec565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600061274782611651565b905061275581600084612c1b565b612760600083612152565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127b09190614edc565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461285581600084612d2f565b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156128c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128bf906149aa565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516129b991906147c9565b60405180910390a3505050565b6129d18484846122de565b6129dd84848484612dd1565b612a1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a13906148aa565b60405180910390fd5b50505050565b60606000821415612a6a576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612b7e565b600082905060005b60008214612a9c578080612a8590615075565b915050600a82612a959190614e51565b9150612a72565b60008167ffffffffffffffff811115612ab857612ab76151da565b5b6040519080825280601f01601f191660200182016040528015612aea5781602001600182028036833780820191505090505b5090505b60008514612b7757600182612b039190614edc565b9150600a85612b1291906150be565b6030612b1e9190614dfb565b60f81b818381518110612b3457612b336151ab565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612b709190614e51565b9450612aee565b8093505050505b919050565b60007f2a55205a000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612bf65750612bf582612f68565b5b9050919050565b612c17828260405180602001604052806000815250612fe2565b5050565b612c2683838361303d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612c6957612c6481613042565b612ca8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ca757612ca6838261308b565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ceb57612ce6816131f8565b612d2a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612d2957612d2882826132c9565b5b5b505050565b505050565b612d3e8282611944565b612dcd57612d638173ffffffffffffffffffffffffffffffffffffffff166014613348565b612d718360001c6020613348565b604051602001612d829291906146ff565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dc49190614828565b60405180910390fd5b5050565b6000612df28473ffffffffffffffffffffffffffffffffffffffff16613584565b15612f5b578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612e1b611eec565b8786866040518563ffffffff1660e01b8152600401612e3d9493929190614754565b602060405180830381600087803b158015612e5757600080fd5b505af1925050508015612e8857506040513d601f19601f82011682018060405250810190612e859190613ed4565b60015b612f0b573d8060008114612eb8576040519150601f19603f3d011682016040523d82523d6000602084013e612ebd565b606091505b50600081511415612f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612efa906148aa565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612f60565b600190505b949350505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612fdb5750612fda826135a7565b5b9050919050565b612fec8383613689565b612ff96000848484612dd1565b613038576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161302f906148aa565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016130988461188c565b6130a29190614edc565b9050600060076000848152602001908152602001600020549050818114613187576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061320c9190614edc565b905060006009600084815260200190815260200160002054905060006008838154811061323c5761323b6151ab565b5b90600052602060002001549050806008838154811061325e5761325d6151ab565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806132ad576132ac61517c565b5b6001900381819060005260206000200160009055905550505050565b60006132d48361188c565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b60606000600283600261335b9190614e82565b6133659190614dfb565b67ffffffffffffffff81111561337e5761337d6151da565b5b6040519080825280601f01601f1916602001820160405280156133b05781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106133e8576133e76151ab565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f78000000000000000000000000000000000000000000000000000000000000008160018151811061344c5761344b6151ab565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506000600184600261348c9190614e82565b6134969190614dfb565b90505b6001811115613536577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106134d8576134d76151ab565b5b1a60f81b8282815181106134ef576134ee6151ab565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061352f90614fe8565b9050613499565b506000841461357a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135719061484a565b60405180910390fd5b8091505092915050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061367257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613682575061368182613863565b5b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156136f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136f090614aca565b60405180910390fd5b613702816120e6565b15613742576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137399061492a565b60405180910390fd5b61374e60008383612c1b565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461379e9190614dfb565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461385f60008383612d2f565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b8280546138d990615012565b90600052602060002090601f0160209004810192826138fb5760008555613942565b82601f1061391457805160ff1916838001178555613942565b82800160010185558215613942579182015b82811115613941578251825591602001919060010190613926565b5b50905061394f9190613953565b5090565b5b8082111561396c576000816000905550600101613954565b5090565b600061398361397e84614d0a565b614ce5565b905080838252602082019050828560208602820111156139a6576139a561520e565b5b60005b858110156139d657816139bc8882613a64565b8452602084019350602083019250506001810190506139a9565b5050509392505050565b60006139f36139ee84614d36565b614ce5565b905082815260208101848484011115613a0f57613a0e615213565b5b613a1a848285614fa6565b509392505050565b6000613a35613a3084614d67565b614ce5565b905082815260208101848484011115613a5157613a50615213565b5b613a5c848285614fa6565b509392505050565b600081359050613a7381615c08565b92915050565b600082601f830112613a8e57613a8d615209565b5b8135613a9e848260208601613970565b91505092915050565b600081359050613ab681615c1f565b92915050565b600081359050613acb81615c36565b92915050565b600081359050613ae081615c4d565b92915050565b600081519050613af581615c4d565b92915050565b600082601f830112613b1057613b0f615209565b5b8135613b208482602086016139e0565b91505092915050565b600082601f830112613b3e57613b3d615209565b5b8135613b4e848260208601613a22565b91505092915050565b600081359050613b6681615c64565b92915050565b600081359050613b7b81615c7b565b92915050565b600060208284031215613b9757613b9661521d565b5b6000613ba584828501613a64565b91505092915050565b60008060408385031215613bc557613bc461521d565b5b6000613bd385828601613a64565b9250506020613be485828601613a64565b9150509250929050565b600080600060608486031215613c0757613c0661521d565b5b6000613c1586828701613a64565b9350506020613c2686828701613a64565b9250506040613c3786828701613b57565b9150509250925092565b60008060008060808587031215613c5b57613c5a61521d565b5b6000613c6987828801613a64565b9450506020613c7a87828801613a64565b9350506040613c8b87828801613b57565b925050606085013567ffffffffffffffff811115613cac57613cab615218565b5b613cb887828801613afb565b91505092959194509250565b60008060408385031215613cdb57613cda61521d565b5b6000613ce985828601613a64565b9250506020613cfa85828601613aa7565b9150509250929050565b60008060408385031215613d1b57613d1a61521d565b5b6000613d2985828601613a64565b9250506020613d3a85828601613b57565b9150509250929050565b60008060408385031215613d5b57613d5a61521d565b5b6000613d6985828601613a64565b9250506020613d7a85828601613b6c565b9150509250929050565b600060208284031215613d9a57613d9961521d565b5b600082013567ffffffffffffffff811115613db857613db7615218565b5b613dc484828501613a79565b91505092915050565b600060208284031215613de357613de261521d565b5b6000613df184828501613aa7565b91505092915050565b600060208284031215613e1057613e0f61521d565b5b6000613e1e84828501613abc565b91505092915050565b60008060408385031215613e3e57613e3d61521d565b5b6000613e4c85828601613abc565b9250506020613e5d85828601613a64565b9150509250929050565b60008060408385031215613e7e57613e7d61521d565b5b6000613e8c85828601613abc565b9250506020613e9d85828601613abc565b9150509250929050565b600060208284031215613ebd57613ebc61521d565b5b6000613ecb84828501613ad1565b91505092915050565b600060208284031215613eea57613ee961521d565b5b6000613ef884828501613ae6565b91505092915050565b600060208284031215613f1757613f1661521d565b5b600082013567ffffffffffffffff811115613f3557613f34615218565b5b613f4184828501613b29565b91505092915050565b600060208284031215613f6057613f5f61521d565b5b6000613f6e84828501613b57565b91505092915050565b60008060408385031215613f8e57613f8d61521d565b5b6000613f9c85828601613b57565b9250506020613fad85828601613b57565b9150509250929050565b613fc081614f10565b82525050565b613fcf81614f22565b82525050565b613fde81614f2e565b82525050565b6000613fef82614dad565b613ff98185614dc3565b9350614009818560208601614fb5565b61401281615222565b840191505092915050565b600061402882614db8565b6140328185614ddf565b9350614042818560208601614fb5565b61404b81615222565b840191505092915050565b600061406182614db8565b61406b8185614df0565b935061407b818560208601614fb5565b80840191505092915050565b6000815461409481615012565b61409e8186614df0565b945060018216600081146140b957600181146140ca576140fd565b60ff198316865281860193506140fd565b6140d385614d98565b60005b838110156140f5578154818901526001820191506020810190506140d6565b838801955050505b50505092915050565b6000614113602083614ddf565b915061411e82615233565b602082019050919050565b6000614136602b83614ddf565b91506141418261525c565b604082019050919050565b6000614159601683614ddf565b9150614164826152ab565b602082019050919050565b600061417c603283614ddf565b9150614187826152d4565b604082019050919050565b600061419f601d83614ddf565b91506141aa82615323565b602082019050919050565b60006141c2602783614ddf565b91506141cd8261534c565b604082019050919050565b60006141e5602583614ddf565b91506141f08261539b565b604082019050919050565b6000614208601c83614ddf565b9150614213826153ea565b602082019050919050565b600061422b602e83614ddf565b915061423682615413565b604082019050919050565b600061424e601283614ddf565b915061425982615462565b602082019050919050565b6000614271602483614ddf565b915061427c8261548b565b604082019050919050565b6000614294601983614ddf565b915061429f826154da565b602082019050919050565b60006142b7602583614ddf565b91506142c282615503565b604082019050919050565b60006142da602c83614ddf565b91506142e582615552565b604082019050919050565b60006142fd602183614ddf565b9150614308826155a1565b604082019050919050565b6000614320602983614ddf565b915061432b826155f0565b604082019050919050565b6000614343601a83614ddf565b915061434e8261563f565b602082019050919050565b6000614366603883614ddf565b915061437182615668565b604082019050919050565b6000614389602a83614ddf565b9150614394826156b7565b604082019050919050565b60006143ac602983614ddf565b91506143b782615706565b604082019050919050565b60006143cf602083614ddf565b91506143da82615755565b602082019050919050565b60006143f2602c83614ddf565b91506143fd8261577e565b604082019050919050565b6000614415600583614df0565b9150614420826157cd565b600582019050919050565b6000614438602f83614ddf565b9150614443826157f6565b604082019050919050565b600061445b600d83614ddf565b915061446682615845565b602082019050919050565b600061447e602183614ddf565b91506144898261586e565b604082019050919050565b60006144a1600083614dd4565b91506144ac826158bd565b600082019050919050565b60006144c4603183614ddf565b91506144cf826158c0565b604082019050919050565b60006144e7602c83614ddf565b91506144f28261590f565b604082019050919050565b600061450a601783614df0565b91506145158261595e565b601782019050919050565b600061452d602a83614ddf565b915061453882615987565b604082019050919050565b6000614550602083614ddf565b915061455b826159d6565b602082019050919050565b6000614573602483614ddf565b915061457e826159ff565b604082019050919050565b6000614596601183614ddf565b91506145a182615a4e565b602082019050919050565b60006145b9603083614ddf565b91506145c482615a77565b604082019050919050565b60006145dc601983614ddf565b91506145e782615ac6565b602082019050919050565b60006145ff601b83614ddf565b915061460a82615aef565b602082019050919050565b6000614622601183614df0565b915061462d82615b18565b601182019050919050565b6000614645602f83614ddf565b915061465082615b41565b604082019050919050565b6000614668600183614df0565b915061467382615b90565b600182019050919050565b600061468b602583614ddf565b915061469682615bb9565b604082019050919050565b6146aa81614f84565b82525050565b60006146bc8285614087565b91506146c78261465b565b91506146d38284614056565b91506146de82614408565b91508190509392505050565b60006146f582614494565b9150819050919050565b600061470a826144fd565b91506147168285614056565b915061472182614615565b915061472d8284614056565b91508190509392505050565b600060208201905061474e6000830184613fb7565b92915050565b60006080820190506147696000830187613fb7565b6147766020830186613fb7565b61478360408301856146a1565b81810360608301526147958184613fe4565b905095945050505050565b60006040820190506147b56000830185613fb7565b6147c260208301846146a1565b9392505050565b60006020820190506147de6000830184613fc6565b92915050565b60006020820190506147f96000830184613fd5565b92915050565b60006040820190506148146000830185613fd5565b6148216020830184613fd5565b9392505050565b60006020820190508181036000830152614842818461401d565b905092915050565b6000602082019050818103600083015261486381614106565b9050919050565b6000602082019050818103600083015261488381614129565b9050919050565b600060208201905081810360008301526148a38161414c565b9050919050565b600060208201905081810360008301526148c38161416f565b9050919050565b600060208201905081810360008301526148e381614192565b9050919050565b60006020820190508181036000830152614903816141b5565b9050919050565b60006020820190508181036000830152614923816141d8565b9050919050565b60006020820190508181036000830152614943816141fb565b9050919050565b600060208201905081810360008301526149638161421e565b9050919050565b6000602082019050818103600083015261498381614241565b9050919050565b600060208201905081810360008301526149a381614264565b9050919050565b600060208201905081810360008301526149c381614287565b9050919050565b600060208201905081810360008301526149e3816142aa565b9050919050565b60006020820190508181036000830152614a03816142cd565b9050919050565b60006020820190508181036000830152614a23816142f0565b9050919050565b60006020820190508181036000830152614a4381614313565b9050919050565b60006020820190508181036000830152614a6381614336565b9050919050565b60006020820190508181036000830152614a8381614359565b9050919050565b60006020820190508181036000830152614aa38161437c565b9050919050565b60006020820190508181036000830152614ac38161439f565b9050919050565b60006020820190508181036000830152614ae3816143c2565b9050919050565b60006020820190508181036000830152614b03816143e5565b9050919050565b60006020820190508181036000830152614b238161442b565b9050919050565b60006020820190508181036000830152614b438161444e565b9050919050565b60006020820190508181036000830152614b6381614471565b9050919050565b60006020820190508181036000830152614b83816144b7565b9050919050565b60006020820190508181036000830152614ba3816144da565b9050919050565b60006020820190508181036000830152614bc381614520565b9050919050565b60006020820190508181036000830152614be381614543565b9050919050565b60006020820190508181036000830152614c0381614566565b9050919050565b60006020820190508181036000830152614c2381614589565b9050919050565b60006020820190508181036000830152614c43816145ac565b9050919050565b60006020820190508181036000830152614c63816145cf565b9050919050565b60006020820190508181036000830152614c83816145f2565b9050919050565b60006020820190508181036000830152614ca381614638565b9050919050565b60006020820190508181036000830152614cc38161467e565b9050919050565b6000602082019050614cdf60008301846146a1565b92915050565b6000614cef614d00565b9050614cfb8282615044565b919050565b6000604051905090565b600067ffffffffffffffff821115614d2557614d246151da565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614d5157614d506151da565b5b614d5a82615222565b9050602081019050919050565b600067ffffffffffffffff821115614d8257614d816151da565b5b614d8b82615222565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e0682614f84565b9150614e1183614f84565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e4657614e456150ef565b5b828201905092915050565b6000614e5c82614f84565b9150614e6783614f84565b925082614e7757614e7661511e565b5b828204905092915050565b6000614e8d82614f84565b9150614e9883614f84565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ed157614ed06150ef565b5b828202905092915050565b6000614ee782614f84565b9150614ef283614f84565b925082821015614f0557614f046150ef565b5b828203905092915050565b6000614f1b82614f64565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006bffffffffffffffffffffffff82169050919050565b82818337600083830152505050565b60005b83811015614fd3578082015181840152602081019050614fb8565b83811115614fe2576000848401525b50505050565b6000614ff382614f84565b91506000821415615007576150066150ef565b5b600182039050919050565b6000600282049050600182168061502a57607f821691505b6020821081141561503e5761503d61514d565b5b50919050565b61504d82615222565b810181811067ffffffffffffffff8211171561506c5761506b6151da565b5b80604052505050565b600061508082614f84565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156150b3576150b26150ef565b5b600182019050919050565b60006150c982614f84565b91506150d483614f84565b9250826150e4576150e361511e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f5265737472696374656420746f206d656d626572732e00000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f206d696e74000000600082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f20736574206d617860008201527f20737570706c7900000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4d617820737570706c792063616e206e6f74206265206c657373207468616e2060008201527f63757272656e7420737570706c79000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742046756e64730000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f43616e206e6f742072656d6f76652041646d696e20726f6c652066726f6d206f60008201527f776e65722e000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f207769746864726160008201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f207365742070756260008201527f6c6963206d696e742e0000000000000000000000000000000000000000000000602082015250565b7f57696c6c20657863656564206d6178696d756d20737570706c79000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6e6f742061646472657373203000000000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f455243323938313a20726f79616c7479206665652077696c6c2065786365656460008201527f2073616c65507269636500000000000000000000000000000000000000000000602082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f2061697264726f70600082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f2073657420726f7960008201527f616c747900000000000000000000000000000000000000000000000000000000602082015250565b7f5769746864726177616c206661696c6564000000000000000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f455243323938313a20696e76616c696420726563656976657200000000000000600082015250565b7f6e65656420746f206d696e74206174206c656173742031204e46540000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f2f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f43616c6c6572206973206e6f7420616c6c6f77656420746f207365742062617360008201527f6520757269000000000000000000000000000000000000000000000000000000602082015250565b615c1181614f10565b8114615c1c57600080fd5b50565b615c2881614f22565b8114615c3357600080fd5b50565b615c3f81614f2e565b8114615c4a57600080fd5b50565b615c5681614f38565b8114615c6157600080fd5b50565b615c6d81614f84565b8114615c7857600080fd5b50565b615c8481614f8e565b8114615c8f57600080fd5b5056fea2646970667358221220f9e0e9170f8a8a3ee66b6a8e8258cf6cc8eec84dfaf058bddf2f1dd7b1dd8e9d64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000024462722e63ca1bab3a2311dffa4a3a21665647a
-----Decoded View---------------
Arg [0] : _ownerAddress (address): 0x24462722e63Ca1BAb3a2311DFfa4A3a21665647a
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000024462722e63ca1bab3a2311dffa4a3a21665647a
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.