ERC-721
Overview
Max Total Supply
212 GFNFT
Holders
130
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GFNFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GnomeFrens
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "./MerkleProof.sol"; import "./Ownable.sol"; import "./ERC721Enumerable.sol"; import "./PaymentSplitter.sol"; contract GnomeFrens is ERC721Enumerable, Ownable, PaymentSplitter { string public baseURI; address public proxyRegistryAddress = 0xa5409ec958C83C3f309868babACA7c86DCB077c1; bytes32 public whitelistMerkleRoot; bool public revealed = false; uint256 public saleStatus = 0; // 0 closed, 1 WL, 2 PUBLIC uint256 public constant MAX_SUPPLY = 5555; uint256 public MAX_GIVEAWAY = 50; uint256 public constant MAX_PER_TX = 6; uint256 public constant priceInWei = 0.069 ether; uint256 public constant WL_MAX_PER_TX = 2; string public provenance; mapping(address => bool) public projectProxy; mapping(address => uint) public addressToMinted; constructor( address[] memory _payees, uint256[] memory _paymentShares ) ERC721("Gnome Frens NFT", "GFNFT") PaymentSplitter(_payees, _paymentShares) { } function setBaseURI(string memory _baseURI) public onlyOwner { baseURI = _baseURI; } function setRevealed() public onlyOwner { revealed = !revealed; } function setProvenance(string memory _provenance) public onlyOwner { provenance = _provenance; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { if (revealed == false) { return string (abi.encodePacked(baseURI, "unrevealed.json")); } else { require(_exists(_tokenId), "Token does not exist."); return string(abi.encodePacked(baseURI, Strings.toString(_tokenId), ".json")); } } function setProxyRegistryAddress(address _proxyRegistryAddress) external onlyOwner { proxyRegistryAddress = _proxyRegistryAddress; } function setWhitelistMerkleRoot(bytes32 _whitelistMerkleRoot) external onlyOwner { // don't forget to prepend: 0x whitelistMerkleRoot = _whitelistMerkleRoot; } function setSaleStatus(uint256 _status) external onlyOwner { require(saleStatus < 4 && saleStatus >= 0, "Invalid status."); saleStatus = _status; } function mint(uint256 count, bytes32[] calldata proof) public payable { bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); uint256 totalSupply = _owners.length; require(totalSupply + count <= MAX_SUPPLY, "Excedes max supply."); if (saleStatus == 1) { require(MerkleProof.verify(proof, whitelistMerkleRoot, leaf), 'Not on bluelist. Merkle Proof fail.'); require(addressToMinted[_msgSender()] + count <= WL_MAX_PER_TX, "Exceeds whitelist max per address."); require(count * priceInWei == msg.value, "Invalid funds provided."); addressToMinted[_msgSender()] += count; } else if (saleStatus == 2) { require(count <= MAX_PER_TX, "Exceeds max per transaction."); require(count * priceInWei == msg.value, "Invalid funds provided."); } else { require(false, "Sale not open."); } for(uint i; i < count; i++) { _mint(_msgSender(), totalSupply + i); } } function promoMint(uint _qty, address _to) public onlyOwner { require(MAX_GIVEAWAY - _qty >= 0, "Exceeds max giveaway."); uint256 totalSupply = _owners.length; require(totalSupply + _qty <= MAX_SUPPLY, "Excedes max supply."); for (uint i = 0; i < _qty; i++) { _mint(_to, totalSupply + i); } MAX_GIVEAWAY -= _qty; } function burn(uint256 tokenId) public { require(_isApprovedOrOwner(_msgSender(), tokenId), "Not approved to burn."); _burn(tokenId); } function ownerBurn(uint256 tokenId) public onlyOwner { require(block.timestamp < 1649019600, "Owner cannot burn after 4/3/2022 7P ET."); _burn(tokenId); } function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) return new uint256[](0); uint256[] memory tokensId = new uint256[](tokenCount); for (uint256 i; i < tokenCount; i++) { tokensId[i] = tokenOfOwnerByIndex(_owner, i); } return tokensId; } function batchTransferFrom(address _from, address _to, uint256[] memory _tokenIds) public { for (uint256 i = 0; i < _tokenIds.length; i++) { transferFrom(_from, _to, _tokenIds[i]); } } function batchSafeTransferFrom(address _from, address _to, uint256[] memory _tokenIds, bytes memory data_) public { for (uint256 i = 0; i < _tokenIds.length; i++) { safeTransferFrom(_from, _to, _tokenIds[i], data_); } } function isOwnerOf(address account, uint256[] calldata _tokenIds) external view returns (bool){ for(uint256 i; i < _tokenIds.length; ++i ){ if(_owners[_tokenIds[i]] != account) return false; } return true; } function isApprovedForAll(address _owner, address operator) public view override(ERC721) returns (bool) { OpenSeaProxyRegistry proxyRegistry = OpenSeaProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(_owner)) == operator || projectProxy[operator]) return true; return super.isApprovedForAll(_owner, operator); } function _mint(address to, uint256 tokenId) internal virtual override { _owners.push(to); emit Transfer(address(0), to, tokenId); } } contract OwnableDelegateProxy { } contract OpenSeaProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.3.2 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.3.2 (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.0 (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 pragma solidity ^0.8.7; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; import "./Address.sol"; abstract contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; string private _name; string private _symbol; // Mapping from token ID to owner address address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; 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 (uint) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count; for( uint i; i < _owners.length; ++i ){ if( owner == _owners[i] ) ++count; } return count; } /** * @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 {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _owners.push(to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; 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 but rips out the core of the gas-wasting processing that comes from OpenZeppelin. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { /** * @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-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _owners.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < _owners.length, "ERC721Enumerable: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256 tokenId) { require(index < balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); uint count; for(uint i; i < _owners.length; i++){ if(owner == _owners[i]){ if(count == index) return i; else count++; } } revert("ERC721Enumerable: owner index out of bounds"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.3.2 (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 v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.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 tokenId); /** * @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 v4.4.0 (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 v4.4.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 `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol) pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = _efficientHash(computedHash, proofElement); } else { // Hash(current element of the proof + current computed hash) computedHash = _efficientHash(proofElement, computedHash); } } return computedHash; } function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) { assembly { mstore(0x00, a) mstore(0x20, b) value := keccak256(0x00, 0x40) } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.3.2 (access/Ownable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; import "./SafeERC20.sol"; import "./Address.sol"; import "./Context.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment(account, totalReceived, released(account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); uint256 payment = _pendingPayment(account, totalReceived, released(token, account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.3.2 (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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_paymentShares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"MAX_GIVEAWAY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_MAX_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressToMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"bytes","name":"data_","type":"bytes"}],"name":"batchSafeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"batchTransferFrom","outputs":[],"stateMutability":"nonpayable","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":"address","name":"_owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"}],"name":"isOwnerOf","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"count","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerBurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceInWei","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"projectProxy","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_qty","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"promoMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"provenance","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"proxyRegistryAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"saleStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenance","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_proxyRegistryAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_status","type":"uint256"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_whitelistMerkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"tokenId","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":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600e80546001600160a01b03191673a5409ec958c83c3f309868babaca7c86dcb077c11790556010805460ff19169055600060115560326012553480156200004b57600080fd5b5060405162003d6338038062003d638339810160408190526200006e9162000599565b604080518082018252600f81526e11db9bdb5948119c995b9cc8139195608a1b60208083019182528351808501909452600584526411d193919560da1b90840152815185938593929091620000c69160009162000479565b508051620000dc90600190602084019062000479565b505050620000f9620000f36200023560201b60201c565b62000239565b80518251146200016b5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620001be5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000162565b60005b82518110156200022a5762000215838281518110620001e457620001e462000762565b602002602001015183838151811062000201576200020162000762565b60200260200101516200028b60201b60201c565b8062000221816200072e565b915050620001c1565b50505050506200078e565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620002f85760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000162565b600081116200034a5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000162565b6001600160a01b03821660009081526008602052604090205415620003c65760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000162565b600a8054600181019091557fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80180546001600160a01b0319166001600160a01b038416908117909155600090815260086020526040902081905560065462000430908290620006d6565b600655604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b8280546200048790620006f1565b90600052602060002090601f016020900481019282620004ab5760008555620004f6565b82601f10620004c657805160ff1916838001178555620004f6565b82800160010185558215620004f6579182015b82811115620004f6578251825591602001919060010190620004d9565b506200050492915062000508565b5090565b5b8082111562000504576000815560010162000509565b600082601f8301126200053157600080fd5b815160206200054a6200054483620006b0565b6200067d565b80838252828201915082860187848660051b89010111156200056b57600080fd5b60005b858110156200058c578151845292840192908401906001016200056e565b5090979650505050505050565b60008060408385031215620005ad57600080fd5b82516001600160401b0380821115620005c557600080fd5b818501915085601f830112620005da57600080fd5b81516020620005ed6200054483620006b0565b8083825282820191508286018a848660051b89010111156200060e57600080fd5b600096505b84871015620006495780516001600160a01b03811681146200063457600080fd5b83526001969096019591830191830162000613565b50918801519196509093505050808211156200066457600080fd5b5062000673858286016200051f565b9150509250929050565b604051601f8201601f191681016001600160401b0381118282101715620006a857620006a862000778565b604052919050565b60006001600160401b03821115620006cc57620006cc62000778565b5060051b60200190565b60008219821115620006ec57620006ec6200074c565b500190565b600181811c908216806200070657607f821691505b602082108114156200072857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200074557620007456200074c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6135c5806200079e6000396000f3fe6080604052600436106103545760003560e01c80636352211e116101c6578063c79b25cf116100f7578063e985e9c511610095578063f3993d111161006f578063f3993d1114610a34578063f43a22dc14610a54578063f9020e3314610a69578063ffe630b514610a7f57600080fd5b8063e985e9c5146109d4578063f29f15af146109f4578063f2fde38b14610a1457600080fd5b8063ce7c2ac2116100d1578063ce7c2ac214610933578063d26ea6c014610969578063d79779b214610989578063e33b7de3146109bf57600080fd5b8063c79b25cf146108d3578063c87b56dd146108f3578063cd7c03261461091357600080fd5b80639852595c11610164578063aa98e0c61161013e578063aa98e0c61461086a578063b88d4fde14610880578063ba41b0c6146108a0578063bd32fb66146108b357600080fd5b80639852595c146107e75780639ec00c951461081d578063a22cb4651461084a57600080fd5b8063715018a6116101a0578063715018a61461077f5780638b83209b146107945780638da5cb5b146107b457806395d89b41146107d257600080fd5b80636352211e1461072a5780636c0360eb1461074a57806370a082311461075f57600080fd5b80633c8da588116102a05780634d44660c1161023e57806355042e331161021857806355042e33146106a557806355f804b3146106ba5780635a4fee30146106da5780635bab26e2146106fa57600080fd5b80634d44660c1461064b5780634f6ccce71461066b578063518302271461068b57600080fd5b806342966c681161027a57806342966c68146105c8578063438b6300146105e857806348b75044146106155780634c5b7a291461063557600080fd5b80633c8da58814610547578063406072a91461056257806342842e0e146105a857600080fd5b8063191655871161030d57806332cb6b0c116102e757806332cb6b0c146104e75780633a4b3664146104fd5780633a98ef391461051d5780633bd649681461053257600080fd5b8063191655871461048757806323b872dd146104a75780632f745c59146104c757600080fd5b806301ffc9a7146103a257806306fdde03146103d7578063081812fc146103f9578063095ea7b3146104315780630f7309e81461045357806318160ddd1461046857600080fd5b3661039d577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103ae57600080fd5b506103c26103bd366004612f3a565b610a9f565b60405190151581526020015b60405180910390f35b3480156103e357600080fd5b506103ec610aca565b6040516103ce919061320e565b34801561040557600080fd5b50610419610414366004612f21565b610b5c565b6040516001600160a01b0390911681526020016103ce565b34801561043d57600080fd5b5061045161044c366004612ed8565b610be9565b005b34801561045f57600080fd5b506103ec610cff565b34801561047457600080fd5b506002545b6040519081526020016103ce565b34801561049357600080fd5b506104516104a2366004612c73565b610d8d565b3480156104b357600080fd5b506104516104c2366004612db4565b610ebb565b3480156104d357600080fd5b506104796104e2366004612ed8565b610eed565b3480156104f357600080fd5b506104796115b381565b34801561050957600080fd5b50610451610518366004612f21565b610fa0565b34801561052957600080fd5b50600654610479565b34801561053e57600080fd5b50610451611039565b34801561055357600080fd5b5061047966f523226980800081565b34801561056e57600080fd5b5061047961057d366004612c90565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b3480156105b457600080fd5b506104516105c3366004612db4565b611077565b3480156105d457600080fd5b506104516105e3366004612f21565b611092565b3480156105f457600080fd5b50610608610603366004612c73565b6110df565b6040516103ce91906131ca565b34801561062157600080fd5b50610451610630366004612c90565b611198565b34801561064157600080fd5b5061047960125481565b34801561065757600080fd5b506103c2610666366004612e55565b611380565b34801561067757600080fd5b50610479610686366004612f21565b611402565b34801561069757600080fd5b506010546103c29060ff1681565b3480156106b157600080fd5b50610479600281565b3480156106c657600080fd5b506104516106d5366004612f91565b61146f565b3480156106e657600080fd5b506104516106f5366004612d2b565b6114b0565b34801561070657600080fd5b506103c2610715366004612c73565b60146020526000908152604090205460ff1681565b34801561073657600080fd5b50610419610745366004612f21565b6114fa565b34801561075657600080fd5b506103ec611586565b34801561076b57600080fd5b5061047961077a366004612c73565b611593565b34801561078b57600080fd5b50610451611661565b3480156107a057600080fd5b506104196107af366004612f21565b611697565b3480156107c057600080fd5b506005546001600160a01b0316610419565b3480156107de57600080fd5b506103ec6116c7565b3480156107f357600080fd5b50610479610802366004612c73565b6001600160a01b031660009081526009602052604090205490565b34801561082957600080fd5b50610479610838366004612c73565b60156020526000908152604090205481565b34801561085657600080fd5b50610451610865366004612eaa565b6116d6565b34801561087657600080fd5b50610479600f5481565b34801561088c57600080fd5b5061045161089b366004612df5565b61179b565b6104516108ae366004613018565b6117d3565b3480156108bf57600080fd5b506104516108ce366004612f21565b611b27565b3480156108df57600080fd5b506104516108ee366004612ff3565b611b56565b3480156108ff57600080fd5b506103ec61090e366004612f21565b611c72565b34801561091f57600080fd5b50600e54610419906001600160a01b031681565b34801561093f57600080fd5b5061047961094e366004612c73565b6001600160a01b031660009081526008602052604090205490565b34801561097557600080fd5b50610451610984366004612c73565b611d10565b34801561099557600080fd5b506104796109a4366004612c73565b6001600160a01b03166000908152600b602052604090205490565b3480156109cb57600080fd5b50600754610479565b3480156109e057600080fd5b506103c26109ef366004612c90565b611d5c565b348015610a0057600080fd5b50610451610a0f366004612f21565b611e4f565b348015610a2057600080fd5b50610451610a2f366004612c73565b611ecc565b348015610a4057600080fd5b50610451610a4f366004612cc9565b611f64565b348015610a6057600080fd5b50610479600681565b348015610a7557600080fd5b5061047960115481565b348015610a8b57600080fd5b50610451610a9a366004612f91565b611fa6565b60006001600160e01b0319821663780e9d6360e01b1480610ac45750610ac482611fe3565b92915050565b606060008054610ad990613494565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0590613494565b8015610b525780601f10610b2757610100808354040283529160200191610b52565b820191906000526020600020905b815481529060010190602001808311610b3557829003601f168201915b5050505050905090565b6000610b6782612033565b610bcd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610bf4826114fa565b9050806001600160a01b0316836001600160a01b03161415610c625760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bc4565b336001600160a01b0382161480610c7e5750610c7e8133611d5c565b610cf05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bc4565b610cfa838361207d565b505050565b60138054610d0c90613494565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3890613494565b8015610d855780601f10610d5a57610100808354040283529160200191610d85565b820191906000526020600020905b815481529060010190602001808311610d6857829003601f168201915b505050505081565b6001600160a01b038116600090815260086020526040902054610dc25760405162461bcd60e51b8152600401610bc4906132be565b6000610dcd60075490565b610dd79047613406565b90506000610e048383610dff866001600160a01b031660009081526009602052604090205490565b6120eb565b905080610e235760405162461bcd60e51b8152600401610bc490613304565b6001600160a01b03831660009081526009602052604081208054839290610e4b908490613406565b925050819055508060076000828254610e649190613406565b90915550610e7490508382612129565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610ec6335b82612242565b610ee25760405162461bcd60e51b8152600401610bc490613384565b610cfa838383612304565b6000610ef883611593565b8210610f165760405162461bcd60e51b8152600401610bc490613221565b6000805b600254811015610f875760028181548110610f3757610f3761352a565b6000918252602090912001546001600160a01b0386811691161415610f755783821415610f67579150610ac49050565b81610f71816134cf565b9250505b80610f7f816134cf565b915050610f1a565b5060405162461bcd60e51b8152600401610bc490613221565b6005546001600160a01b03163314610fca5760405162461bcd60e51b8152600401610bc49061334f565b63624a0ad0421061102d5760405162461bcd60e51b815260206004820152602760248201527f4f776e65722063616e6e6f74206275726e20616674657220342f332f32303232604482015266101ba81022aa1760c91b6064820152608401610bc4565b6110368161245a565b50565b6005546001600160a01b031633146110635760405162461bcd60e51b8152600401610bc49061334f565b6010805460ff19811660ff90911615179055565b610cfa8383836040518060200160405280600081525061179b565b61109b33610ec0565b61102d5760405162461bcd60e51b81526020600482015260156024820152742737ba1030b8383937bb32b2103a3790313ab9371760591b6044820152606401610bc4565b606060006110ec83611593565b90508061110d5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561112857611128613540565b604051908082528060200260200182016040528015611151578160200160208202803683370190505b50905060005b82811015611105576111698582610eed565b82828151811061117b5761117b61352a565b602090810291909101015280611190816134cf565b915050611157565b6001600160a01b0381166000908152600860205260409020546111cd5760405162461bcd60e51b8152600401610bc4906132be565b6001600160a01b0382166000908152600b60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561122557600080fd5b505afa158015611239573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125d9190612fda565b6112679190613406565b905060006112a08383610dff87876001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b9050806112bf5760405162461bcd60e51b8152600401610bc490613304565b6001600160a01b038085166000908152600c60209081526040808320938716835292905290812080548392906112f6908490613406565b90915550506001600160a01b0384166000908152600b602052604081208054839290611323908490613406565b9091555061133490508484836124dc565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000805b828110156113f557846001600160a01b031660028585848181106113aa576113aa61352a565b90506020020135815481106113c1576113c161352a565b6000918252602090912001546001600160a01b0316146113e55760009150506113fb565b6113ee816134cf565b9050611384565b50600190505b9392505050565b600254600090821061146b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bc4565b5090565b6005546001600160a01b031633146114995760405162461bcd60e51b8152600401610bc49061334f565b80516114ac90600d906020840190612a99565b5050565b60005b82518110156114f3576114e185858584815181106114d3576114d361352a565b60200260200101518561179b565b806114eb816134cf565b9150506114b3565b5050505050565b600080600283815481106115105761151061352a565b6000918252602090912001546001600160a01b0316905080610ac45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bc4565b600d8054610d0c90613494565b60006001600160a01b0382166115fe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bc4565b6000805b60025481101561165a576002818154811061161f5761161f61352a565b6000918252602090912001546001600160a01b038581169116141561164a57611647826134cf565b91505b611653816134cf565b9050611602565b5092915050565b6005546001600160a01b0316331461168b5760405162461bcd60e51b8152600401610bc49061334f565b611695600061252e565b565b6000600a82815481106116ac576116ac61352a565b6000918252602090912001546001600160a01b031692915050565b606060018054610ad990613494565b6001600160a01b03821633141561172f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bc4565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117a53383612242565b6117c15760405162461bcd60e51b8152600401610bc490613384565b6117cd84848484612580565b50505050565b604080513360601b6bffffffffffffffffffffffff191660208083019190915282516014818403018152603490920190925280519101206002546115b361181a8683613406565b111561185e5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610bc4565b601154600114156119fc576118aa84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508590506125b3565b6119025760405162461bcd60e51b815260206004820152602360248201527f4e6f74206f6e20626c75656c6973742e204d65726b6c652050726f6f6620666160448201526234b61760e91b6064820152608401610bc4565b33600090815260156020526040902054600290611920908790613406565b11156119795760405162461bcd60e51b815260206004820152602260248201527f457863656564732077686974656c697374206d61782070657220616464726573604482015261399760f11b6064820152608401610bc4565b3461198b66f523226980800087613432565b146119d25760405162461bcd60e51b815260206004820152601760248201527624b73b30b634b210333ab7323990383937bb34b232b21760491b6044820152606401610bc4565b33600090815260156020526040812080548792906119f1908490613406565b90915550611aef9050565b60115460021415611ab6576006851115611a585760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610bc4565b34611a6a66f523226980800087613432565b14611ab15760405162461bcd60e51b815260206004820152601760248201527624b73b30b634b210333ab7323990383937bb34b232b21760491b6044820152606401610bc4565b611aef565b60405162461bcd60e51b815260206004820152600e60248201526d29b0b632903737ba1037b832b71760911b6044820152606401610bc4565b60005b85811015611b1f57611b0d33611b088385613406565b6125c9565b80611b17816134cf565b915050611af2565b505050505050565b6005546001600160a01b03163314611b515760405162461bcd60e51b8152600401610bc49061334f565b600f55565b6005546001600160a01b03163314611b805760405162461bcd60e51b8152600401610bc49061334f565b600082601254611b909190613451565b1015611bd65760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b2399036b0bc1033b4bb32b0bbb0bc9760591b6044820152606401610bc4565b6002546115b3611be68483613406565b1115611c2a5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610bc4565b60005b83811015611c5557611c4383611b088385613406565b80611c4d816134cf565b915050611c2d565b508260126000828254611c689190613451565b9091555050505050565b60105460609060ff16611ca757600d604051602001611c919190613162565b6040516020818303038152906040529050919050565b611cb082612033565b611cf45760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610bc4565b600d611cff83612645565b604051602001611c9192919061312d565b6005546001600160a01b03163314611d3a5760405162461bcd60e51b8152600401610bc49061334f565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b600e5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611da957600080fd5b505afa158015611dbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611de19190612f74565b6001600160a01b03161480611e0e57506001600160a01b03831660009081526014602052604090205460ff165b15611e1d576001915050610ac4565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b03163314611e795760405162461bcd60e51b8152600401610bc49061334f565b6004601154108015611e89575060015b611ec75760405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b21039ba30ba3ab99760891b6044820152606401610bc4565b601155565b6005546001600160a01b03163314611ef65760405162461bcd60e51b8152600401610bc49061334f565b6001600160a01b038116611f5b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc4565b6110368161252e565b60005b81518110156117cd57611f948484848481518110611f8757611f8761352a565b6020026020010151610ebb565b80611f9e816134cf565b915050611f67565b6005546001600160a01b03163314611fd05760405162461bcd60e51b8152600401610bc49061334f565b80516114ac906013906020840190612a99565b60006001600160e01b031982166380ac58cd60e01b148061201457506001600160e01b03198216635b5e139f60e01b145b80610ac457506301ffc9a760e01b6001600160e01b0319831614610ac4565b60025460009082108015610ac4575060006001600160a01b0316600283815481106120605761206061352a565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120b2826114fa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b038416600090815260086020526040812054909183916121159086613432565b61211f919061341e565b611e479190613451565b804710156121795760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bc4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146121c6576040519150601f19603f3d011682016040523d82523d6000602084013e6121cb565b606091505b5050905080610cfa5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bc4565b600061224d82612033565b6122ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bc4565b60006122b9836114fa565b9050806001600160a01b0316846001600160a01b031614806122f45750836001600160a01b03166122e984610b5c565b6001600160a01b0316145b80611e475750611e478185611d5c565b826001600160a01b0316612317826114fa565b6001600160a01b03161461237f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bc4565b6001600160a01b0382166123e15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bc4565b6123ec60008261207d565b81600282815481106124005761240061352a565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6000612465826114fa565b905061247260008361207d565b6000600283815481106124875761248761352a565b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610cfa908490612743565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61258b848484612304565b61259784848484612815565b6117cd5760405162461bcd60e51b8152600401610bc49061326c565b6000826125c08584612922565b14949350505050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060816126695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612693578061267d816134cf565b915061268c9050600a8361341e565b915061266d565b60008167ffffffffffffffff8111156126ae576126ae613540565b6040519080825280601f01601f1916602001820160405280156126d8576020820181803683370190505b5090505b8415611e47576126ed600183613451565b91506126fa600a866134ea565b612705906030613406565b60f81b81838151811061271a5761271a61352a565b60200101906001600160f81b031916908160001a90535061273c600a8661341e565b94506126dc565b6000612798826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661298e9092919063ffffffff16565b805190915015610cfa57808060200190518101906127b69190612f04565b610cfa5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bc4565b60006001600160a01b0384163b1561291757604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061285990339089908890889060040161318d565b602060405180830381600087803b15801561287357600080fd5b505af19250505080156128a3575060408051601f3d908101601f191682019092526128a091810190612f57565b60015b6128fd573d8080156128d1576040519150601f19603f3d011682016040523d82523d6000602084013e6128d6565b606091505b5080516128f55760405162461bcd60e51b8152600401610bc49061326c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e47565b506001949350505050565b600081815b84518110156111055760008582815181106129445761294461352a565b6020026020010151905080831161296a576000838152602082905260409020925061297b565b600081815260208490526040902092505b5080612986816134cf565b915050612927565b6060611e47848460008585843b6129e75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bc4565b600080866001600160a01b03168587604051612a039190613111565b60006040518083038185875af1925050503d8060008114612a40576040519150601f19603f3d011682016040523d82523d6000602084013e612a45565b606091505b5091509150612a55828286612a60565b979650505050505050565b60608315612a6f5750816113fb565b825115612a7f5782518084602001fd5b8160405162461bcd60e51b8152600401610bc4919061320e565b828054612aa590613494565b90600052602060002090601f016020900481019282612ac75760008555612b0d565b82601f10612ae057805160ff1916838001178555612b0d565b82800160010185558215612b0d579182015b82811115612b0d578251825591602001919060010190612af2565b5061146b9291505b8082111561146b5760008155600101612b15565b600067ffffffffffffffff831115612b4357612b43613540565b612b56601f8401601f19166020016133d5565b9050828152838383011115612b6a57600080fd5b828260208301376000602084830101529392505050565b60008083601f840112612b9357600080fd5b50813567ffffffffffffffff811115612bab57600080fd5b6020830191508360208260051b8501011115612bc657600080fd5b9250929050565b600082601f830112612bde57600080fd5b8135602067ffffffffffffffff821115612bfa57612bfa613540565b8160051b612c098282016133d5565b838152828101908684018388018501891015612c2457600080fd5b600093505b85841015612c47578035835260019390930192918401918401612c29565b50979650505050505050565b600082601f830112612c6457600080fd5b6113fb83833560208501612b29565b600060208284031215612c8557600080fd5b81356113fb81613556565b60008060408385031215612ca357600080fd5b8235612cae81613556565b91506020830135612cbe81613556565b809150509250929050565b600080600060608486031215612cde57600080fd5b8335612ce981613556565b92506020840135612cf981613556565b9150604084013567ffffffffffffffff811115612d1557600080fd5b612d2186828701612bcd565b9150509250925092565b60008060008060808587031215612d4157600080fd5b8435612d4c81613556565b93506020850135612d5c81613556565b9250604085013567ffffffffffffffff80821115612d7957600080fd5b612d8588838901612bcd565b93506060870135915080821115612d9b57600080fd5b50612da887828801612c53565b91505092959194509250565b600080600060608486031215612dc957600080fd5b8335612dd481613556565b92506020840135612de481613556565b929592945050506040919091013590565b60008060008060808587031215612e0b57600080fd5b8435612e1681613556565b93506020850135612e2681613556565b925060408501359150606085013567ffffffffffffffff811115612e4957600080fd5b612da887828801612c53565b600080600060408486031215612e6a57600080fd5b8335612e7581613556565b9250602084013567ffffffffffffffff811115612e9157600080fd5b612e9d86828701612b81565b9497909650939450505050565b60008060408385031215612ebd57600080fd5b8235612ec881613556565b91506020830135612cbe8161356b565b60008060408385031215612eeb57600080fd5b8235612ef681613556565b946020939093013593505050565b600060208284031215612f1657600080fd5b81516113fb8161356b565b600060208284031215612f3357600080fd5b5035919050565b600060208284031215612f4c57600080fd5b81356113fb81613579565b600060208284031215612f6957600080fd5b81516113fb81613579565b600060208284031215612f8657600080fd5b81516113fb81613556565b600060208284031215612fa357600080fd5b813567ffffffffffffffff811115612fba57600080fd5b8201601f81018413612fcb57600080fd5b611e4784823560208401612b29565b600060208284031215612fec57600080fd5b5051919050565b6000806040838503121561300657600080fd5b823591506020830135612cbe81613556565b60008060006040848603121561302d57600080fd5b83359250602084013567ffffffffffffffff811115612e9157600080fd5b60008151808452613063816020860160208601613468565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061309157607f831692505b60208084108214156130b357634e487b7160e01b600052602260045260246000fd5b8180156130c757600181146130d857613105565b60ff19861689528489019650613105565b60008881526020902060005b868110156130fd5781548b8201529085019083016130e4565b505084890196505b50505050505092915050565b60008251613123818460208701613468565b9190910192915050565b60006131398285613077565b8351613149818360208801613468565b64173539b7b760d91b9101908152600501949350505050565b600061316e8284613077565b6e3ab73932bb32b0b632b2173539b7b760891b8152600f019392505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131c09083018461304b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613202578351835292840192918401916001016131e6565b50909695505050505050565b6020815260006113fb602083018461304b565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156133fe576133fe613540565b604052919050565b60008219821115613419576134196134fe565b500190565b60008261342d5761342d613514565b500490565b600081600019048311821515161561344c5761344c6134fe565b500290565b600082821015613463576134636134fe565b500390565b60005b8381101561348357818101518382015260200161346b565b838111156117cd5750506000910152565b600181811c908216806134a857607f821691505b602082108114156134c957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134e3576134e36134fe565b5060010190565b6000826134f9576134f9613514565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461103657600080fd5b801515811461103657600080fd5b6001600160e01b03198116811461103657600080fdfea264697066735822122014765ad2e2191e0b55e1dab85bfe48658b8e28e46adb13134c5a49f2f56ff48064736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000030000000000000000000000008964c92fb51a866ec55c1e78c1a48750f46f8d6f0000000000000000000000003c9da47e992949d2e1056763d9c7abddfee9e9de0000000000000000000000009c5d7e979eb90126715b60d10a0b37305fa2d2870000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000005
Deployed Bytecode
0x6080604052600436106103545760003560e01c80636352211e116101c6578063c79b25cf116100f7578063e985e9c511610095578063f3993d111161006f578063f3993d1114610a34578063f43a22dc14610a54578063f9020e3314610a69578063ffe630b514610a7f57600080fd5b8063e985e9c5146109d4578063f29f15af146109f4578063f2fde38b14610a1457600080fd5b8063ce7c2ac2116100d1578063ce7c2ac214610933578063d26ea6c014610969578063d79779b214610989578063e33b7de3146109bf57600080fd5b8063c79b25cf146108d3578063c87b56dd146108f3578063cd7c03261461091357600080fd5b80639852595c11610164578063aa98e0c61161013e578063aa98e0c61461086a578063b88d4fde14610880578063ba41b0c6146108a0578063bd32fb66146108b357600080fd5b80639852595c146107e75780639ec00c951461081d578063a22cb4651461084a57600080fd5b8063715018a6116101a0578063715018a61461077f5780638b83209b146107945780638da5cb5b146107b457806395d89b41146107d257600080fd5b80636352211e1461072a5780636c0360eb1461074a57806370a082311461075f57600080fd5b80633c8da588116102a05780634d44660c1161023e57806355042e331161021857806355042e33146106a557806355f804b3146106ba5780635a4fee30146106da5780635bab26e2146106fa57600080fd5b80634d44660c1461064b5780634f6ccce71461066b578063518302271461068b57600080fd5b806342966c681161027a57806342966c68146105c8578063438b6300146105e857806348b75044146106155780634c5b7a291461063557600080fd5b80633c8da58814610547578063406072a91461056257806342842e0e146105a857600080fd5b8063191655871161030d57806332cb6b0c116102e757806332cb6b0c146104e75780633a4b3664146104fd5780633a98ef391461051d5780633bd649681461053257600080fd5b8063191655871461048757806323b872dd146104a75780632f745c59146104c757600080fd5b806301ffc9a7146103a257806306fdde03146103d7578063081812fc146103f9578063095ea7b3146104315780630f7309e81461045357806318160ddd1461046857600080fd5b3661039d577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103ae57600080fd5b506103c26103bd366004612f3a565b610a9f565b60405190151581526020015b60405180910390f35b3480156103e357600080fd5b506103ec610aca565b6040516103ce919061320e565b34801561040557600080fd5b50610419610414366004612f21565b610b5c565b6040516001600160a01b0390911681526020016103ce565b34801561043d57600080fd5b5061045161044c366004612ed8565b610be9565b005b34801561045f57600080fd5b506103ec610cff565b34801561047457600080fd5b506002545b6040519081526020016103ce565b34801561049357600080fd5b506104516104a2366004612c73565b610d8d565b3480156104b357600080fd5b506104516104c2366004612db4565b610ebb565b3480156104d357600080fd5b506104796104e2366004612ed8565b610eed565b3480156104f357600080fd5b506104796115b381565b34801561050957600080fd5b50610451610518366004612f21565b610fa0565b34801561052957600080fd5b50600654610479565b34801561053e57600080fd5b50610451611039565b34801561055357600080fd5b5061047966f523226980800081565b34801561056e57600080fd5b5061047961057d366004612c90565b6001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b3480156105b457600080fd5b506104516105c3366004612db4565b611077565b3480156105d457600080fd5b506104516105e3366004612f21565b611092565b3480156105f457600080fd5b50610608610603366004612c73565b6110df565b6040516103ce91906131ca565b34801561062157600080fd5b50610451610630366004612c90565b611198565b34801561064157600080fd5b5061047960125481565b34801561065757600080fd5b506103c2610666366004612e55565b611380565b34801561067757600080fd5b50610479610686366004612f21565b611402565b34801561069757600080fd5b506010546103c29060ff1681565b3480156106b157600080fd5b50610479600281565b3480156106c657600080fd5b506104516106d5366004612f91565b61146f565b3480156106e657600080fd5b506104516106f5366004612d2b565b6114b0565b34801561070657600080fd5b506103c2610715366004612c73565b60146020526000908152604090205460ff1681565b34801561073657600080fd5b50610419610745366004612f21565b6114fa565b34801561075657600080fd5b506103ec611586565b34801561076b57600080fd5b5061047961077a366004612c73565b611593565b34801561078b57600080fd5b50610451611661565b3480156107a057600080fd5b506104196107af366004612f21565b611697565b3480156107c057600080fd5b506005546001600160a01b0316610419565b3480156107de57600080fd5b506103ec6116c7565b3480156107f357600080fd5b50610479610802366004612c73565b6001600160a01b031660009081526009602052604090205490565b34801561082957600080fd5b50610479610838366004612c73565b60156020526000908152604090205481565b34801561085657600080fd5b50610451610865366004612eaa565b6116d6565b34801561087657600080fd5b50610479600f5481565b34801561088c57600080fd5b5061045161089b366004612df5565b61179b565b6104516108ae366004613018565b6117d3565b3480156108bf57600080fd5b506104516108ce366004612f21565b611b27565b3480156108df57600080fd5b506104516108ee366004612ff3565b611b56565b3480156108ff57600080fd5b506103ec61090e366004612f21565b611c72565b34801561091f57600080fd5b50600e54610419906001600160a01b031681565b34801561093f57600080fd5b5061047961094e366004612c73565b6001600160a01b031660009081526008602052604090205490565b34801561097557600080fd5b50610451610984366004612c73565b611d10565b34801561099557600080fd5b506104796109a4366004612c73565b6001600160a01b03166000908152600b602052604090205490565b3480156109cb57600080fd5b50600754610479565b3480156109e057600080fd5b506103c26109ef366004612c90565b611d5c565b348015610a0057600080fd5b50610451610a0f366004612f21565b611e4f565b348015610a2057600080fd5b50610451610a2f366004612c73565b611ecc565b348015610a4057600080fd5b50610451610a4f366004612cc9565b611f64565b348015610a6057600080fd5b50610479600681565b348015610a7557600080fd5b5061047960115481565b348015610a8b57600080fd5b50610451610a9a366004612f91565b611fa6565b60006001600160e01b0319821663780e9d6360e01b1480610ac45750610ac482611fe3565b92915050565b606060008054610ad990613494565b80601f0160208091040260200160405190810160405280929190818152602001828054610b0590613494565b8015610b525780601f10610b2757610100808354040283529160200191610b52565b820191906000526020600020905b815481529060010190602001808311610b3557829003601f168201915b5050505050905090565b6000610b6782612033565b610bcd5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610bf4826114fa565b9050806001600160a01b0316836001600160a01b03161415610c625760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610bc4565b336001600160a01b0382161480610c7e5750610c7e8133611d5c565b610cf05760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610bc4565b610cfa838361207d565b505050565b60138054610d0c90613494565b80601f0160208091040260200160405190810160405280929190818152602001828054610d3890613494565b8015610d855780601f10610d5a57610100808354040283529160200191610d85565b820191906000526020600020905b815481529060010190602001808311610d6857829003601f168201915b505050505081565b6001600160a01b038116600090815260086020526040902054610dc25760405162461bcd60e51b8152600401610bc4906132be565b6000610dcd60075490565b610dd79047613406565b90506000610e048383610dff866001600160a01b031660009081526009602052604090205490565b6120eb565b905080610e235760405162461bcd60e51b8152600401610bc490613304565b6001600160a01b03831660009081526009602052604081208054839290610e4b908490613406565b925050819055508060076000828254610e649190613406565b90915550610e7490508382612129565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610ec6335b82612242565b610ee25760405162461bcd60e51b8152600401610bc490613384565b610cfa838383612304565b6000610ef883611593565b8210610f165760405162461bcd60e51b8152600401610bc490613221565b6000805b600254811015610f875760028181548110610f3757610f3761352a565b6000918252602090912001546001600160a01b0386811691161415610f755783821415610f67579150610ac49050565b81610f71816134cf565b9250505b80610f7f816134cf565b915050610f1a565b5060405162461bcd60e51b8152600401610bc490613221565b6005546001600160a01b03163314610fca5760405162461bcd60e51b8152600401610bc49061334f565b63624a0ad0421061102d5760405162461bcd60e51b815260206004820152602760248201527f4f776e65722063616e6e6f74206275726e20616674657220342f332f32303232604482015266101ba81022aa1760c91b6064820152608401610bc4565b6110368161245a565b50565b6005546001600160a01b031633146110635760405162461bcd60e51b8152600401610bc49061334f565b6010805460ff19811660ff90911615179055565b610cfa8383836040518060200160405280600081525061179b565b61109b33610ec0565b61102d5760405162461bcd60e51b81526020600482015260156024820152742737ba1030b8383937bb32b2103a3790313ab9371760591b6044820152606401610bc4565b606060006110ec83611593565b90508061110d5760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff81111561112857611128613540565b604051908082528060200260200182016040528015611151578160200160208202803683370190505b50905060005b82811015611105576111698582610eed565b82828151811061117b5761117b61352a565b602090810291909101015280611190816134cf565b915050611157565b6001600160a01b0381166000908152600860205260409020546111cd5760405162461bcd60e51b8152600401610bc4906132be565b6001600160a01b0382166000908152600b60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561122557600080fd5b505afa158015611239573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125d9190612fda565b6112679190613406565b905060006112a08383610dff87876001600160a01b039182166000908152600c6020908152604080832093909416825291909152205490565b9050806112bf5760405162461bcd60e51b8152600401610bc490613304565b6001600160a01b038085166000908152600c60209081526040808320938716835292905290812080548392906112f6908490613406565b90915550506001600160a01b0384166000908152600b602052604081208054839290611323908490613406565b9091555061133490508484836124dc565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000805b828110156113f557846001600160a01b031660028585848181106113aa576113aa61352a565b90506020020135815481106113c1576113c161352a565b6000918252602090912001546001600160a01b0316146113e55760009150506113fb565b6113ee816134cf565b9050611384565b50600190505b9392505050565b600254600090821061146b5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610bc4565b5090565b6005546001600160a01b031633146114995760405162461bcd60e51b8152600401610bc49061334f565b80516114ac90600d906020840190612a99565b5050565b60005b82518110156114f3576114e185858584815181106114d3576114d361352a565b60200260200101518561179b565b806114eb816134cf565b9150506114b3565b5050505050565b600080600283815481106115105761151061352a565b6000918252602090912001546001600160a01b0316905080610ac45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610bc4565b600d8054610d0c90613494565b60006001600160a01b0382166115fe5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610bc4565b6000805b60025481101561165a576002818154811061161f5761161f61352a565b6000918252602090912001546001600160a01b038581169116141561164a57611647826134cf565b91505b611653816134cf565b9050611602565b5092915050565b6005546001600160a01b0316331461168b5760405162461bcd60e51b8152600401610bc49061334f565b611695600061252e565b565b6000600a82815481106116ac576116ac61352a565b6000918252602090912001546001600160a01b031692915050565b606060018054610ad990613494565b6001600160a01b03821633141561172f5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610bc4565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6117a53383612242565b6117c15760405162461bcd60e51b8152600401610bc490613384565b6117cd84848484612580565b50505050565b604080513360601b6bffffffffffffffffffffffff191660208083019190915282516014818403018152603490920190925280519101206002546115b361181a8683613406565b111561185e5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610bc4565b601154600114156119fc576118aa84848080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600f5491508590506125b3565b6119025760405162461bcd60e51b815260206004820152602360248201527f4e6f74206f6e20626c75656c6973742e204d65726b6c652050726f6f6620666160448201526234b61760e91b6064820152608401610bc4565b33600090815260156020526040902054600290611920908790613406565b11156119795760405162461bcd60e51b815260206004820152602260248201527f457863656564732077686974656c697374206d61782070657220616464726573604482015261399760f11b6064820152608401610bc4565b3461198b66f523226980800087613432565b146119d25760405162461bcd60e51b815260206004820152601760248201527624b73b30b634b210333ab7323990383937bb34b232b21760491b6044820152606401610bc4565b33600090815260156020526040812080548792906119f1908490613406565b90915550611aef9050565b60115460021415611ab6576006851115611a585760405162461bcd60e51b815260206004820152601c60248201527f45786365656473206d617820706572207472616e73616374696f6e2e000000006044820152606401610bc4565b34611a6a66f523226980800087613432565b14611ab15760405162461bcd60e51b815260206004820152601760248201527624b73b30b634b210333ab7323990383937bb34b232b21760491b6044820152606401610bc4565b611aef565b60405162461bcd60e51b815260206004820152600e60248201526d29b0b632903737ba1037b832b71760911b6044820152606401610bc4565b60005b85811015611b1f57611b0d33611b088385613406565b6125c9565b80611b17816134cf565b915050611af2565b505050505050565b6005546001600160a01b03163314611b515760405162461bcd60e51b8152600401610bc49061334f565b600f55565b6005546001600160a01b03163314611b805760405162461bcd60e51b8152600401610bc49061334f565b600082601254611b909190613451565b1015611bd65760405162461bcd60e51b815260206004820152601560248201527422bc31b2b2b2399036b0bc1033b4bb32b0bbb0bc9760591b6044820152606401610bc4565b6002546115b3611be68483613406565b1115611c2a5760405162461bcd60e51b815260206004820152601360248201527222bc31b2b232b99036b0bc1039bab838363c9760691b6044820152606401610bc4565b60005b83811015611c5557611c4383611b088385613406565b80611c4d816134cf565b915050611c2d565b508260126000828254611c689190613451565b9091555050505050565b60105460609060ff16611ca757600d604051602001611c919190613162565b6040516020818303038152906040529050919050565b611cb082612033565b611cf45760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b6044820152606401610bc4565b600d611cff83612645565b604051602001611c9192919061312d565b6005546001600160a01b03163314611d3a5760405162461bcd60e51b8152600401610bc49061334f565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b600e5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b158015611da957600080fd5b505afa158015611dbd573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611de19190612f74565b6001600160a01b03161480611e0e57506001600160a01b03831660009081526014602052604090205460ff165b15611e1d576001915050610ac4565b6001600160a01b0380851660009081526004602090815260408083209387168352929052205460ff165b949350505050565b6005546001600160a01b03163314611e795760405162461bcd60e51b8152600401610bc49061334f565b6004601154108015611e89575060015b611ec75760405162461bcd60e51b815260206004820152600f60248201526e24b73b30b634b21039ba30ba3ab99760891b6044820152606401610bc4565b601155565b6005546001600160a01b03163314611ef65760405162461bcd60e51b8152600401610bc49061334f565b6001600160a01b038116611f5b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bc4565b6110368161252e565b60005b81518110156117cd57611f948484848481518110611f8757611f8761352a565b6020026020010151610ebb565b80611f9e816134cf565b915050611f67565b6005546001600160a01b03163314611fd05760405162461bcd60e51b8152600401610bc49061334f565b80516114ac906013906020840190612a99565b60006001600160e01b031982166380ac58cd60e01b148061201457506001600160e01b03198216635b5e139f60e01b145b80610ac457506301ffc9a760e01b6001600160e01b0319831614610ac4565b60025460009082108015610ac4575060006001600160a01b0316600283815481106120605761206061352a565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906120b2826114fa565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6006546001600160a01b038416600090815260086020526040812054909183916121159086613432565b61211f919061341e565b611e479190613451565b804710156121795760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610bc4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146121c6576040519150601f19603f3d011682016040523d82523d6000602084013e6121cb565b606091505b5050905080610cfa5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610bc4565b600061224d82612033565b6122ae5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610bc4565b60006122b9836114fa565b9050806001600160a01b0316846001600160a01b031614806122f45750836001600160a01b03166122e984610b5c565b6001600160a01b0316145b80611e475750611e478185611d5c565b826001600160a01b0316612317826114fa565b6001600160a01b03161461237f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610bc4565b6001600160a01b0382166123e15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610bc4565b6123ec60008261207d565b81600282815481106124005761240061352a565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b6000612465826114fa565b905061247260008361207d565b6000600283815481106124875761248761352a565b6000918252602082200180546001600160a01b0319166001600160a01b0393841617905560405184928416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610cfa908490612743565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61258b848484612304565b61259784848484612815565b6117cd5760405162461bcd60e51b8152600401610bc49061326c565b6000826125c08584612922565b14949350505050565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6060816126695750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612693578061267d816134cf565b915061268c9050600a8361341e565b915061266d565b60008167ffffffffffffffff8111156126ae576126ae613540565b6040519080825280601f01601f1916602001820160405280156126d8576020820181803683370190505b5090505b8415611e47576126ed600183613451565b91506126fa600a866134ea565b612705906030613406565b60f81b81838151811061271a5761271a61352a565b60200101906001600160f81b031916908160001a90535061273c600a8661341e565b94506126dc565b6000612798826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b031661298e9092919063ffffffff16565b805190915015610cfa57808060200190518101906127b69190612f04565b610cfa5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610bc4565b60006001600160a01b0384163b1561291757604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061285990339089908890889060040161318d565b602060405180830381600087803b15801561287357600080fd5b505af19250505080156128a3575060408051601f3d908101601f191682019092526128a091810190612f57565b60015b6128fd573d8080156128d1576040519150601f19603f3d011682016040523d82523d6000602084013e6128d6565b606091505b5080516128f55760405162461bcd60e51b8152600401610bc49061326c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e47565b506001949350505050565b600081815b84518110156111055760008582815181106129445761294461352a565b6020026020010151905080831161296a576000838152602082905260409020925061297b565b600081815260208490526040902092505b5080612986816134cf565b915050612927565b6060611e47848460008585843b6129e75760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610bc4565b600080866001600160a01b03168587604051612a039190613111565b60006040518083038185875af1925050503d8060008114612a40576040519150601f19603f3d011682016040523d82523d6000602084013e612a45565b606091505b5091509150612a55828286612a60565b979650505050505050565b60608315612a6f5750816113fb565b825115612a7f5782518084602001fd5b8160405162461bcd60e51b8152600401610bc4919061320e565b828054612aa590613494565b90600052602060002090601f016020900481019282612ac75760008555612b0d565b82601f10612ae057805160ff1916838001178555612b0d565b82800160010185558215612b0d579182015b82811115612b0d578251825591602001919060010190612af2565b5061146b9291505b8082111561146b5760008155600101612b15565b600067ffffffffffffffff831115612b4357612b43613540565b612b56601f8401601f19166020016133d5565b9050828152838383011115612b6a57600080fd5b828260208301376000602084830101529392505050565b60008083601f840112612b9357600080fd5b50813567ffffffffffffffff811115612bab57600080fd5b6020830191508360208260051b8501011115612bc657600080fd5b9250929050565b600082601f830112612bde57600080fd5b8135602067ffffffffffffffff821115612bfa57612bfa613540565b8160051b612c098282016133d5565b838152828101908684018388018501891015612c2457600080fd5b600093505b85841015612c47578035835260019390930192918401918401612c29565b50979650505050505050565b600082601f830112612c6457600080fd5b6113fb83833560208501612b29565b600060208284031215612c8557600080fd5b81356113fb81613556565b60008060408385031215612ca357600080fd5b8235612cae81613556565b91506020830135612cbe81613556565b809150509250929050565b600080600060608486031215612cde57600080fd5b8335612ce981613556565b92506020840135612cf981613556565b9150604084013567ffffffffffffffff811115612d1557600080fd5b612d2186828701612bcd565b9150509250925092565b60008060008060808587031215612d4157600080fd5b8435612d4c81613556565b93506020850135612d5c81613556565b9250604085013567ffffffffffffffff80821115612d7957600080fd5b612d8588838901612bcd565b93506060870135915080821115612d9b57600080fd5b50612da887828801612c53565b91505092959194509250565b600080600060608486031215612dc957600080fd5b8335612dd481613556565b92506020840135612de481613556565b929592945050506040919091013590565b60008060008060808587031215612e0b57600080fd5b8435612e1681613556565b93506020850135612e2681613556565b925060408501359150606085013567ffffffffffffffff811115612e4957600080fd5b612da887828801612c53565b600080600060408486031215612e6a57600080fd5b8335612e7581613556565b9250602084013567ffffffffffffffff811115612e9157600080fd5b612e9d86828701612b81565b9497909650939450505050565b60008060408385031215612ebd57600080fd5b8235612ec881613556565b91506020830135612cbe8161356b565b60008060408385031215612eeb57600080fd5b8235612ef681613556565b946020939093013593505050565b600060208284031215612f1657600080fd5b81516113fb8161356b565b600060208284031215612f3357600080fd5b5035919050565b600060208284031215612f4c57600080fd5b81356113fb81613579565b600060208284031215612f6957600080fd5b81516113fb81613579565b600060208284031215612f8657600080fd5b81516113fb81613556565b600060208284031215612fa357600080fd5b813567ffffffffffffffff811115612fba57600080fd5b8201601f81018413612fcb57600080fd5b611e4784823560208401612b29565b600060208284031215612fec57600080fd5b5051919050565b6000806040838503121561300657600080fd5b823591506020830135612cbe81613556565b60008060006040848603121561302d57600080fd5b83359250602084013567ffffffffffffffff811115612e9157600080fd5b60008151808452613063816020860160208601613468565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061309157607f831692505b60208084108214156130b357634e487b7160e01b600052602260045260246000fd5b8180156130c757600181146130d857613105565b60ff19861689528489019650613105565b60008881526020902060005b868110156130fd5781548b8201529085019083016130e4565b505084890196505b50505050505092915050565b60008251613123818460208701613468565b9190910192915050565b60006131398285613077565b8351613149818360208801613468565b64173539b7b760d91b9101908152600501949350505050565b600061316e8284613077565b6e3ab73932bb32b0b632b2173539b7b760891b8152600f019392505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906131c09083018461304b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015613202578351835292840192918401916001016131e6565b50909695505050505050565b6020815260006113fb602083018461304b565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff811182821017156133fe576133fe613540565b604052919050565b60008219821115613419576134196134fe565b500190565b60008261342d5761342d613514565b500490565b600081600019048311821515161561344c5761344c6134fe565b500290565b600082821015613463576134636134fe565b500390565b60005b8381101561348357818101518382015260200161346b565b838111156117cd5750506000910152565b600181811c908216806134a857607f821691505b602082108114156134c957634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156134e3576134e36134fe565b5060010190565b6000826134f9576134f9613514565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461103657600080fd5b801515811461103657600080fd5b6001600160e01b03198116811461103657600080fdfea264697066735822122014765ad2e2191e0b55e1dab85bfe48658b8e28e46adb13134c5a49f2f56ff48064736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000000030000000000000000000000008964c92fb51a866ec55c1e78c1a48750f46f8d6f0000000000000000000000003c9da47e992949d2e1056763d9c7abddfee9e9de0000000000000000000000009c5d7e979eb90126715b60d10a0b37305fa2d2870000000000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000005a00000000000000000000000000000000000000000000000000000000000000050000000000000000000000000000000000000000000000000000000000000005
-----Decoded View---------------
Arg [0] : _payees (address[]): 0x8964C92fb51A866ec55C1E78C1a48750f46f8D6f,0x3c9dA47e992949d2E1056763d9C7abdDFeE9e9DE,0x9c5D7E979Eb90126715b60D10a0b37305FA2d287
Arg [1] : _paymentShares (uint256[]): 90,5,5
-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [3] : 0000000000000000000000008964c92fb51a866ec55c1e78c1a48750f46f8d6f
Arg [4] : 0000000000000000000000003c9da47e992949d2e1056763d9c7abddfee9e9de
Arg [5] : 0000000000000000000000009c5d7e979eb90126715b60d10a0b37305fa2d287
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 000000000000000000000000000000000000000000000000000000000000005a
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Deployed Bytecode Sourcemap
176:5724:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3216:40:14;719:10:1;3216:40:14;;;-1:-1:-1;;;;;13396:32:17;;;13378:51;;3246:9:14;13460:2:17;13445:18;;13438:34;13351:18;3216:40:14;;;;;;;176:5724:5;;;;;529:222:4;;;;;;;;;;-1:-1:-1;529:222:4;;;;;:::i;:::-;;:::i;:::-;;;15057:14:17;;15050:22;15032:41;;15020:2;15005:18;529:222:4;;;;;;;;2159:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;2942:295::-;;;;;;;;;;-1:-1:-1;2942:295:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;13152:32:17;;;13134:51;;13122:2;13107:18;2942:295:3;12988:203:17;2480:401:3;;;;;;;;;;-1:-1:-1;2480:401:3;;;;;:::i;:::-;;:::i;:::-;;920:38:5;;;;;;;;;;;;;:::i;822:108:4:-;;;;;;;;;;-1:-1:-1;909:7:4;:14;822:108;;;15230:25:17;;;15218:2;15203:18;822:108:4;15084:177:17;4944:553:14;;;;;;;;;;-1:-1:-1;4944:553:14;;;;;:::i;:::-;;:::i;3956:364:3:-;;;;;;;;;;-1:-1:-1;3956:364:3;;;;;:::i;:::-;;:::i;1283:478:4:-;;;;;;;;;;-1:-1:-1;1283:478:4;;;;;:::i;:::-;;:::i;598:58:5:-;;;;;;;;;;;;652:4;598:58;;4055:174;;;;;;;;;;-1:-1:-1;4055:174:5;;;;;:::i;:::-;;:::i;3341:89:14:-;;;;;;;;;;-1:-1:-1;3411:12:14;;3341:89;;1374:77:5;;;;;;;;;;;;;:::i;786:65::-;;;;;;;;;;;;840:11;786:65;;4433:133:14;;;;;;;;;;-1:-1:-1;4433:133:14;;;;;:::i;:::-;-1:-1:-1;;;;;4529:21:14;;;4503:7;4529:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4433:133;4386:179:3;;;;;;;;;;-1:-1:-1;4386:179:3;;;;;:::i;:::-;;:::i;3894:155:5:-;;;;;;;;;;-1:-1:-1;3894:155:5;;;;;:::i;:::-;;:::i;4235:391::-;;;;;;;;;;-1:-1:-1;4235:391:5;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5758:628:14:-;;;;;;;;;;-1:-1:-1;5758:628:14;;;;;:::i;:::-;;:::i;662:56:5:-;;;;;;;;;;;;;;;;5111:264;;;;;;;;;;-1:-1:-1;5111:264:5;;;;;:::i;:::-;;:::i;1002:202:4:-;;;;;;;;;;-1:-1:-1;1002:202:4;;;;;:::i;:::-;;:::i;444:59:5:-;;;;;;;;;;-1:-1:-1;444:59:5;;;;;;;;858:55;;;;;;;;;;;;912:1;858:55;;1272:96;;;;;;;;;;-1:-1:-1;1272:96:5;;;;;:::i;:::-;;:::i;4854:251::-;;;;;;;;;;-1:-1:-1;4854:251:5;;;;;:::i;:::-;;:::i;966:44::-;;;;;;;;;;-1:-1:-1;966:44:5;;;;;:::i;:::-;;;;;;;;;;;;;;;;1784:313:3;;;;;;;;;;-1:-1:-1;1784:313:3;;;;;:::i;:::-;;:::i;248:35:5:-;;;;;;;;;;;;;:::i;1350:377:3:-;;;;;;;;;;-1:-1:-1;1350:377:3;;;;;:::i;:::-;;:::i;1661:101:13:-;;;;;;;;;;;;;:::i;4652:98:14:-;;;;;;;;;;-1:-1:-1;4652:98:14;;;;;:::i;:::-;;:::i;1029:85:13:-;;;;;;;;;;-1:-1:-1;1101:6:13;;-1:-1:-1;;;;;1101:6:13;1029:85;;2321:102:3;;;;;;;;;;;;;:::i;4163:107:14:-;;;;;;;;;;-1:-1:-1;4163:107:14;;;;;:::i;:::-;-1:-1:-1;;;;;4245:18:14;4219:7;4245:18;;;:9;:18;;;;;;;4163:107;1016:47:5;;;;;;;;;;-1:-1:-1;1016:47:5;;;;;:::i;:::-;;;;;;;;;;;;;;3304:318:3;;;;;;;;;;-1:-1:-1;3304:318:3;;;;;:::i;:::-;;:::i;391:47:5:-;;;;;;;;;;;;;;;;4631:354:3;;;;;;;;;;-1:-1:-1;4631:354:3;;;;;:::i;:::-;;:::i;2473:1031:5:-;;;;;;:::i;:::-;;:::i;2114:179::-;;;;;;;;;;-1:-1:-1;2114:179:5;;;;;:::i;:::-;;:::i;3510:378::-;;;;;;;;;;-1:-1:-1;3510:378:5;;;;;:::i;:::-;;:::i;1571:386::-;;;;;;;;;;-1:-1:-1;1571:386:5;;;;;:::i;:::-;;:::i;289:96::-;;;;;;;;;;-1:-1:-1;289:96:5;;;;-1:-1:-1;;;;;289:96:5;;;3966:103:14;;;;;;;;;;-1:-1:-1;3966:103:14;;;;;:::i;:::-;-1:-1:-1;;;;;4046:16:14;4020:7;4046:16;;;:7;:16;;;;;;;3966:103;1963:144:5;;;;;;;;;;-1:-1:-1;1963:144:5;;;;;:::i;:::-;;:::i;3763:117:14:-;;;;;;;;;;-1:-1:-1;3763:117:14;;;;;:::i;:::-;-1:-1:-1;;;;;3847:26:14;3821:7;3847:26;;;:19;:26;;;;;;;3763:117;3519:93;;;;;;;;;;-1:-1:-1;3591:14:14;;3519:93;;5381:360:5;;;;;;;;;;-1:-1:-1;5381:360:5;;;;;:::i;:::-;;:::i;2299:167::-;;;;;;;;;;-1:-1:-1;2299:167:5;;;;;:::i;:::-;;:::i;1911:198:13:-;;;;;;;;;;-1:-1:-1;1911:198:13;;;;;:::i;:::-;;:::i;4632:216:5:-;;;;;;;;;;-1:-1:-1;4632:216:5;;;;;:::i;:::-;;:::i;725:55::-;;;;;;;;;;;;779:1;725:55;;509;;;;;;;;;;;;;;;;1457:108;;;;;;;;;;-1:-1:-1;1457:108:5;;;;;:::i;:::-;;:::i;529:222:4:-;631:4;-1:-1:-1;;;;;;654:50:4;;-1:-1:-1;;;654:50:4;;:90;;;708:36;732:11;708:23;:36::i;:::-;647:97;529:222;-1:-1:-1;;529:222:4:o;2159:98:3:-;2213:13;2245:5;2238:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2159:98;:::o;2942:295::-;3058:7;3102:16;3110:7;3102;:16::i;:::-;3081:107;;;;-1:-1:-1;;;3081:107:3;;22813:2:17;3081:107:3;;;22795:21:17;22852:2;22832:18;;;22825:30;22891:34;22871:18;;;22864:62;-1:-1:-1;;;22942:18:17;;;22935:42;22994:19;;3081:107:3;;;;;;;;;-1:-1:-1;3206:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;3206:24:3;;2942:295::o;2480:401::-;2560:13;2576:23;2591:7;2576:14;:23::i;:::-;2560:39;;2623:5;-1:-1:-1;;;;;2617:11:3;:2;-1:-1:-1;;;;;2617:11:3;;;2609:57;;;;-1:-1:-1;;;2609:57:3;;24690:2:17;2609:57:3;;;24672:21:17;24729:2;24709:18;;;24702:30;24768:34;24748:18;;;24741:62;-1:-1:-1;;;24819:18:17;;;24812:31;24860:19;;2609:57:3;24488:397:17;2609:57:3;719:10:1;-1:-1:-1;;;;;2698:21:3;;;;:62;;-1:-1:-1;2723:37:3;2740:5;719:10:1;5381:360:5;:::i;2723:37:3:-;2677:165;;;;-1:-1:-1;;;2677:165:3;;20865:2:17;2677:165:3;;;20847:21:17;20904:2;20884:18;;;20877:30;20943:34;20923:18;;;20916:62;21014:26;20994:18;;;20987:54;21058:19;;2677:165:3;20663:420:17;2677:165:3;2853:21;2862:2;2866:7;2853:8;:21::i;:::-;2550:331;2480:401;;:::o;920:38:5:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4944:553:14:-;-1:-1:-1;;;;;5019:16:14;;5038:1;5019:16;;;:7;:16;;;;;;5011:71;;;;-1:-1:-1;;;5011:71:14;;;;;;;:::i;:::-;5093:21;5141:15;3591:14;;;3519:93;5141:15;5117:39;;:21;:39;:::i;:::-;5093:63;;5166:15;5184:58;5200:7;5209:13;5224:17;5233:7;-1:-1:-1;;;;;4245:18:14;4219:7;4245:18;;;:9;:18;;;;;;;4163:107;5224:17;5184:15;:58::i;:::-;5166:76;-1:-1:-1;5261:12:14;5253:68;;;;-1:-1:-1;;;5253:68:14;;;;;;;:::i;:::-;-1:-1:-1;;;;;5332:18:14;;;;;;:9;:18;;;;;:29;;5354:7;;5332:18;:29;;5354:7;;5332:29;:::i;:::-;;;;;;;;5389:7;5371:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;5407:35:14;;-1:-1:-1;5425:7:14;5434;5407:17;:35::i;:::-;5457:33;;;-1:-1:-1;;;;;13396:32:17;;13378:51;;13460:2;13445:18;;13438:34;;;5457:33:14;;13351:18:17;5457:33:14;;;;;;;5001:496;;4944:553;:::o;3956:364:3:-;4158:41;719:10:1;4177:12:3;4191:7;4158:18;:41::i;:::-;4137:137;;;;-1:-1:-1;;;4137:137:3;;;;;;;:::i;:::-;4285:28;4295:4;4301:2;4305:7;4285:9;:28::i;1283:478:4:-;1380:15;1423:16;1433:5;1423:9;:16::i;:::-;1415:5;:24;1407:80;;;;-1:-1:-1;;;1407:80:4;;;;;;;:::i;:::-;1498:10;1522:6;1518:173;1534:7;:14;1530:18;;1518:173;;;1580:7;1588:1;1580:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1571:19:4;;;1580:10;;1571:19;1568:113;;;1621:5;1612;:14;1609:57;;;1635:1;-1:-1:-1;1628:8:4;;-1:-1:-1;1628:8:4;1609:57;1659:7;;;;:::i;:::-;;;;1609:57;1550:3;;;;:::i;:::-;;;;1518:173;;;;1701:53;;-1:-1:-1;;;1701:53:4;;;;;;;:::i;4055:174:5:-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;719:10:1;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;;;;;;:::i;:::-;4144:10:5::1;4126:15;:28;4118:80;;;::::0;-1:-1:-1;;;4118:80:5;;27802:2:17;4118:80:5::1;::::0;::::1;27784:21:17::0;27841:2;27821:18;;;27814:30;27880:34;27860:18;;;27853:62;-1:-1:-1;;;27931:18:17;;;27924:37;27978:19;;4118:80:5::1;27600:403:17::0;4118:80:5::1;4208:14;4214:7;4208:5;:14::i;:::-;4055:174:::0;:::o;1374:77::-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;719:10:1;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;;;;;;:::i;:::-;1436:8:5::1;::::0;;-1:-1:-1;;1424:20:5;::::1;1436:8;::::0;;::::1;1435:9;1424:20;::::0;;1374:77::o;4386:179:3:-;4519:39;4536:4;4542:2;4546:7;4519:39;;;;;;;;;;;;:16;:39::i;3894:155:5:-;3951:41;719:10:1;3970:12:5;640:96:1;3951:41:5;3943:75;;;;-1:-1:-1;;;3943:75:5;;24340:2:17;3943:75:5;;;24322:21:17;24379:2;24359:18;;;24352:30;-1:-1:-1;;;24398:18:17;;;24391:51;24459:18;;3943:75:5;24138:345:17;4235:391:5;4295:16;4323:18;4344:17;4354:6;4344:9;:17::i;:::-;4323:38;-1:-1:-1;4375:15:5;4371:44;;4399:16;;;4413:1;4399:16;;;;;;;;;;;-1:-1:-1;4392:23:5;4235:391;-1:-1:-1;;;4235:391:5:o;4371:44::-;4426:25;4468:10;4454:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4454:25:5;;4426:53;;4494:9;4489:106;4509:10;4505:1;:14;4489:106;;;4554:30;4574:6;4582:1;4554:19;:30::i;:::-;4540:8;4549:1;4540:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;4521:3;;;;:::i;:::-;;;;4489:106;;5758:628:14;-1:-1:-1;;;;;5839:16:14;;5858:1;5839:16;;;:7;:16;;;;;;5831:71;;;;-1:-1:-1;;;5831:71:14;;;;;;;:::i;:::-;-1:-1:-1;;;;;3847:26:14;;5913:21;3847:26;;;:19;:26;;;;;;5937:30;;-1:-1:-1;;;5937:30:14;;5961:4;5937:30;;;13134:51:17;-1:-1:-1;;;;;5937:15:14;;;;;13107:18:17;;5937:30:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;5913:77;;6000:15;6018:65;6034:7;6043:13;6058:24;6067:5;6074:7;-1:-1:-1;;;;;4529:21:14;;;4503:7;4529:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4433:133;6018:65;6000:83;-1:-1:-1;6102:12:14;6094:68;;;;-1:-1:-1;;;6094:68:14;;;;;;;:::i;:::-;-1:-1:-1;;;;;6173:21:14;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;6207:7;;6173:21;:41;;6207:7;;6173:41;:::i;:::-;;;;-1:-1:-1;;;;;;;6224:26:14;;;;;;:19;:26;;;;;:37;;6254:7;;6224:26;:37;;6254:7;;6224:37;:::i;:::-;;;;-1:-1:-1;6272:47:14;;-1:-1:-1;6295:5:14;6302:7;6311;6272:22;:47::i;:::-;6334:45;;;-1:-1:-1;;;;;13396:32:17;;;13378:51;;13460:2;13445:18;;13438:34;;;6334:45:14;;;;;13351:18:17;6334:45:14;;;;;;;5821:565;;5758:628;;:::o;5111:264:5:-;5200:4;5219:9;5215:132;5230:20;;;5215:132;;;5299:7;-1:-1:-1;;;;;5274:32:5;:7;5282:9;;5292:1;5282:12;;;;;;;:::i;:::-;;;;;;;5274:21;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;5274:21:5;:32;5271:65;;5331:5;5324:12;;;;;5271:65;5252:3;;;:::i;:::-;;;5215:132;;;;5364:4;5357:11;;5111:264;;;;;;:::o;1002:202:4:-;1112:7;:14;1077:7;;1104:22;;1096:79;;;;-1:-1:-1;;;1096:79:4;;26575:2:17;1096:79:4;;;26557:21:17;26614:2;26594:18;;;26587:30;26653:34;26633:18;;;26626:62;-1:-1:-1;;;26704:18:17;;;26697:42;26756:19;;1096:79:4;26373:408:17;1096:79:4;-1:-1:-1;1192:5:4;1002:202::o;1272:96:5:-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;719:10:1;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;;;;;;:::i;:::-;1343:18:5;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;1272:96:::0;:::o;4854:251::-;4983:9;4978:121;5002:9;:16;4998:1;:20;4978:121;;;5039:49;5056:5;5063:3;5068:9;5078:1;5068:12;;;;;;;;:::i;:::-;;;;;;;5082:5;5039:16;:49::i;:::-;5020:3;;;;:::i;:::-;;;;4978:121;;;;4854:251;;;;:::o;1784:313:3:-;1896:7;1919:13;1935:7;1943;1935:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1935:16:3;;-1:-1:-1;1982:19:3;1961:107;;;;-1:-1:-1;;;1961:107:3;;21701:2:17;1961:107:3;;;21683:21:17;21740:2;21720:18;;;21713:30;21779:34;21759:18;;;21752:62;-1:-1:-1;;;21830:18:17;;;21823:39;21879:19;;1961:107:3;21499:405:17;248:35:5;;;;;;;:::i;1350:377:3:-;1467:4;-1:-1:-1;;;;;1496:19:3;;1488:74;;;;-1:-1:-1;;;1488:74:3;;21290:2:17;1488:74:3;;;21272:21:17;21329:2;21309:18;;;21302:30;21368:34;21348:18;;;21341:62;-1:-1:-1;;;21419:18:17;;;21412:40;21469:19;;1488:74:3;21088:406:17;1488:74:3;1573:10;1598:6;1593:106;1610:7;:14;1606:18;;1593:106;;;1656:7;1664:1;1656:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;1647:19:3;;;1656:10;;1647:19;1643:45;;;1681:7;;;:::i;:::-;;;1643:45;1626:3;;;:::i;:::-;;;1593:106;;;-1:-1:-1;1715:5:3;1350:377;-1:-1:-1;;1350:377:3:o;1661:101:13:-;1101:6;;-1:-1:-1;;;;;1101:6:13;719:10:1;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;4652:98:14:-;4703:7;4729;4737:5;4729:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;4729:14:14;;4652:98;-1:-1:-1;;4652:98:14:o;2321:102:3:-;2377:13;2409:7;2402:14;;;;;:::i;3304:318::-;-1:-1:-1;;;;;3434:24:3;;719:10:1;3434:24:3;;3426:62;;;;-1:-1:-1;;;3426:62:3;;18494:2:17;3426:62:3;;;18476:21:17;18533:2;18513:18;;;18506:30;18572:27;18552:18;;;18545:55;18617:18;;3426:62:3;18292:349:17;3426:62:3;719:10:1;3499:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;3499:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;3499:53:3;;;;;;;;;;3567:48;;15032:41:17;;;3499:42:3;;719:10:1;3567:48:3;;15005:18:17;3567:48:3;;;;;;;3304:318;;:::o;4631:354::-;4813:41;719:10:1;4846:7:3;4813:18;:41::i;:::-;4792:137;;;;-1:-1:-1;;;4792:137:3;;;;;;;:::i;:::-;4939:39;4953:4;4959:2;4963:7;4972:5;4939:13;:39::i;:::-;4631:354;;;;:::o;2473:1031:5:-;2578:28;;;2595:10;11495:2:17;11491:15;-1:-1:-1;;11487:53:17;2578:28:5;;;;11475:66:17;;;;2578:28:5;;;;;;;;;11557:12:17;;;;2578:28:5;;;2568:39;;;;;2639:7;:14;652:4;2671:19;2685:5;2639:14;2671:19;:::i;:::-;:33;;2663:65;;;;-1:-1:-1;;;2663:65:5;;15692:2:17;2663:65:5;;;15674:21:17;15731:2;15711:18;;;15704:30;-1:-1:-1;;;15750:18:17;;;15743:49;15809:18;;2663:65:5;15490:343:17;2663:65:5;2742:10;;2756:1;2742:15;2738:652;;;2781:52;2800:5;;2781:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2807:19:5;;;-1:-1:-1;2828:4:5;;-1:-1:-1;2781:18:5;:52::i;:::-;2773:100;;;;-1:-1:-1;;;2773:100:5;;17278:2:17;2773:100:5;;;17260:21:17;17317:2;17297:18;;;17290:30;17356:34;17336:18;;;17329:62;-1:-1:-1;;;17407:18:17;;;17400:33;17450:19;;2773:100:5;17076:399:17;2773:100:5;719:10:1;2895:29:5;;;;:15;:29;;;;;;912:1;;2895:37;;2927:5;;2895:37;:::i;:::-;:54;;2887:101;;;;-1:-1:-1;;;2887:101:5;;26988:2:17;2887:101:5;;;26970:21:17;27027:2;27007:18;;;27000:30;27066:34;27046:18;;;27039:62;-1:-1:-1;;;27117:18:17;;;27110:32;27159:19;;2887:101:5;26786:398:17;2887:101:5;3033:9;3011:18;840:11;3011:5;:18;:::i;:::-;:31;3003:67;;;;-1:-1:-1;;;3003:67:5;;22111:2:17;3003:67:5;;;22093:21:17;22150:2;22130:18;;;22123:30;-1:-1:-1;;;22169:18:17;;;22162:53;22232:18;;3003:67:5;21909:347:17;3003:67:5;719:10:1;3084:29:5;;;;:15;:29;;;;;:38;;3117:5;;3084:29;:38;;3117:5;;3084:38;:::i;:::-;;;;-1:-1:-1;2738:652:5;;-1:-1:-1;2738:652:5;;3144:10;;3158:1;3144:15;3140:250;;;779:1;3183:5;:19;;3175:60;;;;-1:-1:-1;;;3175:60:5;;25860:2:17;3175:60:5;;;25842:21:17;25899:2;25879:18;;;25872:30;25938;25918:18;;;25911:58;25986:18;;3175:60:5;25658:352:17;3175:60:5;3279:9;3257:18;840:11;3257:5;:18;:::i;:::-;:31;3249:67;;;;-1:-1:-1;;;3249:67:5;;22111:2:17;3249:67:5;;;22093:21:17;22150:2;22130:18;;;22123:30;-1:-1:-1;;;22169:18:17;;;22162:53;22232:18;;3249:67:5;21909:347:17;3249:67:5;3140:250;;;3347:32;;-1:-1:-1;;;3347:32:5;;23587:2:17;3347:32:5;;;23569:21:17;23626:2;23606:18;;;23599:30;-1:-1:-1;;;23645:18:17;;;23638:44;23699:18;;3347:32:5;23385:338:17;3347:32:5;3412:6;3408:90;3424:5;3420:1;:9;3408:90;;;3451:36;719:10:1;3471:15:5;3485:1;3471:11;:15;:::i;:::-;3451:5;:36::i;:::-;3431:3;;;;:::i;:::-;;;;3408:90;;;;2543:961;;2473:1031;;;:::o;2114:179::-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;719:10:1;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;;;;;;:::i;:::-;2244:19:5::1;:42:::0;2114:179::o;3510:378::-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;719:10:1;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;;;;;;:::i;:::-;3611:1:5::1;3603:4;3588:12;;:19;;;;:::i;:::-;:24;;3580:58;;;::::0;-1:-1:-1;;;3580:58:5;;25510:2:17;3580:58:5::1;::::0;::::1;25492:21:17::0;25549:2;25529:18;;;25522:30;-1:-1:-1;;;25568:18:17;;;25561:51;25629:18;;3580:58:5::1;25308:345:17::0;3580:58:5::1;3670:7;:14:::0;652:4:::1;3702:18;3716:4:::0;3670:14;3702:18:::1;:::i;:::-;:32;;3694:64;;;::::0;-1:-1:-1;;;3694:64:5;;15692:2:17;3694:64:5::1;::::0;::::1;15674:21:17::0;15731:2;15711:18;;;15704:30;-1:-1:-1;;;15750:18:17;;;15743:49;15809:18;;3694:64:5::1;15490:343:17::0;3694:64:5::1;3773:6;3768:84;3789:4;3785:1;:8;3768:84;;;3814:27;3820:3:::0;3825:15:::1;3839:1:::0;3825:11;:15:::1;:::i;3814:27::-;3795:3:::0;::::1;::::0;::::1;:::i;:::-;;;;3768:84;;;;3877:4;3861:12;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;3510:378:5:o;1571:386::-;1666:8;;1637:13;;1666:8;;1662:289;;1731:7;1714:44;;;;;;;;:::i;:::-;;;;;;;;;;;;;1699:60;;1571:386;;;:::o;1662:289::-;1806:17;1814:8;1806:7;:17::i;:::-;1798:51;;;;-1:-1:-1;;;1798:51:5;;22463:2:17;1798:51:5;;;22445:21:17;22502:2;22482:18;;;22475:30;-1:-1:-1;;;22521:18:17;;;22514:51;22582:18;;1798:51:5;22261:345:17;1798:51:5;1894:7;1903:26;1920:8;1903:16;:26::i;:::-;1877:62;;;;;;;;;:::i;1963:144::-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;719:10:1;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;;;;;;:::i;:::-;2056:20:5::1;:44:::0;;-1:-1:-1;;;;;;2056:44:5::1;-1:-1:-1::0;;;;;2056:44:5;;;::::1;::::0;;;::::1;::::0;;1963:144::o;5381:360::-;5553:20;;5596:29;;-1:-1:-1;;;5596:29:5;;-1:-1:-1;;;;;13152:32:17;;;5596:29:5;;;13134:51:17;5479:4:5;;5553:20;;;5588:50;;;;5553:20;;5596:21;;13107:18:17;;5596:29:5;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;5588:50:5;;:76;;;-1:-1:-1;;;;;;5642:22:5;;;;;;:12;:22;;;;;;;;5588:76;5584:93;;;5673:4;5666:11;;;;;5584:93;-1:-1:-1;;;;;3852:25:3;;;3825:4;3852:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;5694:40:5;5687:47;5381:360;-1:-1:-1;;;;5381:360:5:o;2299:167::-;1101:6:13;;-1:-1:-1;;;;;1101:6:13;719:10:1;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;;;;;;:::i;:::-;2389:1:5::1;2376:10;;:14;:33;;;;-1:-1:-1::0;2394:15:5;2376:33:::1;2368:61;;;::::0;-1:-1:-1;;;2368:61:5;;28210:2:17;2368:61:5::1;::::0;::::1;28192:21:17::0;28249:2;28229:18;;;28222:30;-1:-1:-1;;;28268:18:17;;;28261:45;28323:18;;2368:61:5::1;28008:339:17::0;2368:61:5::1;2439:10;:20:::0;2299:167::o;1911:198:13:-;1101:6;;-1:-1:-1;;;;;1101:6:13;719:10:1;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:13;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:13;;16871:2:17;1991:73:13::1;::::0;::::1;16853:21:17::0;16910:2;16890:18;;;16883:30;16949:34;16929:18;;;16922:62;-1:-1:-1;;;17000:18:17;;;16993:36;17046:19;;1991:73:13::1;16669:402:17::0;1991:73:13::1;2074:28;2093:8;2074:18;:28::i;4632:216:5:-:0;4737:9;4732:110;4756:9;:16;4752:1;:20;4732:110;;;4793:38;4806:5;4813:3;4818:9;4828:1;4818:12;;;;;;;;:::i;:::-;;;;;;;4793;:38::i;:::-;4774:3;;;;:::i;:::-;;;;4732:110;;1457:108;1101:6:13;;-1:-1:-1;;;;;1101:6:13;719:10:1;1241:23:13;1233:68;;;;-1:-1:-1;;;1233:68:13;;;;;;;:::i;:::-;1534:24:5;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;947:344:3:-:0;1089:4;-1:-1:-1;;;;;;1128:40:3;;-1:-1:-1;;;1128:40:3;;:104;;-1:-1:-1;;;;;;;1184:48:3;;-1:-1:-1;;;1184:48:3;1128:104;:156;;;-1:-1:-1;;;;;;;;;;937:40:2;;;1248:36:3;829:155:2;6491:153:3;6589:7;:14;6556:4;;6579:24;;:58;;;;;6635:1;-1:-1:-1;;;;;6607:30:3;:7;6615;6607:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;6607:16:3;:30;;6572:65;6491:153;-1:-1:-1;;6491:153:3:o;10379:171::-;10453:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;10453:29:3;-1:-1:-1;;;;;10453:29:3;;;;;;;;:24;;10506:23;10453:24;10506:14;:23::i;:::-;-1:-1:-1;;;;;10497:46:3;;;;;;;;;;;10379:171;;:::o;6558:242:14:-;6763:12;;-1:-1:-1;;;;;6743:16:14;;6700:7;6743:16;;;:7;:16;;;;;;6700:7;;6778:15;;6727:32;;:13;:32;:::i;:::-;6726:49;;;;:::i;:::-;:67;;;;:::i;2065:312:0:-;2179:6;2154:21;:31;;2146:73;;;;-1:-1:-1;;;2146:73:0;;19275:2:17;2146:73:0;;;19257:21:17;19314:2;19294:18;;;19287:30;19353:31;19333:18;;;19326:59;19402:18;;2146:73:0;19073:353:17;2146:73:0;2231:12;2249:9;-1:-1:-1;;;;;2249:14:0;2271:6;2249:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2230:52;;;2300:7;2292:78;;;;-1:-1:-1;;;2292:78:0;;18848:2:17;2292:78:0;;;18830:21:17;18887:2;18867:18;;;18860:30;18926:34;18906:18;;;18899:62;18997:28;18977:18;;;18970:56;19043:19;;2292:78:0;18646:422:17;6802:438:3;6927:4;6968:16;6976:7;6968;:16::i;:::-;6947:107;;;;-1:-1:-1;;;6947:107:3;;20040:2:17;6947:107:3;;;20022:21:17;20079:2;20059:18;;;20052:30;20118:34;20098:18;;;20091:62;-1:-1:-1;;;20169:18:17;;;20162:42;20221:19;;6947:107:3;19838:408:17;6947:107:3;7064:13;7080:23;7095:7;7080:14;:23::i;:::-;7064:39;;7132:5;-1:-1:-1;;;;;7121:16:3;:7;-1:-1:-1;;;;;7121:16:3;;:63;;;;7177:7;-1:-1:-1;;;;;7153:31:3;:20;7165:7;7153:11;:20::i;:::-;-1:-1:-1;;;;;7153:31:3;;7121:63;:111;;;;7200:32;7217:5;7224:7;7200:16;:32::i;9733:535::-;9900:4;-1:-1:-1;;;;;9873:31:3;:23;9888:7;9873:14;:23::i;:::-;-1:-1:-1;;;;;9873:31:3;;9852:119;;;;-1:-1:-1;;;9852:119:3;;23930:2:17;9852:119:3;;;23912:21:17;23969:2;23949:18;;;23942:30;24008:34;23988:18;;;23981:62;-1:-1:-1;;;24059:18:17;;;24052:39;24108:19;;9852:119:3;23728:405:17;9852:119:3;-1:-1:-1;;;;;9989:16:3;;9981:65;;;;-1:-1:-1;;;9981:65:3;;18089:2:17;9981:65:3;;;18071:21:17;18128:2;18108:18;;;18101:30;18167:34;18147:18;;;18140:62;-1:-1:-1;;;18218:18:17;;;18211:34;18262:19;;9981:65:3;17887:400:17;9981:65:3;10158:29;10175:1;10179:7;10158:8;:29::i;:::-;10216:2;10197:7;10205;10197:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;10197:21:3;-1:-1:-1;;;;;10197:21:3;;;;;;10234:27;;10253:7;;10234:27;;;;;;;;;;10197:16;10234:27;9733:535;;;:::o;9087:322::-;9146:13;9162:23;9177:7;9162:14;:23::i;:::-;9146:39;;9282:29;9299:1;9303:7;9282:8;:29::i;:::-;9348:1;9321:7;9329;9321:16;;;;;;;;:::i;:::-;;;;;;;;;:29;;-1:-1:-1;;;;;;9321:29:3;-1:-1:-1;;;;;9321:29:3;;;;;;9366:36;;9394:7;;9366:36;;;;;9321:16;;9366:36;9136:273;9087:322;:::o;687:205:15:-;826:58;;;-1:-1:-1;;;;;13396:32:17;;826:58:15;;;13378:51:17;13445:18;;;;13438:34;;;826:58:15;;;;;;;;;;13351:18:17;;;;826:58:15;;;;;;;;-1:-1:-1;;;;;826:58:15;-1:-1:-1;;;826:58:15;;;799:86;;819:5;;799:19;:86::i;2263:187:13:-;2355:6;;;-1:-1:-1;;;;;2371:17:13;;;-1:-1:-1;;;;;;2371:17:13;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;5847:341:3:-;5998:28;6008:4;6014:2;6018:7;5998:9;:28::i;:::-;6057:48;6080:4;6086:2;6090:7;6099:5;6057:22;:48::i;:::-;6036:145;;;;-1:-1:-1;;;6036:145:3;;;;;;;:::i;847:184:12:-;968:4;1020;991:25;1004:5;1011:4;991:12;:25::i;:::-;:33;;847:184;-1:-1:-1;;;;847:184:12:o;5747:151:5:-;5827:7;:16;;;;;;;-1:-1:-1;5827:16:5;;;;;;;-1:-1:-1;;;;;;5827:16:5;-1:-1:-1;;;;;5827:16:5;;;;;;;;5858:33;;5883:7;;-1:-1:-1;5858:33:5;;-1:-1:-1;;5858:33:5;5747:151;;:::o;328:703:16:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:16;;;;;;;;;;;;-1:-1:-1;;;627:10:16;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:16;;-1:-1:-1;773:2:16;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:16;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:16;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;902:56:16;;;;;;;;-1:-1:-1;972:11:16;981:2;972:11;;:::i;:::-;;;844:150;;3193:706:15;3612:23;3638:69;3666:4;3638:69;;;;;;;;;;;;;;;;;3646:5;-1:-1:-1;;;;;3638:27:15;;;:69;;;;;:::i;:::-;3721:17;;3612:95;;-1:-1:-1;3721:21:15;3717:176;;3816:10;3805:30;;;;;;;;;;;;:::i;:::-;3797:85;;;;-1:-1:-1;;;3797:85:15;;27391:2:17;3797:85:15;;;27373:21:17;27430:2;27410:18;;;27403:30;27469:34;27449:18;;;27442:62;-1:-1:-1;;;27520:18:17;;;27513:40;27570:19;;3797:85:15;27189:406:17;11103:950:3;11253:4;-1:-1:-1;;;;;11273:13:3;;1087:20:0;1133:8;11269:778:3;;11324:170;;-1:-1:-1;;;11324:170:3;;-1:-1:-1;;;;;11324:36:3;;;;;:170;;719:10:1;;11416:4:3;;11442:7;;11471:5;;11324:170;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11324:170:3;;;;;;;;-1:-1:-1;;11324:170:3;;;;;;;;;;;;:::i;:::-;;;11304:691;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11673:13:3;;11669:312;;11715:106;;-1:-1:-1;;;11715:106:3;;;;;;;:::i;11669:312::-;11933:6;11927:13;11918:6;11914:2;11910:15;11903:38;11304:691;-1:-1:-1;;;;;;11556:51:3;-1:-1:-1;;;11556:51:3;;-1:-1:-1;11549:58:3;;11269:778;-1:-1:-1;12032:4:3;11103:950;;;;;;:::o;1383:662:12:-;1466:7;1508:4;1466:7;1522:488;1546:5;:12;1542:1;:16;1522:488;;;1579:20;1602:5;1608:1;1602:8;;;;;;;;:::i;:::-;;;;;;;1579:31;;1644:12;1628;:28;1624:376;;2119:13;2167:15;;;2202:4;2195:15;;;2248:4;2232:21;;1754:57;;1624:376;;;2119:13;2167:15;;;2202:4;2195:15;;;2248:4;2232:21;;1928:57;;1624:376;-1:-1:-1;1560:3:12;;;;:::i;:::-;;;;1522:488;;3514:223:0;3647:12;3678:52;3700:6;3708:4;3714:1;3717:12;3647;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:0;;26217:2:17;4881:60:0;;;26199:21:17;26256:2;26236:18;;;26229:30;26295:31;26275:18;;;26268:59;26344:18;;4881:60:0;26015:353:17;4881:60:0;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:0;5013:5;5020:4;4994:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952:73;;;;5042:51;5059:7;5068:10;5080:12;5042:16;:51::i;:::-;5035:58;4601:499;-1:-1:-1;;;;;;;4601:499:0:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:0;7411:17;;7384:516;7529:17;;:21;7525:365;;7723:10;7717:17;7783:15;7770:10;7766:2;7762:19;7755:44;7525:365;7862:12;7855:20;;-1:-1:-1;;;7855:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:17;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:17;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:367::-;488:8;498:6;552:3;545:4;537:6;533:17;529:27;519:55;;570:1;567;560:12;519:55;-1:-1:-1;593:20:17;;636:18;625:30;;622:50;;;668:1;665;658:12;622:50;705:4;697:6;693:17;681:29;;765:3;758:4;748:6;745:1;741:14;733:6;729:27;725:38;722:47;719:67;;;782:1;779;772:12;719:67;425:367;;;;;:::o;797:723::-;851:5;904:3;897:4;889:6;885:17;881:27;871:55;;922:1;919;912:12;871:55;958:6;945:20;984:4;1007:18;1003:2;1000:26;997:52;;;1029:18;;:::i;:::-;1075:2;1072:1;1068:10;1098:28;1122:2;1118;1114:11;1098:28;:::i;:::-;1160:15;;;1191:12;;;;1223:15;;;1257;;;1253:24;;1250:33;-1:-1:-1;1247:53:17;;;1296:1;1293;1286:12;1247:53;1318:1;1309:10;;1328:163;1342:2;1339:1;1336:9;1328:163;;;1399:17;;1387:30;;1360:1;1353:9;;;;;1437:12;;;;1469;;1328:163;;;-1:-1:-1;1509:5:17;797:723;-1:-1:-1;;;;;;;797:723:17:o;1525:220::-;1567:5;1620:3;1613:4;1605:6;1601:17;1597:27;1587:55;;1638:1;1635;1628:12;1587:55;1660:79;1735:3;1726:6;1713:20;1706:4;1698:6;1694:17;1660:79;:::i;1750:247::-;1809:6;1862:2;1850:9;1841:7;1837:23;1833:32;1830:52;;;1878:1;1875;1868:12;1830:52;1917:9;1904:23;1936:31;1961:5;1936:31;:::i;2262:388::-;2330:6;2338;2391:2;2379:9;2370:7;2366:23;2362:32;2359:52;;;2407:1;2404;2397:12;2359:52;2446:9;2433:23;2465:31;2490:5;2465:31;:::i;:::-;2515:5;-1:-1:-1;2572:2:17;2557:18;;2544:32;2585:33;2544:32;2585:33;:::i;:::-;2637:7;2627:17;;;2262:388;;;;;:::o;2655:624::-;2757:6;2765;2773;2826:2;2814:9;2805:7;2801:23;2797:32;2794:52;;;2842:1;2839;2832:12;2794:52;2881:9;2868:23;2900:31;2925:5;2900:31;:::i;:::-;2950:5;-1:-1:-1;3007:2:17;2992:18;;2979:32;3020:33;2979:32;3020:33;:::i;:::-;3072:7;-1:-1:-1;3130:2:17;3115:18;;3102:32;3157:18;3146:30;;3143:50;;;3189:1;3186;3179:12;3143:50;3212:61;3265:7;3256:6;3245:9;3241:22;3212:61;:::i;:::-;3202:71;;;2655:624;;;;;:::o;3284:844::-;3404:6;3412;3420;3428;3481:3;3469:9;3460:7;3456:23;3452:33;3449:53;;;3498:1;3495;3488:12;3449:53;3537:9;3524:23;3556:31;3581:5;3556:31;:::i;:::-;3606:5;-1:-1:-1;3663:2:17;3648:18;;3635:32;3676:33;3635:32;3676:33;:::i;:::-;3728:7;-1:-1:-1;3786:2:17;3771:18;;3758:32;3809:18;3839:14;;;3836:34;;;3866:1;3863;3856:12;3836:34;3889:61;3942:7;3933:6;3922:9;3918:22;3889:61;:::i;:::-;3879:71;;4003:2;3992:9;3988:18;3975:32;3959:48;;4032:2;4022:8;4019:16;4016:36;;;4048:1;4045;4038:12;4016:36;;4071:51;4114:7;4103:8;4092:9;4088:24;4071:51;:::i;:::-;4061:61;;;3284:844;;;;;;;:::o;4133:456::-;4210:6;4218;4226;4279:2;4267:9;4258:7;4254:23;4250:32;4247:52;;;4295:1;4292;4285:12;4247:52;4334:9;4321:23;4353:31;4378:5;4353:31;:::i;:::-;4403:5;-1:-1:-1;4460:2:17;4445:18;;4432:32;4473:33;4432:32;4473:33;:::i;:::-;4133:456;;4525:7;;-1:-1:-1;;;4579:2:17;4564:18;;;;4551:32;;4133:456::o;4594:665::-;4689:6;4697;4705;4713;4766:3;4754:9;4745:7;4741:23;4737:33;4734:53;;;4783:1;4780;4773:12;4734:53;4822:9;4809:23;4841:31;4866:5;4841:31;:::i;:::-;4891:5;-1:-1:-1;4948:2:17;4933:18;;4920:32;4961:33;4920:32;4961:33;:::i;:::-;5013:7;-1:-1:-1;5067:2:17;5052:18;;5039:32;;-1:-1:-1;5122:2:17;5107:18;;5094:32;5149:18;5138:30;;5135:50;;;5181:1;5178;5171:12;5135:50;5204:49;5245:7;5236:6;5225:9;5221:22;5204:49;:::i;5264:572::-;5359:6;5367;5375;5428:2;5416:9;5407:7;5403:23;5399:32;5396:52;;;5444:1;5441;5434:12;5396:52;5483:9;5470:23;5502:31;5527:5;5502:31;:::i;:::-;5552:5;-1:-1:-1;5608:2:17;5593:18;;5580:32;5635:18;5624:30;;5621:50;;;5667:1;5664;5657:12;5621:50;5706:70;5768:7;5759:6;5748:9;5744:22;5706:70;:::i;:::-;5264:572;;5795:8;;-1:-1:-1;5680:96:17;;-1:-1:-1;;;;5264:572:17:o;5841:382::-;5906:6;5914;5967:2;5955:9;5946:7;5942:23;5938:32;5935:52;;;5983:1;5980;5973:12;5935:52;6022:9;6009:23;6041:31;6066:5;6041:31;:::i;:::-;6091:5;-1:-1:-1;6148:2:17;6133:18;;6120:32;6161:30;6120:32;6161:30;:::i;6228:315::-;6296:6;6304;6357:2;6345:9;6336:7;6332:23;6328:32;6325:52;;;6373:1;6370;6363:12;6325:52;6412:9;6399:23;6431:31;6456:5;6431:31;:::i;:::-;6481:5;6533:2;6518:18;;;;6505:32;;-1:-1:-1;;;6228:315:17:o;6548:245::-;6615:6;6668:2;6656:9;6647:7;6643:23;6639:32;6636:52;;;6684:1;6681;6674:12;6636:52;6716:9;6710:16;6735:28;6757:5;6735:28;:::i;6798:180::-;6857:6;6910:2;6898:9;6889:7;6885:23;6881:32;6878:52;;;6926:1;6923;6916:12;6878:52;-1:-1:-1;6949:23:17;;6798:180;-1:-1:-1;6798:180:17:o;6983:245::-;7041:6;7094:2;7082:9;7073:7;7069:23;7065:32;7062:52;;;7110:1;7107;7100:12;7062:52;7149:9;7136:23;7168:30;7192:5;7168:30;:::i;7233:249::-;7302:6;7355:2;7343:9;7334:7;7330:23;7326:32;7323:52;;;7371:1;7368;7361:12;7323:52;7403:9;7397:16;7422:30;7446:5;7422:30;:::i;8162:280::-;8261:6;8314:2;8302:9;8293:7;8289:23;8285:32;8282:52;;;8330:1;8327;8320:12;8282:52;8362:9;8356:16;8381:31;8406:5;8381:31;:::i;8447:450::-;8516:6;8569:2;8557:9;8548:7;8544:23;8540:32;8537:52;;;8585:1;8582;8575:12;8537:52;8625:9;8612:23;8658:18;8650:6;8647:30;8644:50;;;8690:1;8687;8680:12;8644:50;8713:22;;8766:4;8758:13;;8754:27;-1:-1:-1;8744:55:17;;8795:1;8792;8785:12;8744:55;8818:73;8883:7;8878:2;8865:16;8860:2;8856;8852:11;8818:73;:::i;9087:184::-;9157:6;9210:2;9198:9;9189:7;9185:23;9181:32;9178:52;;;9226:1;9223;9216:12;9178:52;-1:-1:-1;9249:16:17;;9087:184;-1:-1:-1;9087:184:17:o;9276:315::-;9344:6;9352;9405:2;9393:9;9384:7;9380:23;9376:32;9373:52;;;9421:1;9418;9411:12;9373:52;9457:9;9444:23;9434:33;;9517:2;9506:9;9502:18;9489:32;9530:31;9555:5;9530:31;:::i;9596:505::-;9691:6;9699;9707;9760:2;9748:9;9739:7;9735:23;9731:32;9728:52;;;9776:1;9773;9766:12;9728:52;9812:9;9799:23;9789:33;;9873:2;9862:9;9858:18;9845:32;9900:18;9892:6;9889:30;9886:50;;;9932:1;9929;9922:12;10106:257;10147:3;10185:5;10179:12;10212:6;10207:3;10200:19;10228:63;10284:6;10277:4;10272:3;10268:14;10261:4;10254:5;10250:16;10228:63;:::i;:::-;10345:2;10324:15;-1:-1:-1;;10320:29:17;10311:39;;;;10352:4;10307:50;;10106:257;-1:-1:-1;;10106:257:17:o;10368:973::-;10453:12;;10418:3;;10508:1;10528:18;;;;10581;;;;10608:61;;10662:4;10654:6;10650:17;10640:27;;10608:61;10688:2;10736;10728:6;10725:14;10705:18;10702:38;10699:161;;;10782:10;10777:3;10773:20;10770:1;10763:31;10817:4;10814:1;10807:15;10845:4;10842:1;10835:15;10699:161;10876:18;10903:104;;;;11021:1;11016:319;;;;10869:466;;10903:104;-1:-1:-1;;10936:24:17;;10924:37;;10981:16;;;;-1:-1:-1;10903:104:17;;11016:319;28887:1;28880:14;;;28924:4;28911:18;;11110:1;11124:165;11138:6;11135:1;11132:13;11124:165;;;11216:14;;11203:11;;;11196:35;11259:16;;;;11153:10;;11124:165;;;11128:3;;11318:6;11313:3;11309:16;11302:23;;10869:466;;;;;;;10368:973;;;;:::o;11580:274::-;11709:3;11747:6;11741:13;11763:53;11809:6;11804:3;11797:4;11789:6;11785:17;11763:53;:::i;:::-;11832:16;;;;;11580:274;-1:-1:-1;;11580:274:17:o;11859:543::-;12136:3;12164:38;12198:3;12190:6;12164:38;:::i;:::-;12231:6;12225:13;12247:52;12292:6;12288:2;12281:4;12273:6;12269:17;12247:52;:::i;:::-;-1:-1:-1;;;12321:15:17;;12345:22;;;12394:1;12383:13;;11859:543;-1:-1:-1;;;;11859:543:17:o;12407:366::-;12636:3;12664:38;12698:3;12690:6;12664:38;:::i;:::-;-1:-1:-1;;;12711:29:17;;12764:2;12756:11;;12407:366;-1:-1:-1;;;12407:366:17:o;13483:488::-;-1:-1:-1;;;;;13752:15:17;;;13734:34;;13804:15;;13799:2;13784:18;;13777:43;13851:2;13836:18;;13829:34;;;13899:3;13894:2;13879:18;;13872:31;;;13677:4;;13920:45;;13945:19;;13937:6;13920:45;:::i;:::-;13912:53;13483:488;-1:-1:-1;;;;;;13483:488:17:o;14255:632::-;14426:2;14478:21;;;14548:13;;14451:18;;;14570:22;;;14397:4;;14426:2;14649:15;;;;14623:2;14608:18;;;14397:4;14692:169;14706:6;14703:1;14700:13;14692:169;;;14767:13;;14755:26;;14836:15;;;;14801:12;;;;14728:1;14721:9;14692:169;;;-1:-1:-1;14878:3:17;;14255:632;-1:-1:-1;;;;;;14255:632:17:o;15266:219::-;15415:2;15404:9;15397:21;15378:4;15435:44;15475:2;15464:9;15460:18;15452:6;15435:44;:::i;15838:407::-;16040:2;16022:21;;;16079:2;16059:18;;;16052:30;16118:34;16113:2;16098:18;;16091:62;-1:-1:-1;;;16184:2:17;16169:18;;16162:41;16235:3;16220:19;;15838:407::o;16250:414::-;16452:2;16434:21;;;16491:2;16471:18;;;16464:30;16530:34;16525:2;16510:18;;16503:62;-1:-1:-1;;;16596:2:17;16581:18;;16574:48;16654:3;16639:19;;16250:414::o;17480:402::-;17682:2;17664:21;;;17721:2;17701:18;;;17694:30;17760:34;17755:2;17740:18;;17733:62;-1:-1:-1;;;17826:2:17;17811:18;;17804:36;17872:3;17857:19;;17480:402::o;20251:407::-;20453:2;20435:21;;;20492:2;20472:18;;;20465:30;20531:34;20526:2;20511:18;;20504:62;-1:-1:-1;;;20597:2:17;20582:18;;20575:41;20648:3;20633:19;;20251:407::o;23024:356::-;23226:2;23208:21;;;23245:18;;;23238:30;23304:34;23299:2;23284:18;;23277:62;23371:2;23356:18;;23024:356::o;24890:413::-;25092:2;25074:21;;;25131:2;25111:18;;;25104:30;25170:34;25165:2;25150:18;;25143:62;-1:-1:-1;;;25236:2:17;25221:18;;25214:47;25293:3;25278:19;;24890:413::o;28534:275::-;28605:2;28599:9;28670:2;28651:13;;-1:-1:-1;;28647:27:17;28635:40;;28705:18;28690:34;;28726:22;;;28687:62;28684:88;;;28752:18;;:::i;:::-;28788:2;28781:22;28534:275;;-1:-1:-1;28534:275:17:o;28940:128::-;28980:3;29011:1;29007:6;29004:1;29001:13;28998:39;;;29017:18;;:::i;:::-;-1:-1:-1;29053:9:17;;28940:128::o;29073:120::-;29113:1;29139;29129:35;;29144:18;;:::i;:::-;-1:-1:-1;29178:9:17;;29073:120::o;29198:168::-;29238:7;29304:1;29300;29296:6;29292:14;29289:1;29286:21;29281:1;29274:9;29267:17;29263:45;29260:71;;;29311:18;;:::i;:::-;-1:-1:-1;29351:9:17;;29198:168::o;29371:125::-;29411:4;29439:1;29436;29433:8;29430:34;;;29444:18;;:::i;:::-;-1:-1:-1;29481:9:17;;29371:125::o;29501:258::-;29573:1;29583:113;29597:6;29594:1;29591:13;29583:113;;;29673:11;;;29667:18;29654:11;;;29647:39;29619:2;29612:10;29583:113;;;29714:6;29711:1;29708:13;29705:48;;;-1:-1:-1;;29749:1:17;29731:16;;29724:27;29501:258::o;29764:380::-;29843:1;29839:12;;;;29886;;;29907:61;;29961:4;29953:6;29949:17;29939:27;;29907:61;30014:2;30006:6;30003:14;29983:18;29980:38;29977:161;;;30060:10;30055:3;30051:20;30048:1;30041:31;30095:4;30092:1;30085:15;30123:4;30120:1;30113:15;29977:161;;29764:380;;;:::o;30149:135::-;30188:3;-1:-1:-1;;30209:17:17;;30206:43;;;30229:18;;:::i;:::-;-1:-1:-1;30276:1:17;30265:13;;30149:135::o;30289:112::-;30321:1;30347;30337:35;;30352:18;;:::i;:::-;-1:-1:-1;30386:9:17;;30289:112::o;30406:127::-;30467:10;30462:3;30458:20;30455:1;30448:31;30498:4;30495:1;30488:15;30522:4;30519:1;30512:15;30538:127;30599:10;30594:3;30590:20;30587:1;30580:31;30630:4;30627:1;30620:15;30654:4;30651:1;30644:15;30670:127;30731:10;30726:3;30722:20;30719:1;30712:31;30762:4;30759:1;30752:15;30786:4;30783:1;30776:15;30802:127;30863:10;30858:3;30854:20;30851:1;30844:31;30894:4;30891:1;30884:15;30918:4;30915:1;30908:15;30934:131;-1:-1:-1;;;;;31009:31:17;;30999:42;;30989:70;;31055:1;31052;31045:12;31070:118;31156:5;31149:13;31142:21;31135:5;31132:32;31122:60;;31178:1;31175;31168:12;31193:131;-1:-1:-1;;;;;;31267:32:17;;31257:43;;31247:71;;31314:1;31311;31304:12
Swarm Source
ipfs://14765ad2e2191e0b55e1dab85bfe48658b8e28e46adb13134c5a49f2f56ff480
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.