ERC-721
Overview
Max Total Supply
1,640 LN
Holders
472
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Lemonoodles
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import { IERC721, ERC721, Strings } from "./ERC721.sol"; import { Ownable } from "./Ownable.sol"; import { ECDSA } from "./ECDSA.sol"; contract Lemonoodles is ERC721, Ownable { using Strings for uint; using ECDSA for bytes32; constructor(string memory baseUri_) ERC721("Lemonoodles", "LN") { _baseUri = baseUri_; } modifier directOnly { require(tx.origin == msg.sender, "EOA_ONLY"); _; } /** Constants */ /** RESERVED included in MAX_SUPPLY */ uint constant MAX_SUPPLY = 7777; uint constant RESERVED = 20; uint constant COST_PER = 0.035 ether; uint constant MIN_ID = 1; uint constant MIN_GIVEAWAY_ID = MAX_SUPPLY - RESERVED + 1; uint constant MAX_PER_TX = 10; uint constant EACH_WHITELIST_AMOUNT = 2; /** There's a few different whitelist methods/collections, each one the user has will give them +2 mints */ string constant ERROR_MAX_PUBLIC_SUPPLY = "The max public sale supply has been reached!"; string constant ERROR_MAX_GIVEAWAY_SUPPLY = "The max giveaway supply has been reached!"; string constant ERROR_INVALID_ETH = "Invalid ether amount sent!"; string constant ERROR_OVER_MAX_PER_TX = "You can only mint up to 10 per transaction!"; string constant ERROR_PUB_SALE_NOT_ACTIVE = "The public sale is not currently active!"; string constant ERROR_WL_SALE_NOT_ACTIVE = "The whitelist sale is not currently active!"; string constant ERROR_INVALID_SIGNATURE = "Invalid signature provided!"; string constant ERROR_OVER_WL_MAX = "You can not mint that many using your whitelist!"; /** Storage */ uint _nextId = MIN_ID; uint _nextGiveawayId = MIN_GIVEAWAY_ID; bool _publicSale = false; bool _whitelistSale = false; bool public _metadataLocked = false; string _baseUri; address _signer = 0x402C5b659503ec988e4ad02F681f3C50F329e0b5; mapping(address => uint) public wlMintsOf; /** Minting */ function publicMint(uint amount) external payable directOnly { unchecked { require(_publicSale, ERROR_PUB_SALE_NOT_ACTIVE); require(amount <= MAX_PER_TX, ERROR_OVER_MAX_PER_TX); require(totalSupplyPublic() + amount <= MAX_SUPPLY - RESERVED, ERROR_MAX_PUBLIC_SUPPLY); require(msg.value == amount * COST_PER, ERROR_INVALID_ETH); uint nextId_ = _nextId; for(uint i = 0; i < amount; i++) { _mint(msg.sender, nextId_ + i); } _nextId += amount; } } function whitelistMint(uint amount, uint maxMints, bytes memory signature) external payable directOnly { unchecked { require(_whitelistSale, ERROR_WL_SALE_NOT_ACTIVE); require(amount <= MAX_PER_TX, ERROR_OVER_MAX_PER_TX); require(totalSupplyPublic() + amount <= MAX_SUPPLY - RESERVED, ERROR_MAX_PUBLIC_SUPPLY); require(msg.value == amount * COST_PER, ERROR_INVALID_ETH); require(keccak256(abi.encode(msg.sender, maxMints)).toEthSignedMessageHash().recover(signature) == _signer, ERROR_INVALID_SIGNATURE); require(wlMintsOf[msg.sender] + amount <= maxMints, ERROR_OVER_WL_MAX); wlMintsOf[msg.sender] += amount; uint nextId_ = _nextId; for(uint i = 0; i < amount; i++) { _mint(msg.sender, nextId_ + i); } _nextId += amount; } } /** View */ function totalSupplyPublic() public view returns(uint) { return _nextId - MIN_ID; } function totalSupplyPrivate() public view returns(uint) { return _nextGiveawayId - MIN_GIVEAWAY_ID; } function totalSupply() public view returns(uint) { return totalSupplyPublic() + totalSupplyPrivate(); } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); return string(abi.encodePacked(_baseUri, tokenId.toString(), ".json")); } function publicSaleState() external view returns(bool) { return _publicSale; } function whitelistSaleState() external view returns(bool) { return _whitelistSale; } /** Admin Only */ function adminMint(address[] calldata to) external onlyOwner { require(totalSupplyPrivate() + to.length <= RESERVED, ERROR_MAX_GIVEAWAY_SUPPLY); for(uint i = 0; i < to.length; i++) _mint(to[i], _nextGiveawayId++); } function setSaleStates(bool publicState, bool whitelistState) external onlyOwner { _publicSale = publicState; _whitelistSale = whitelistState; } function lockMetadata() external onlyOwner { _metadataLocked = true; } function setBaseUri(string calldata baseUri_) external onlyOwner { require(!_metadataLocked, "Metadata no longer mutable!"); _baseUri = baseUri_; } address d1 = 0x0020bDe6b220ff86fcDe3528254996D22282CABB; address d2 = 0x1eE5481A04ffe6d13cA975fcF2005510350fA06E; address d3 = 0xDBEe7AD6c7D51994a09b655cA5a7b3104Edcc77b; function withdraw() external onlyOwner { uint balance = address(this).balance; payable(d1).transfer((balance * 4) / 100); // 4% payable(d2).transfer((balance * 3) / 100); // 3% payable(d3).transfer(address(this).balance); // Remaining balance (93%) } function emergencyWithdraw() external { // In case withdraw doesn't work for any reason, send all funds to d3, only callable by d1 require(msg.sender == d1); payable(d3).transfer(address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "./Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (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.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"baseUri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_metadataLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","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":[],"name":"lockMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUri_","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"publicState","type":"bool"},{"internalType":"bool","name":"whitelistState","type":"bool"}],"name":"setSaleStates","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyPrivate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyPublic","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":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"maxMints","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistSaleState","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wlMintsOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526001600755620000186014611e6162000377565b620000259060016200035c565b6008556009805462ffffff19169055600b80546001600160a01b031990811673402c5b659503ec988e4ad02f681f3c50f329e0b517909155600d805482167220bde6b220ff86fcde3528254996d22282cabb179055600e80548216731ee5481a04ffe6d13ca975fcf2005510350fa06e179055600f805490911673dbee7ad6c7d51994a09b655ca5a7b3104edcc77b179055348015620000c457600080fd5b5060405162002efd38038062002efd833981016040819052620000e79162000280565b604080518082018252600b81526a4c656d6f6e6f6f646c657360a81b602080830191825283518085019094526002845261262760f11b9084015281519192916200013491600091620001da565b5080516200014a906001906020840190620001da565b50505062000167620001616200018460201b60201c565b62000188565b80516200017c90600a906020840190620001da565b5050620003fa565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001e89062000391565b90600052602060002090601f0160209004810192826200020c576000855562000257565b82601f106200022757805160ff191683800117855562000257565b8280016001018555821562000257579182015b82811115620002575782518255916020019190600101906200023a565b506200026592915062000269565b5090565b5b808211156200026557600081556001016200026a565b600060208083850312156200029457600080fd5b82516001600160401b0380821115620002ac57600080fd5b818501915085601f830112620002c157600080fd5b815181811115620002d657620002d6620003e4565b604051601f8201601f19908116603f01168101908382118183101715620003015762000301620003e4565b8160405282815288868487010111156200031a57600080fd5b600093505b828410156200033e57848401860151818501870152928501926200031f565b82841115620003505760008684830101525b98975050505050505050565b60008219821115620003725762000372620003ce565b500190565b6000828210156200038c576200038c620003ce565b500390565b600181811c90821680620003a657607f821691505b60208210811415620003c857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052604160045260246000fd5b612af3806200040a6000396000f3fe6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610522578063ec596b721461056b578063f2fde38b1461057e578063f4d6ee861461059e57600080fd5b8063b88d4fde146104ad578063c87b56dd146104cd578063d15e2ee3146104ed578063db2e21bc1461050d57600080fd5b8063989bdbb6116100d1578063989bdbb614610438578063a0bcfc7f1461044d578063a22cb4651461046d578063ad979cde1461048d57600080fd5b8063715018a6146103d857806371adc02a146103ed5780638da5cb5b1461040557806395d89b411461042357600080fd5b806321cbb5bd1161017a5780633ccfd60b116101495780633ccfd60b1461036357806342842e0e146103785780636352211e1461039857806370a08231146103b857600080fd5b806321cbb5bd146102f357806322cf6d9c1461031357806323b872dd146103305780632db115441461035057600080fd5b8063095ea7b3116101b6578063095ea7b31461026c5780630a1e3dff1461028e57806318160ddd146102c95780631e23696f146102de57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046125d1565b6105b3565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610650565b604051610209919061282b565b34801561024057600080fd5b5061025461024f36600461266b565b6106e2565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004612516565b61077c565b005b34801561029a57600080fd5b506102bb6102a93660046123f3565b600c6020526000908152604090205481565b604051908152602001610209565b3480156102d557600080fd5b506102bb6108ae565b3480156102ea57600080fd5b506102bb6108cf565b3480156102ff57600080fd5b5061028c61030e366004612540565b6108e0565b34801561031f57600080fd5b50600954610100900460ff166101fd565b34801561033c57600080fd5b5061028c61034b366004612448565b6109e9565b61028c61035e36600461266b565b610a70565b34801561036f57600080fd5b5061028c610bfb565b34801561038457600080fd5b5061028c610393366004612448565b610d32565b3480156103a457600080fd5b506102546103b336600461266b565b610d4d565b3480156103c457600080fd5b506102bb6103d33660046123f3565b610dd8565b3480156103e457600080fd5b5061028c610e72565b3480156103f957600080fd5b5060095460ff166101fd565b34801561041157600080fd5b506006546001600160a01b0316610254565b34801561042f57600080fd5b50610227610ed8565b34801561044457600080fd5b5061028c610ee7565b34801561045957600080fd5b5061028c61046836600461260b565b610f54565b34801561047957600080fd5b5061028c6104883660046124ec565b611013565b34801561049957600080fd5b506009546101fd9062010000900460ff1681565b3480156104b957600080fd5b5061028c6104c8366004612484565b61101e565b3480156104d957600080fd5b506102276104e836600461266b565b6110ac565b3480156104f957600080fd5b5061028c6105083660046125b5565b61116b565b34801561051957600080fd5b5061028c6111e9565b34801561052e57600080fd5b506101fd61053d366004612415565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61028c610579366004612684565b61123c565b34801561058a57600080fd5b5061028c6105993660046123f3565b611530565b3480156105aa57600080fd5b506102bb61160f565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061061657506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061064a57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606000805461065f906128cc565b80601f016020809104026020016040519081016040528092919081815260200182805461068b906128cc565b80156106d85780601f106106ad576101008083540402835291602001916106d8565b820191906000526020600020905b8154815290600101906020018083116106bb57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107605760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061078782610d4d565b9050806001600160a01b0316836001600160a01b031614156108115760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610757565b336001600160a01b038216148061082d575061082d813361053d565b61089f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610757565b6108a98383611636565b505050565b60006108b861160f565b6108c06108cf565b6108ca919061283e565b905090565b600060016007546108ca9190612889565b6006546001600160a01b0316331461093a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610757565b60148161094561160f565b61094f919061283e565b1115604051806060016040528060298152602001612a9560299139906109885760405162461bcd60e51b8152600401610757919061282b565b5060005b818110156108a9576109d78383838181106109a9576109a9612978565b90506020020160208101906109be91906123f3565b600880549060006109ce83612907565b919050556116b1565b806109e181612907565b91505061098c565b6109f33382611800565b610a655760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610757565b6108a98383836118f7565b323314610aaa5760405162461bcd60e51b8152602060048201526008602482015267454f415f4f4e4c5960c01b6044820152606401610757565b6009546040805160608101909152602880825260ff90921691612a16602083013990610ae95760405162461bcd60e51b8152600401610757919061282b565b50600a8111156040518060600160405280602b81526020016129bb602b913990610b265760405162461bcd60e51b8152600401610757919061282b565b50611e4d81610b336108cf565b0111156040518060600160405280602c8152602001612a3e602c913990610b6d5760405162461bcd60e51b8152600401610757919061282b565b5060408051808201909152601a81527f496e76616c696420657468657220616d6f756e742073656e7421000000000000602082015234667c585087238000830214610bcb5760405162461bcd60e51b8152600401610757919061282b565b5060075460005b82811015610bee57610be6338284016116b1565b600101610bd2565b5050600780549091019055565b6006546001600160a01b03163314610c555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610757565b600d5447906001600160a01b03166108fc6064610c7384600461286a565b610c7d9190612856565b6040518115909202916000818181858888f19350505050158015610ca5573d6000803e3d6000fd5b50600e546001600160a01b03166108fc6064610cc284600361286a565b610ccc9190612856565b6040518115909202916000818181858888f19350505050158015610cf4573d6000803e3d6000fd5b50600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d2e573d6000803e3d6000fd5b5050565b6108a98383836040518060200160405280600081525061101e565b6000818152600260205260408120546001600160a01b03168061064a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610757565b60006001600160a01b038216610e565760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610757565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ecc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610757565b610ed66000611ad1565b565b60606001805461065f906128cc565b6006546001600160a01b03163314610f415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610757565b6009805462ff0000191662010000179055565b6006546001600160a01b03163314610fae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610757565b60095462010000900460ff16156110075760405162461bcd60e51b815260206004820152601b60248201527f4d65746164617461206e6f206c6f6e676572206d757461626c652100000000006044820152606401610757565b6108a9600a83836122a1565b610d2e338383611b30565b6110283383611800565b61109a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610757565b6110a684848484611bff565b50505050565b6000818152600260205260409020546060906001600160a01b03166111395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610757565b600a61114483611c88565b60405160200161115592919061271c565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146111c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610757565b6009805461ffff191692151561ff0019169290921761010091151591909102179055565b600d546001600160a01b0316331461120057600080fd5b600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611239573d6000803e3d6000fd5b50565b3233146112765760405162461bcd60e51b8152602060048201526008602482015267454f415f4f4e4c5960c01b6044820152606401610757565b600960019054906101000a900460ff166040518060600160405280602b8152602001612a6a602b9139906112bd5760405162461bcd60e51b8152600401610757919061282b565b50600a8311156040518060600160405280602b81526020016129bb602b9139906112fa5760405162461bcd60e51b8152600401610757919061282b565b50611e4d836113076108cf565b0111156040518060600160405280602c8152602001612a3e602c9139906113415760405162461bcd60e51b8152600401610757919061282b565b5060408051808201909152601a81527f496e76616c696420657468657220616d6f756e742073656e7421000000000000602082015234667c58508723800085021461139f5760405162461bcd60e51b8152600401610757919061282b565b50600b5460408051336020808301919091528183018690528251808303840181526060830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006080840152609c808401919091528351808403909101815260bc90920190925280519101206001600160a01b03909116906114289083611dba565b6001600160a01b0316146040518060400160405280601b81526020017f496e76616c6964207369676e61747572652070726f7669646564210000000000815250906114865760405162461bcd60e51b8152600401610757919061282b565b508183600c6000336001600160a01b03166001600160a01b03168152602001908152602001600020540111156040518060600160405280603081526020016129e660309139906114e95760405162461bcd60e51b8152600401610757919061282b565b50336000908152600c60205260408120805485019055600754905b8481101561152057611518338284016116b1565b600101611504565b5050600780549093019092555050565b6006546001600160a01b0316331461158a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610757565b6001600160a01b0381166116065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610757565b61123981611ad1565b600061161e6014611e61612889565b61162990600161283e565b6008546108ca9190612889565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061167882610d4d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b0382166117075760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610757565b6000818152600260205260409020546001600160a01b03161561176c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610757565b6001600160a01b038216600090815260036020526040812080546001929061179590849061283e565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166118795760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610757565b600061188483610d4d565b9050806001600160a01b0316846001600160a01b031614806118bf5750836001600160a01b03166118b4846106e2565b6001600160a01b0316145b806118ef57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661190a82610d4d565b6001600160a01b0316146119865760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610757565b6001600160a01b038216611a015760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610757565b611a0c600082611636565b6001600160a01b0383166000908152600360205260408120805460019290611a35908490612889565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a6390849061283e565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611b925760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610757565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c0a8484846118f7565b611c1684848484611dde565b6110a65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610757565b606081611cc857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611cf25780611cdc81612907565b9150611ceb9050600a83612856565b9150611ccc565b60008167ffffffffffffffff811115611d0d57611d0d61298e565b6040519080825280601f01601f191660200182016040528015611d37576020820181803683370190505b5090505b84156118ef57611d4c600183612889565b9150611d59600a86612922565b611d6490603061283e565b60f81b818381518110611d7957611d79612978565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611db3600a86612856565b9450611d3b565b6000806000611dc98585611f41565b91509150611dd681611fb1565b509392505050565b60006001600160a01b0384163b15611f3657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e229033908990889088906004016127ef565b602060405180830381600087803b158015611e3c57600080fd5b505af1925050508015611e6c575060408051601f3d908101601f19168201909252611e69918101906125ee565b60015b611f1c573d808015611e9a576040519150601f19603f3d011682016040523d82523d6000602084013e611e9f565b606091505b508051611f145760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610757565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118ef565b506001949350505050565b600080825160411415611f785760208301516040840151606085015160001a611f6c8782858561216c565b94509450505050611faa565b825160401415611fa25760208301516040840151611f97868383612259565b935093505050611faa565b506000905060025b9250929050565b6000816004811115611fc557611fc5612962565b1415611fce5750565b6001816004811115611fe257611fe2612962565b14156120305760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610757565b600281600481111561204457612044612962565b14156120925760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610757565b60038160048111156120a6576120a6612962565b14156120ff5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610757565b600481600481111561211357612113612962565b14156112395760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610757565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156121a35750600090506003612250565b8460ff16601b141580156121bb57508460ff16601c14155b156121cc5750600090506004612250565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612220573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661224957600060019250925050612250565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016122938782888561216c565b935093505050935093915050565b8280546122ad906128cc565b90600052602060002090601f0160209004810192826122cf5760008555612315565b82601f106122e85782800160ff19823516178555612315565b82800160010185558215612315579182015b828111156123155782358255916020019190600101906122fa565b50612321929150612325565b5090565b5b808211156123215760008155600101612326565b80356001600160a01b038116811461235157600080fd5b919050565b8035801515811461235157600080fd5b600082601f83011261237757600080fd5b813567ffffffffffffffff808211156123925761239261298e565b604051601f8301601f19908116603f011681019082821181831017156123ba576123ba61298e565b816040528381528660208588010111156123d357600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006020828403121561240557600080fd5b61240e8261233a565b9392505050565b6000806040838503121561242857600080fd5b6124318361233a565b915061243f6020840161233a565b90509250929050565b60008060006060848603121561245d57600080fd5b6124668461233a565b92506124746020850161233a565b9150604084013590509250925092565b6000806000806080858703121561249a57600080fd5b6124a38561233a565b93506124b16020860161233a565b925060408501359150606085013567ffffffffffffffff8111156124d457600080fd5b6124e087828801612366565b91505092959194509250565b600080604083850312156124ff57600080fd5b6125088361233a565b915061243f60208401612356565b6000806040838503121561252957600080fd5b6125328361233a565b946020939093013593505050565b6000806020838503121561255357600080fd5b823567ffffffffffffffff8082111561256b57600080fd5b818501915085601f83011261257f57600080fd5b81358181111561258e57600080fd5b8660208260051b85010111156125a357600080fd5b60209290920196919550909350505050565b600080604083850312156125c857600080fd5b61250883612356565b6000602082840312156125e357600080fd5b813561240e816129a4565b60006020828403121561260057600080fd5b815161240e816129a4565b6000806020838503121561261e57600080fd5b823567ffffffffffffffff8082111561263657600080fd5b818501915085601f83011261264a57600080fd5b81358181111561265957600080fd5b8660208285010111156125a357600080fd5b60006020828403121561267d57600080fd5b5035919050565b60008060006060848603121561269957600080fd5b8335925060208401359150604084013567ffffffffffffffff8111156126be57600080fd5b6126ca86828701612366565b9150509250925092565b600081518084526126ec8160208601602086016128a0565b601f01601f19169290920160200192915050565b600081516127128185602086016128a0565b9290920192915050565b600080845481600182811c91508083168061273857607f831692505b602080841082141561275857634e487b7160e01b86526022600452602486fd5b81801561276c576001811461277d576127aa565b60ff198616895284890196506127aa565b60008b81526020902060005b868110156127a25781548b820152908501908301612789565b505084890196505b5050505050506127e66127bd8286612700565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261282160808301846126d4565b9695505050505050565b60208152600061240e60208301846126d4565b6000821982111561285157612851612936565b500190565b6000826128655761286561294c565b500490565b600081600019048311821515161561288457612884612936565b500290565b60008282101561289b5761289b612936565b500390565b60005b838110156128bb5781810151838201526020016128a3565b838111156110a65750506000910152565b600181811c908216806128e057607f821691505b6020821081141561290157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561291b5761291b612936565b5060010190565b6000826129315761293161294c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461123957600080fdfe596f752063616e206f6e6c79206d696e7420757020746f20313020706572207472616e73616374696f6e21596f752063616e206e6f74206d696e742074686174206d616e79207573696e6720796f75722077686974656c69737421546865207075626c69632073616c65206973206e6f742063757272656e746c792061637469766521546865206d6178207075626c69632073616c6520737570706c7920686173206265656e2072656163686564215468652077686974656c6973742073616c65206973206e6f742063757272656e746c792061637469766521546865206d617820676976656177617920737570706c7920686173206265656e207265616368656421a26469706673582212207fbfbb68aae829df1e65a521a1cb94e04b1d6f974e49c3ebe0712c24c48b08f964736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5446387462515466525434434b38686369415375766e63457477784b376473545353517939336b7170725a672f00000000000000000000
Deployed Bytecode
0x6080604052600436106101d85760003560e01c8063715018a611610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610522578063ec596b721461056b578063f2fde38b1461057e578063f4d6ee861461059e57600080fd5b8063b88d4fde146104ad578063c87b56dd146104cd578063d15e2ee3146104ed578063db2e21bc1461050d57600080fd5b8063989bdbb6116100d1578063989bdbb614610438578063a0bcfc7f1461044d578063a22cb4651461046d578063ad979cde1461048d57600080fd5b8063715018a6146103d857806371adc02a146103ed5780638da5cb5b1461040557806395d89b411461042357600080fd5b806321cbb5bd1161017a5780633ccfd60b116101495780633ccfd60b1461036357806342842e0e146103785780636352211e1461039857806370a08231146103b857600080fd5b806321cbb5bd146102f357806322cf6d9c1461031357806323b872dd146103305780632db115441461035057600080fd5b8063095ea7b3116101b6578063095ea7b31461026c5780630a1e3dff1461028e57806318160ddd146102c95780631e23696f146102de57600080fd5b806301ffc9a7146101dd57806306fdde0314610212578063081812fc14610234575b600080fd5b3480156101e957600080fd5b506101fd6101f83660046125d1565b6105b3565b60405190151581526020015b60405180910390f35b34801561021e57600080fd5b50610227610650565b604051610209919061282b565b34801561024057600080fd5b5061025461024f36600461266b565b6106e2565b6040516001600160a01b039091168152602001610209565b34801561027857600080fd5b5061028c610287366004612516565b61077c565b005b34801561029a57600080fd5b506102bb6102a93660046123f3565b600c6020526000908152604090205481565b604051908152602001610209565b3480156102d557600080fd5b506102bb6108ae565b3480156102ea57600080fd5b506102bb6108cf565b3480156102ff57600080fd5b5061028c61030e366004612540565b6108e0565b34801561031f57600080fd5b50600954610100900460ff166101fd565b34801561033c57600080fd5b5061028c61034b366004612448565b6109e9565b61028c61035e36600461266b565b610a70565b34801561036f57600080fd5b5061028c610bfb565b34801561038457600080fd5b5061028c610393366004612448565b610d32565b3480156103a457600080fd5b506102546103b336600461266b565b610d4d565b3480156103c457600080fd5b506102bb6103d33660046123f3565b610dd8565b3480156103e457600080fd5b5061028c610e72565b3480156103f957600080fd5b5060095460ff166101fd565b34801561041157600080fd5b506006546001600160a01b0316610254565b34801561042f57600080fd5b50610227610ed8565b34801561044457600080fd5b5061028c610ee7565b34801561045957600080fd5b5061028c61046836600461260b565b610f54565b34801561047957600080fd5b5061028c6104883660046124ec565b611013565b34801561049957600080fd5b506009546101fd9062010000900460ff1681565b3480156104b957600080fd5b5061028c6104c8366004612484565b61101e565b3480156104d957600080fd5b506102276104e836600461266b565b6110ac565b3480156104f957600080fd5b5061028c6105083660046125b5565b61116b565b34801561051957600080fd5b5061028c6111e9565b34801561052e57600080fd5b506101fd61053d366004612415565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61028c610579366004612684565b61123c565b34801561058a57600080fd5b5061028c6105993660046123f3565b611530565b3480156105aa57600080fd5b506102bb61160f565b60006001600160e01b031982167f80ac58cd00000000000000000000000000000000000000000000000000000000148061061657506001600160e01b031982167f5b5e139f00000000000000000000000000000000000000000000000000000000145b8061064a57507f01ffc9a7000000000000000000000000000000000000000000000000000000006001600160e01b03198316145b92915050565b60606000805461065f906128cc565b80601f016020809104026020016040519081016040528092919081815260200182805461068b906128cc565b80156106d85780601f106106ad576101008083540402835291602001916106d8565b820191906000526020600020905b8154815290600101906020018083116106bb57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107605760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061078782610d4d565b9050806001600160a01b0316836001600160a01b031614156108115760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560448201527f72000000000000000000000000000000000000000000000000000000000000006064820152608401610757565b336001600160a01b038216148061082d575061082d813361053d565b61089f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610757565b6108a98383611636565b505050565b60006108b861160f565b6108c06108cf565b6108ca919061283e565b905090565b600060016007546108ca9190612889565b6006546001600160a01b0316331461093a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610757565b60148161094561160f565b61094f919061283e565b1115604051806060016040528060298152602001612a9560299139906109885760405162461bcd60e51b8152600401610757919061282b565b5060005b818110156108a9576109d78383838181106109a9576109a9612978565b90506020020160208101906109be91906123f3565b600880549060006109ce83612907565b919050556116b1565b806109e181612907565b91505061098c565b6109f33382611800565b610a655760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610757565b6108a98383836118f7565b323314610aaa5760405162461bcd60e51b8152602060048201526008602482015267454f415f4f4e4c5960c01b6044820152606401610757565b6009546040805160608101909152602880825260ff90921691612a16602083013990610ae95760405162461bcd60e51b8152600401610757919061282b565b50600a8111156040518060600160405280602b81526020016129bb602b913990610b265760405162461bcd60e51b8152600401610757919061282b565b50611e4d81610b336108cf565b0111156040518060600160405280602c8152602001612a3e602c913990610b6d5760405162461bcd60e51b8152600401610757919061282b565b5060408051808201909152601a81527f496e76616c696420657468657220616d6f756e742073656e7421000000000000602082015234667c585087238000830214610bcb5760405162461bcd60e51b8152600401610757919061282b565b5060075460005b82811015610bee57610be6338284016116b1565b600101610bd2565b5050600780549091019055565b6006546001600160a01b03163314610c555760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610757565b600d5447906001600160a01b03166108fc6064610c7384600461286a565b610c7d9190612856565b6040518115909202916000818181858888f19350505050158015610ca5573d6000803e3d6000fd5b50600e546001600160a01b03166108fc6064610cc284600361286a565b610ccc9190612856565b6040518115909202916000818181858888f19350505050158015610cf4573d6000803e3d6000fd5b50600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610d2e573d6000803e3d6000fd5b5050565b6108a98383836040518060200160405280600081525061101e565b6000818152600260205260408120546001600160a01b03168061064a5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201527f656e7420746f6b656e00000000000000000000000000000000000000000000006064820152608401610757565b60006001600160a01b038216610e565760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a6560448201527f726f2061646472657373000000000000000000000000000000000000000000006064820152608401610757565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ecc5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610757565b610ed66000611ad1565b565b60606001805461065f906128cc565b6006546001600160a01b03163314610f415760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610757565b6009805462ff0000191662010000179055565b6006546001600160a01b03163314610fae5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610757565b60095462010000900460ff16156110075760405162461bcd60e51b815260206004820152601b60248201527f4d65746164617461206e6f206c6f6e676572206d757461626c652100000000006044820152606401610757565b6108a9600a83836122a1565b610d2e338383611b30565b6110283383611800565b61109a5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f7665640000000000000000000000000000006064820152608401610757565b6110a684848484611bff565b50505050565b6000818152600260205260409020546060906001600160a01b03166111395760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006064820152608401610757565b600a61114483611c88565b60405160200161115592919061271c565b6040516020818303038152906040529050919050565b6006546001600160a01b031633146111c55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610757565b6009805461ffff191692151561ff0019169290921761010091151591909102179055565b600d546001600160a01b0316331461120057600080fd5b600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015611239573d6000803e3d6000fd5b50565b3233146112765760405162461bcd60e51b8152602060048201526008602482015267454f415f4f4e4c5960c01b6044820152606401610757565b600960019054906101000a900460ff166040518060600160405280602b8152602001612a6a602b9139906112bd5760405162461bcd60e51b8152600401610757919061282b565b50600a8311156040518060600160405280602b81526020016129bb602b9139906112fa5760405162461bcd60e51b8152600401610757919061282b565b50611e4d836113076108cf565b0111156040518060600160405280602c8152602001612a3e602c9139906113415760405162461bcd60e51b8152600401610757919061282b565b5060408051808201909152601a81527f496e76616c696420657468657220616d6f756e742073656e7421000000000000602082015234667c58508723800085021461139f5760405162461bcd60e51b8152600401610757919061282b565b50600b5460408051336020808301919091528183018690528251808303840181526060830184528051908201207f19457468657265756d205369676e6564204d6573736167653a0a3332000000006080840152609c808401919091528351808403909101815260bc90920190925280519101206001600160a01b03909116906114289083611dba565b6001600160a01b0316146040518060400160405280601b81526020017f496e76616c6964207369676e61747572652070726f7669646564210000000000815250906114865760405162461bcd60e51b8152600401610757919061282b565b508183600c6000336001600160a01b03166001600160a01b03168152602001908152602001600020540111156040518060600160405280603081526020016129e660309139906114e95760405162461bcd60e51b8152600401610757919061282b565b50336000908152600c60205260408120805485019055600754905b8481101561152057611518338284016116b1565b600101611504565b5050600780549093019092555050565b6006546001600160a01b0316331461158a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610757565b6001600160a01b0381166116065760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201527f64647265737300000000000000000000000000000000000000000000000000006064820152608401610757565b61123981611ad1565b600061161e6014611e61612889565b61162990600161283e565b6008546108ca9190612889565b6000818152600460205260409020805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b038416908117909155819061167882610d4d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6001600160a01b0382166117075760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610757565b6000818152600260205260409020546001600160a01b03161561176c5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610757565b6001600160a01b038216600090815260036020526040812080546001929061179590849061283e565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000818152600260205260408120546001600160a01b03166118795760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610757565b600061188483610d4d565b9050806001600160a01b0316846001600160a01b031614806118bf5750836001600160a01b03166118b4846106e2565b6001600160a01b0316145b806118ef57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661190a82610d4d565b6001600160a01b0316146119865760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201527f73206e6f74206f776e00000000000000000000000000000000000000000000006064820152608401610757565b6001600160a01b038216611a015760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610757565b611a0c600082611636565b6001600160a01b0383166000908152600360205260408120805460019290611a35908490612889565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a6390849061283e565b9091555050600081815260026020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611b925760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610757565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c0a8484846118f7565b611c1684848484611dde565b6110a65760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610757565b606081611cc857505060408051808201909152600181527f3000000000000000000000000000000000000000000000000000000000000000602082015290565b8160005b8115611cf25780611cdc81612907565b9150611ceb9050600a83612856565b9150611ccc565b60008167ffffffffffffffff811115611d0d57611d0d61298e565b6040519080825280601f01601f191660200182016040528015611d37576020820181803683370190505b5090505b84156118ef57611d4c600183612889565b9150611d59600a86612922565b611d6490603061283e565b60f81b818381518110611d7957611d79612978565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350611db3600a86612856565b9450611d3b565b6000806000611dc98585611f41565b91509150611dd681611fb1565b509392505050565b60006001600160a01b0384163b15611f3657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611e229033908990889088906004016127ef565b602060405180830381600087803b158015611e3c57600080fd5b505af1925050508015611e6c575060408051601f3d908101601f19168201909252611e69918101906125ee565b60015b611f1c573d808015611e9a576040519150601f19603f3d011682016040523d82523d6000602084013e611e9f565b606091505b508051611f145760405162461bcd60e51b815260206004820152603260248201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560448201527f63656976657220696d706c656d656e74657200000000000000000000000000006064820152608401610757565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506118ef565b506001949350505050565b600080825160411415611f785760208301516040840151606085015160001a611f6c8782858561216c565b94509450505050611faa565b825160401415611fa25760208301516040840151611f97868383612259565b935093505050611faa565b506000905060025b9250929050565b6000816004811115611fc557611fc5612962565b1415611fce5750565b6001816004811115611fe257611fe2612962565b14156120305760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610757565b600281600481111561204457612044612962565b14156120925760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610757565b60038160048111156120a6576120a6612962565b14156120ff5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610757565b600481600481111561211357612113612962565b14156112395760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610757565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08311156121a35750600090506003612250565b8460ff16601b141580156121bb57508460ff16601c14155b156121cc5750600090506004612250565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa158015612220573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b03811661224957600060019250925050612250565b9150600090505b94509492505050565b6000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff831660ff84901c601b016122938782888561216c565b935093505050935093915050565b8280546122ad906128cc565b90600052602060002090601f0160209004810192826122cf5760008555612315565b82601f106122e85782800160ff19823516178555612315565b82800160010185558215612315579182015b828111156123155782358255916020019190600101906122fa565b50612321929150612325565b5090565b5b808211156123215760008155600101612326565b80356001600160a01b038116811461235157600080fd5b919050565b8035801515811461235157600080fd5b600082601f83011261237757600080fd5b813567ffffffffffffffff808211156123925761239261298e565b604051601f8301601f19908116603f011681019082821181831017156123ba576123ba61298e565b816040528381528660208588010111156123d357600080fd5b836020870160208301376000602085830101528094505050505092915050565b60006020828403121561240557600080fd5b61240e8261233a565b9392505050565b6000806040838503121561242857600080fd5b6124318361233a565b915061243f6020840161233a565b90509250929050565b60008060006060848603121561245d57600080fd5b6124668461233a565b92506124746020850161233a565b9150604084013590509250925092565b6000806000806080858703121561249a57600080fd5b6124a38561233a565b93506124b16020860161233a565b925060408501359150606085013567ffffffffffffffff8111156124d457600080fd5b6124e087828801612366565b91505092959194509250565b600080604083850312156124ff57600080fd5b6125088361233a565b915061243f60208401612356565b6000806040838503121561252957600080fd5b6125328361233a565b946020939093013593505050565b6000806020838503121561255357600080fd5b823567ffffffffffffffff8082111561256b57600080fd5b818501915085601f83011261257f57600080fd5b81358181111561258e57600080fd5b8660208260051b85010111156125a357600080fd5b60209290920196919550909350505050565b600080604083850312156125c857600080fd5b61250883612356565b6000602082840312156125e357600080fd5b813561240e816129a4565b60006020828403121561260057600080fd5b815161240e816129a4565b6000806020838503121561261e57600080fd5b823567ffffffffffffffff8082111561263657600080fd5b818501915085601f83011261264a57600080fd5b81358181111561265957600080fd5b8660208285010111156125a357600080fd5b60006020828403121561267d57600080fd5b5035919050565b60008060006060848603121561269957600080fd5b8335925060208401359150604084013567ffffffffffffffff8111156126be57600080fd5b6126ca86828701612366565b9150509250925092565b600081518084526126ec8160208601602086016128a0565b601f01601f19169290920160200192915050565b600081516127128185602086016128a0565b9290920192915050565b600080845481600182811c91508083168061273857607f831692505b602080841082141561275857634e487b7160e01b86526022600452602486fd5b81801561276c576001811461277d576127aa565b60ff198616895284890196506127aa565b60008b81526020902060005b868110156127a25781548b820152908501908301612789565b505084890196505b5050505050506127e66127bd8286612700565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000815260050190565b95945050505050565b60006001600160a01b0380871683528086166020840152508360408301526080606083015261282160808301846126d4565b9695505050505050565b60208152600061240e60208301846126d4565b6000821982111561285157612851612936565b500190565b6000826128655761286561294c565b500490565b600081600019048311821515161561288457612884612936565b500290565b60008282101561289b5761289b612936565b500390565b60005b838110156128bb5781810151838201526020016128a3565b838111156110a65750506000910152565b600181811c908216806128e057607f821691505b6020821081141561290157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561291b5761291b612936565b5060010190565b6000826129315761293161294c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461123957600080fdfe596f752063616e206f6e6c79206d696e7420757020746f20313020706572207472616e73616374696f6e21596f752063616e206e6f74206d696e742074686174206d616e79207573696e6720796f75722077686974656c69737421546865207075626c69632073616c65206973206e6f742063757272656e746c792061637469766521546865206d6178207075626c69632073616c6520737570706c7920686173206265656e2072656163686564215468652077686974656c6973742073616c65206973206e6f742063757272656e746c792061637469766521546865206d617820676976656177617920737570706c7920686173206265656e207265616368656421a26469706673582212207fbfbb68aae829df1e65a521a1cb94e04b1d6f974e49c3ebe0712c24c48b08f964736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5446387462515466525434434b38686369415375766e63457477784b376473545353517939336b7170725a672f00000000000000000000
-----Decoded View---------------
Arg [0] : baseUri_ (string): ipfs://QmTF8tbQTfRT4CK8hciASuvncEtwxK7dsTSSQy93kqprZg/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5446387462515466525434434b38686369415375766e63
Arg [3] : 457477784b376473545353517939336b7170725a672f00000000000000000000
Deployed Bytecode Sourcemap
200:5721:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1490:300:4;;;;;;;;;;-1:-1:-1;1490:300:4;;;;;:::i;:::-;;:::i;:::-;;;9104:14:12;;9097:22;9079:41;;9067:2;9052:18;1490:300:4;;;;;;;;2408:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3919:217::-;;;;;;;;;;-1:-1:-1;3919:217:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8054:55:12;;;8036:74;;8024:2;8009:18;3919:217:4;7890:226:12;3457:401:4;;;;;;;;;;-1:-1:-1;3457:401:4;;;;;:::i;:::-;;:::i;:::-;;2005:41:9;;;;;;;;;;-1:-1:-1;2005:41:9;;;;;:::i;:::-;;;;;;;;;;;;;;;;;18497:25:12;;;18485:2;18470:18;2005:41:9;18351:177:12;3842:117:9;;;;;;;;;;;;;:::i;3614:97::-;;;;;;;;;;;;;:::i;4470:251::-;;;;;;;;;;-1:-1:-1;4470:251:9;;;;;:::i;:::-;;:::i;4339:98::-;;;;;;;;;;-1:-1:-1;4415:14:9;;;;;;;4339:98;;4646:330:4;;;;;;;;;;-1:-1:-1;4646:330:4;;;;;:::i;:::-;;:::i;2079:588:9:-;;;;;;:::i;:::-;;:::i;5364:319::-;;;;;;;;;;;;;:::i;5042:179:4:-;;;;;;;;;;-1:-1:-1;5042:179:4;;;;;:::i;:::-;;:::i;2111:235::-;;;;;;;;;;-1:-1:-1;2111:235:4;;;;;:::i;:::-;;:::i;1849:205::-;;;;;;;;;;-1:-1:-1;1849:205:4;;;;;:::i;:::-;;:::i;1661:101:10:-;;;;;;;;;;;;;:::i;4239:92:9:-;;;;;;;;;;-1:-1:-1;4312:11:9;;;;4239:92;;1029:85:10;;;;;;;;;;-1:-1:-1;1101:6:10;;-1:-1:-1;;;;;1101:6:10;1029:85;;2570:102:4;;;;;;;;;;;;;:::i;4908:84:9:-;;;;;;;;;;;;;:::i;5000:170::-;;;;;;;;;;-1:-1:-1;5000:170:9;;;;;:::i;:::-;;:::i;4203:153:4:-;;;;;;;;;;-1:-1:-1;4203:153:4;;;;;:::i;:::-;;:::i;1868:35:9:-;;;;;;;;;;-1:-1:-1;1868:35:9;;;;;;;;;;;5287:320:4;;;;;;;;;;-1:-1:-1;5287:320:4;;;;;:::i;:::-;;:::i;3967:264:9:-;;;;;;;;;;-1:-1:-1;3967:264:9;;;;;:::i;:::-;;:::i;4733:167::-;;;;;;;;;;-1:-1:-1;4733:167:9;;;;;:::i;:::-;;:::i;5691:227::-;;;;;;;;;;;;;:::i;4422:162:4:-;;;;;;;;;;-1:-1:-1;4422:162:4;;;;;:::i;:::-;-1:-1:-1;;;;;4542:25:4;;;4519:4;4542:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4422:162;2675:912:9;;;;;;:::i;:::-;;:::i;1911:198:10:-;;;;;;;;;;-1:-1:-1;1911:198:10;;;;;:::i;:::-;;:::i;3719:115:9:-;;;;;;;;;;;;;:::i;1490:300:4:-;1592:4;-1:-1:-1;;;;;;1627:40:4;;1642:25;1627:40;;:104;;-1:-1:-1;;;;;;;1683:48:4;;1698:33;1683:48;1627:104;:156;;;-1:-1:-1;952:25:3;-1:-1:-1;;;;;;937:40:3;;;1747:36:4;1608:175;1490:300;-1:-1:-1;;1490:300:4:o;2408:98::-;2462:13;2494:5;2487:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2408:98;:::o;3919:217::-;3995:7;7167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7167:16:4;4014:73;;;;-1:-1:-1;;;4014:73:4;;16133:2:12;4014:73:4;;;16115:21:12;16172:2;16152:18;;;16145:30;16211:34;16191:18;;;16184:62;-1:-1:-1;;;16262:18:12;;;16255:42;16314:19;;4014:73:4;;;;;;;;;-1:-1:-1;4105:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4105:24:4;;3919:217::o;3457:401::-;3537:13;3553:23;3568:7;3553:14;:23::i;:::-;3537:39;;3600:5;-1:-1:-1;;;;;3594:11:4;:2;-1:-1:-1;;;;;3594:11:4;;;3586:57;;;;-1:-1:-1;;;3586:57:4;;17733:2:12;3586:57:4;;;17715:21:12;17772:2;17752:18;;;17745:30;17811:34;17791:18;;;17784:62;17882:3;17862:18;;;17855:31;17903:19;;3586:57:4;17531:397:12;3586:57:4;719:10:1;-1:-1:-1;;;;;3675:21:4;;;;:62;;-1:-1:-1;3700:37:4;3717:5;719:10:1;4422:162:4;:::i;3700:37::-;3654:165;;;;-1:-1:-1;;;3654:165:4;;13787:2:12;3654:165:4;;;13769:21:12;13826:2;13806:18;;;13799:30;13865:34;13845:18;;;13838:62;13936:26;13916:18;;;13909:54;13980:19;;3654:165:4;13585:420:12;3654:165:4;3830:21;3839:2;3843:7;3830:8;:21::i;:::-;3527:331;3457:401;;:::o;3842:117:9:-;3885:4;3931:20;:18;:20::i;:::-;3909:19;:17;:19::i;:::-;:42;;;;:::i;:::-;3902:49;;3842:117;:::o;3614:97::-;3663:4;727:1;3687:7;;:16;;;;:::i;4470:251::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;16546:2:12;1233:68:10;;;16528:21:12;;;16565:18;;;16558:30;16624:34;16604:18;;;16597:62;16676:18;;1233:68:10;16344:356:12;1233:68:10;652:2:9::1;4573::::0;4550:20:::1;:18;:20::i;:::-;:32;;;;:::i;:::-;:44;;4596:25;;;;;;;;;;;;;;;;;4542:80;;;;;-1:-1:-1::0;;;4542:80:9::1;;;;;;;;:::i;:::-;;4637:6;4633:80;4649:13:::0;;::::1;4633:80;;;4682:31;4688:2;;4691:1;4688:5;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;4695:15;:17:::0;;;:15:::1;:17;::::0;::::1;:::i;:::-;;;;;4682:5;:31::i;:::-;4664:3:::0;::::1;::::0;::::1;:::i;:::-;;;;4633:80;;4646:330:4::0;4835:41;719:10:1;4868:7:4;4835:18;:41::i;:::-;4827:103;;;;-1:-1:-1;;;4827:103:4;;18135:2:12;4827:103:4;;;18117:21:12;18174:2;18154:18;;;18147:30;18213:34;18193:18;;;18186:62;18284:19;18264:18;;;18257:47;18321:19;;4827:103:4;17933:413:12;4827:103:4;4941:28;4951:4;4957:2;4961:7;4941:9;:28::i;2079:588:9:-;457:9;470:10;457:23;449:44;;;;-1:-1:-1;;;449:44:9;;15436:2:12;449:44:9;;;15418:21:12;15475:1;15455:18;;;15448:29;-1:-1:-1;;;15493:18:12;;;15486:38;15541:18;;449:44:9;15234:331:12;449:44:9;2184:11:::1;::::0;2197:25:::1;::::0;;::::1;::::0;::::1;::::0;;;::::1;::::0;;;2184:11:::1;::::0;;::::1;::::0;2197:25:::1;;::::0;::::1;;2176:47;;;;;-1:-1:-1::0;;;2176:47:9::1;;;;;;;;:::i;:::-;;828:2;2246:6;:20;;2268:21;;;;;;;;;;;;;;;;;2238:52;;;;;-1:-1:-1::0;;;2238:52:9::1;;;;;;;;:::i;:::-;-1:-1:-1::0;2345:21:9;2335:6;2313:19:::1;:17;:19::i;:::-;:28;:53;;2368:23;;;;;;;;;;;;;;;;;2305:87;;;;;-1:-1:-1::0;;;2305:87:9::1;;;;;;;;:::i;:::-;-1:-1:-1::0;2447:17:9::1;::::0;;;;::::1;::::0;;;::::1;::::0;;::::1;;::::0;::::1;::::0;2415:9:::1;686:11;2428:17:::0;::::1;2415:30;2407:58;;;;-1:-1:-1::0;;;2407:58:9::1;;;;;;;;:::i;:::-;-1:-1:-1::0;2497:7:9::1;::::0;2482:12:::1;2519:98;2539:6;2535:1;:10;2519:98;;;2571:30;2577:10;2599:1;2589:7;:11;2571:5;:30::i;:::-;2547:3;;2519:98;;;-1:-1:-1::0;;2631:7:9::1;:17:::0;;;;::::1;::::0;;2079:588::o;5364:319::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;16546:2:12;1233:68:10;;;16528:21:12;;;16565:18;;;16558:30;16624:34;16604:18;;;16597:62;16676:18;;1233:68:10;16344:356:12;1233:68:10;5469:2:9::1;::::0;5429:21:::1;::::0;-1:-1:-1;;;;;5469:2:9::1;5461:41;5498:3;5483:11;5429:21:::0;5493:1:::1;5483:11;:::i;:::-;5482:19;;;;:::i;:::-;5461:41;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;5537:2:9::1;::::0;-1:-1:-1;;;;;5537:2:9::1;5529:41;5566:3;5551:11;:7:::0;5561:1:::1;5551:11;:::i;:::-;5550:19;;;;:::i;:::-;5529:41;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;5605:2:9::1;::::0;5597:43:::1;::::0;-1:-1:-1;;;;;5605:2:9;;::::1;::::0;5618:21:::1;5597:43:::0;::::1;;;::::0;5605:2:::1;5597:43:::0;5605:2;5597:43;5618:21;5605:2;5597:43;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;5403:280;5364:319::o:0;5042:179:4:-;5175:39;5192:4;5198:2;5202:7;5175:39;;;;;;;;;;;;:16;:39::i;2111:235::-;2183:7;2218:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2218:16:4;2252:19;2244:73;;;;-1:-1:-1;;;2244:73:4;;14623:2:12;2244:73:4;;;14605:21:12;14662:2;14642:18;;;14635:30;14701:34;14681:18;;;14674:62;14772:11;14752:18;;;14745:39;14801:19;;2244:73:4;14421:405:12;1849:205:4;1921:7;-1:-1:-1;;;;;1948:19:4;;1940:74;;;;-1:-1:-1;;;1940:74:4;;14212:2:12;1940:74:4;;;14194:21:12;14251:2;14231:18;;;14224:30;14290:34;14270:18;;;14263:62;14361:12;14341:18;;;14334:40;14391:19;;1940:74:4;14010:406:12;1940:74:4;-1:-1:-1;;;;;;2031:16:4;;;;;:9;:16;;;;;;;1849:205::o;1661:101:10:-;1101:6;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;16546:2:12;1233:68:10;;;16528:21:12;;;16565:18;;;16558:30;16624:34;16604:18;;;16597:62;16676:18;;1233:68:10;16344:356:12;1233:68:10;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;2570:102:4:-;2626:13;2658:7;2651:14;;;;;:::i;4908:84:9:-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;16546:2:12;1233:68:10;;;16528:21:12;;;16565:18;;;16558:30;16624:34;16604:18;;;16597:62;16676:18;;1233:68:10;16344:356:12;1233:68:10;4962:15:9::1;:22:::0;;-1:-1:-1;;4962:22:9::1;::::0;::::1;::::0;;4908:84::o;5000:170::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;16546:2:12;1233:68:10;;;16528:21:12;;;16565:18;;;16558:30;16624:34;16604:18;;;16597:62;16676:18;;1233:68:10;16344:356:12;1233:68:10;5085:15:9::1;::::0;;;::::1;;;5084:16;5076:56;;;::::0;-1:-1:-1;;;5076:56:9;;13431:2:12;5076:56:9::1;::::0;::::1;13413:21:12::0;13470:2;13450:18;;;13443:30;13509:29;13489:18;;;13482:57;13556:18;;5076:56:9::1;13229:351:12::0;5076:56:9::1;5143:19;:8;5154::::0;;5143:19:::1;:::i;4203:153:4:-:0;4297:52;719:10:1;4330:8:4;4340;4297:18;:52::i;5287:320::-;5456:41;719:10:1;5489:7:4;5456:18;:41::i;:::-;5448:103;;;;-1:-1:-1;;;5448:103:4;;18135:2:12;5448:103:4;;;18117:21:12;18174:2;18154:18;;;18147:30;18213:34;18193:18;;;18186:62;18284:19;18264:18;;;18257:47;18321:19;;5448:103:4;17933:413:12;5448:103:4;5561:39;5575:4;5581:2;5585:7;5594:5;5561:13;:39::i;:::-;5287:320;;;;:::o;3967:264:9:-;7144:4:4;7167:16;;;:7;:16;;;;;;4040:13:9;;-1:-1:-1;;;;;7167:16:4;4066:76:9;;;;-1:-1:-1;;;4066:76:9;;17317:2:12;4066:76:9;;;17299:21:12;17356:2;17336:18;;;17329:30;17395:34;17375:18;;;17368:62;17466:17;17446:18;;;17439:45;17501:19;;4066:76:9;17115:411:12;4066:76:9;4184:8;4194:18;:7;:16;:18::i;:::-;4167:55;;;;;;;;;:::i;:::-;;;;;;;;;;;;;4153:70;;3967:264;;;:::o;4733:167::-;1101:6:10;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;16546:2:12;1233:68:10;;;16528:21:12;;;16565:18;;;16558:30;16624:34;16604:18;;;16597:62;16676:18;;1233:68:10;16344:356:12;1233:68:10;4825:11:9::1;:25:::0;;-1:-1:-1;;4861:31:9;4825:25;::::1;;-1:-1:-1::0;;4861:31:9;;;;;4825:25:::1;4861:31:::0;::::1;;::::0;;;::::1;;::::0;;4733:167::o;5691:227::-;5853:2;;-1:-1:-1;;;;;5853:2:9;5839:10;:16;5831:25;;;;;;5875:2;;5867:43;;-1:-1:-1;;;;;5875:2:9;;;;5888:21;5867:43;;;;;5875:2;5867:43;5875:2;5867:43;5888:21;5875:2;5867:43;;;;;;;;;;;;;;;;;;;;;5691:227::o;2675:912::-;457:9;470:10;457:23;449:44;;;;-1:-1:-1;;;449:44:9;;15436:2:12;449:44:9;;;15418:21:12;15475:1;15455:18;;;15448:29;-1:-1:-1;;;15493:18:12;;;15486:38;15541:18;;449:44:9;15234:331:12;449:44:9;2822:14:::1;;;;;;;;;;;2838:24;;;;;;;;;;;;;;;;;2814:49;;;;;-1:-1:-1::0;;;2814:49:9::1;;;;;;;;:::i;:::-;;828:2;2886:6;:20;;2908:21;;;;;;;;;;;;;;;;;2878:52;;;;;-1:-1:-1::0;;;2878:52:9::1;;;;;;;;:::i;:::-;-1:-1:-1::0;2985:21:9;2975:6;2953:19:::1;:17;:19::i;:::-;:28;:53;;3008:23;;;;;;;;;;;;;;;;;2945:87;;;;;-1:-1:-1::0;;;2945:87:9::1;;;;;;;;:::i;:::-;-1:-1:-1::0;3087:17:9::1;::::0;;;;::::1;::::0;;;::::1;::::0;;::::1;;::::0;::::1;::::0;3055:9:::1;686:11;3068:17:::0;::::1;3055:30;3047:58;;;;-1:-1:-1::0;;;3047:58:9::1;;;;;;;;:::i;:::-;-1:-1:-1::0;3221:7:9::1;::::0;3140:32:::1;::::0;;3151:10:::1;3140:32;::::0;;::::1;8811:74:12::0;;;;8901:18;;;8894:34;;;3140:32:9;;;;;;;;;8784:18:12;;;3140:32:9;;3130:43;;;;::::1;::::0;7747:66:12;8238:58:2;;;7735:79:12;7830:12;;;;7823:28;;;;8238:58:2;;;;;;;;;;7867:12:12;;;;8238:58:2;;;8228:69;;;;;-1:-1:-1;;;;;3221:7:9;;::::1;::::0;3130:87:::1;::::0;3207:9;3130:76:::1;:87::i;:::-;-1:-1:-1::0;;;;;3130:98:9::1;;3230:23;;;;;;;;;;;;;;;;::::0;3122:132:::1;;;;;-1:-1:-1::0;;;3122:132:9::1;;;;;;;;:::i;:::-;;3311:8;3301:6;3277:9;:21;3287:10;-1:-1:-1::0;;;;;3277:21:9::1;-1:-1:-1::0;;;;;3277:21:9::1;;;;;;;;;;;;;:30;:42;;3321:17;;;;;;;;;;;;;;;;;3269:70;;;;;-1:-1:-1::0;;;3269:70:9::1;;;;;;;;:::i;:::-;-1:-1:-1::0;3364:10:9::1;3354:21;::::0;;;:9:::1;:21;::::0;;;;:31;;;::::1;::::0;;3417:7:::1;::::0;;3439:98:::1;3459:6;3455:1;:10;3439:98;;;3491:30;3497:10;3519:1;3509:7;:11;3491:5;:30::i;:::-;3467:3;;3439:98;;;-1:-1:-1::0;;3551:7:9::1;:17:::0;;;;::::1;::::0;;;-1:-1:-1;;2675:912:9:o;1911:198:10:-;1101:6;;-1:-1:-1;;;;;1101:6:10;719:10:1;1241:23:10;1233:68;;;;-1:-1:-1;;;1233:68:10;;16546:2:12;1233:68:10;;;16528:21:12;;;16565:18;;;16558:30;16624:34;16604:18;;;16597:62;16676:18;;1233:68:10;16344:356:12;1233:68:10;-1:-1:-1;;;;;1999:22:10;::::1;1991:73;;;::::0;-1:-1:-1;;;1991:73:10;;11092:2:12;1991:73:10::1;::::0;::::1;11074:21:12::0;11131:2;11111:18;;;11104:30;11170:34;11150:18;;;11143:62;11241:8;11221:18;;;11214:36;11267:19;;1991:73:10::1;10890:402:12::0;1991:73:10::1;2074:28;2093:8;2074:18;:28::i;3719:115:9:-:0;3769:4;767:21;652:2;616:4;767:21;:::i;:::-;:25;;791:1;767:25;:::i;:::-;3793:15;;:33;;;;:::i;10930:171:4:-;11004:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;11004:29:4;-1:-1:-1;;;;;11004:29:4;;;;;;;;:24;;11057:23;11004:24;11057:14;:23::i;:::-;-1:-1:-1;;;;;11048:46:4;;;;;;;;;;;10930:171;;:::o;8998:372::-;-1:-1:-1;;;;;9077:16:4;;9069:61;;;;-1:-1:-1;;;9069:61:4;;15772:2:12;9069:61:4;;;15754:21:12;;;15791:18;;;15784:30;15850:34;15830:18;;;15823:62;15902:18;;9069:61:4;15570:356:12;9069:61:4;7144:4;7167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7167:16:4;:30;9140:58;;;;-1:-1:-1;;;9140:58:4;;11499:2:12;9140:58:4;;;11481:21:12;11538:2;11518:18;;;11511:30;11577;11557:18;;;11550:58;11625:18;;9140:58:4;11297:352:12;9140:58:4;-1:-1:-1;;;;;9265:13:4;;;;;;:9;:13;;;;;:18;;9282:1;;9265:13;:18;;9282:1;;9265:18;:::i;:::-;;;;-1:-1:-1;;9293:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;9293:21:4;-1:-1:-1;;;;;9293:21:4;;;;;;;;9330:33;;9293:16;;;9330:33;;9293:16;;9330:33;8998:372;;:::o;7362:344::-;7455:4;7167:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7167:16:4;7471:73;;;;-1:-1:-1;;;7471:73:4;;13018:2:12;7471:73:4;;;13000:21:12;13057:2;13037:18;;;13030:30;13096:34;13076:18;;;13069:62;-1:-1:-1;;;13147:18:12;;;13140:42;13199:19;;7471:73:4;12816:408:12;7471:73:4;7554:13;7570:23;7585:7;7570:14;:23::i;:::-;7554:39;;7622:5;-1:-1:-1;;;;;7611:16:4;:7;-1:-1:-1;;;;;7611:16:4;;:51;;;;7655:7;-1:-1:-1;;;;;7631:31:4;:20;7643:7;7631:11;:20::i;:::-;-1:-1:-1;;;;;7631:31:4;;7611:51;:87;;;-1:-1:-1;;;;;;4542:25:4;;;4519:4;4542:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7666:32;7603:96;7362:344;-1:-1:-1;;;;7362:344:4:o;10259:560::-;10413:4;-1:-1:-1;;;;;10386:31:4;:23;10401:7;10386:14;:23::i;:::-;-1:-1:-1;;;;;10386:31:4;;10378:85;;;;-1:-1:-1;;;10378:85:4;;16907:2:12;10378:85:4;;;16889:21:12;16946:2;16926:18;;;16919:30;16985:34;16965:18;;;16958:62;17056:11;17036:18;;;17029:39;17085:19;;10378:85:4;16705:405:12;10378:85:4;-1:-1:-1;;;;;10481:16:4;;10473:65;;;;-1:-1:-1;;;10473:65:4;;11856:2:12;10473:65:4;;;11838:21:12;11895:2;11875:18;;;11868:30;11934:34;11914:18;;;11907:62;12005:6;11985:18;;;11978:34;12029:19;;10473:65:4;11654:400:12;10473:65:4;10650:29;10667:1;10671:7;10650:8;:29::i;:::-;-1:-1:-1;;;;;10690:15:4;;;;;;:9;:15;;;;;:20;;10709:1;;10690:15;:20;;10709:1;;10690:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10720:13:4;;;;;;:9;:13;;;;;:18;;10737:1;;10720:13;:18;;10737:1;;10720:18;:::i;:::-;;;;-1:-1:-1;;10748:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;10748:21:4;-1:-1:-1;;;;;10748:21:4;;;;;;;;;10785:27;;10748:16;;10785:27;;;;;;;10259:560;;;:::o;2263:187:10:-;2355:6;;;-1:-1:-1;;;;;2371:17:10;;;-1:-1:-1;;2371:17:10;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2326:124;2263:187;:::o;11236:307:4:-;11386:8;-1:-1:-1;;;;;11377:17:4;:5;-1:-1:-1;;;;;11377:17:4;;;11369:55;;;;-1:-1:-1;;;11369:55:4;;12261:2:12;11369:55:4;;;12243:21:12;12300:2;12280:18;;;12273:30;12339:27;12319:18;;;12312:55;12384:18;;11369:55:4;12059:349:12;11369:55:4;-1:-1:-1;;;;;11434:25:4;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;11434:46:4;;;;;;;;;;11495:41;;9079::12;;;11495::4;;9052:18:12;11495:41:4;;;;;;;11236:307;;;:::o;6469:::-;6620:28;6630:4;6636:2;6640:7;6620:9;:28::i;:::-;6666:48;6689:4;6695:2;6699:7;6708:5;6666:22;:48::i;:::-;6658:111;;;;-1:-1:-1;;;6658:111:4;;10673:2:12;6658:111:4;;;10655:21:12;10712:2;10692:18;;;10685:30;10751:34;10731:18;;;10724:62;10822:20;10802:18;;;10795:48;10860:19;;6658:111:4;10471:414:12;328:703:11;384:13;601:10;597:51;;-1:-1:-1;;627:10:11;;;;;;;;;;;;;;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:11;;-1:-1:-1;773:2:11;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:11;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:11;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;972:11:11;981:2;972:11;;:::i;:::-;;;844:150;;4292:227:2;4370:7;4390:17;4409:18;4431:27;4442:4;4448:9;4431:10;:27::i;:::-;4389:69;;;;4468:18;4480:5;4468:11;:18::i;:::-;-1:-1:-1;4503:9:2;4292:227;-1:-1:-1;;;4292:227:2:o;12096:778:4:-;12246:4;-1:-1:-1;;;;;12266:13:4;;1087:20:0;1133:8;12262:606:4;;12301:72;;-1:-1:-1;;;12301:72:4;;-1:-1:-1;;;;;12301:36:4;;;;;:72;;719:10:1;;12352:4:4;;12358:7;;12367:5;;12301:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12301:72:4;;;;;;;;-1:-1:-1;;12301:72:4;;;;;;;;;;;;:::i;:::-;;;12297:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12540:13:4;;12536:266;;12582:60;;-1:-1:-1;;;12582:60:4;;10673:2:12;12582:60:4;;;10655:21:12;10712:2;10692:18;;;10685:30;10751:34;10731:18;;;10724:62;10822:20;10802:18;;;10795:48;10860:19;;12582:60:4;10471:414:12;12536:266:4;12754:6;12748:13;12739:6;12735:2;12731:15;12724:38;12297:519;-1:-1:-1;;;;;;12423:51:4;-1:-1:-1;;;12423:51:4;;-1:-1:-1;12416:58:4;;12262:606;-1:-1:-1;12853:4:4;12096:778;;;;;;:::o;2227:1279:2:-;2308:7;2317:12;2538:9;:16;2558:2;2538:22;2534:966;;;2827:4;2812:20;;2806:27;2876:4;2861:20;;2855:27;2933:4;2918:20;;2912:27;2576:9;2904:36;2974:25;2985:4;2904:36;2806:27;2855;2974:10;:25::i;:::-;2967:32;;;;;;;;;2534:966;3020:9;:16;3040:2;3020:22;3016:484;;;3289:4;3274:20;;3268:27;3339:4;3324:20;;3318:27;3379:23;3390:4;3268:27;3318;3379:10;:23::i;:::-;3372:30;;;;;;;;3016:484;-1:-1:-1;3449:1:2;;-1:-1:-1;3453:35:2;3016:484;2227:1279;;;;;:::o;532:631::-;609:20;600:5;:29;;;;;;;;:::i;:::-;;596:561;;;532:631;:::o;596:561::-;705:29;696:5;:38;;;;;;;;:::i;:::-;;692:465;;;750:34;;-1:-1:-1;;;750:34:2;;9960:2:12;750:34:2;;;9942:21:12;9999:2;9979:18;;;9972:30;10038:26;10018:18;;;10011:54;10082:18;;750:34:2;9758:348:12;692:465:2;814:35;805:5;:44;;;;;;;;:::i;:::-;;801:356;;;865:41;;-1:-1:-1;;;865:41:2;;10313:2:12;865:41:2;;;10295:21:12;10352:2;10332:18;;;10325:30;10391:33;10371:18;;;10364:61;10442:18;;865:41:2;10111:355:12;801:356:2;936:30;927:5;:39;;;;;;;;:::i;:::-;;923:234;;;982:44;;-1:-1:-1;;;982:44:2;;12615:2:12;982:44:2;;;12597:21:12;12654:2;12634:18;;;12627:30;12693:34;12673:18;;;12666:62;-1:-1:-1;;;12744:18:12;;;12737:32;12786:19;;982:44:2;12413:398:12;923:234:2;1056:30;1047:5;:39;;;;;;;;:::i;:::-;;1043:114;;;1102:44;;-1:-1:-1;;;1102:44:2;;15033:2:12;1102:44:2;;;15015:21:12;15072:2;15052:18;;;15045:30;15111:34;15091:18;;;15084:62;-1:-1:-1;;;15162:18:12;;;15155:32;15204:19;;1102:44:2;14831:398:12;5743:1603:2;5869:7;;6793:66;6780:79;;6776:161;;;-1:-1:-1;6891:1:2;;-1:-1:-1;6895:30:2;6875:51;;6776:161;6950:1;:7;;6955:2;6950:7;;:18;;;;;6961:1;:7;;6966:2;6961:7;;6950:18;6946:100;;;-1:-1:-1;7000:1:2;;-1:-1:-1;7004:30:2;6984:51;;6946:100;7157:24;;;7140:14;7157:24;;;;;;;;;9358:25:12;;;9431:4;9419:17;;9399:18;;;9392:45;;;;9453:18;;;9446:34;;;9496:18;;;9489:34;;;7157:24:2;;9330:19:12;;7157:24:2;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7157:24:2;;-1:-1:-1;;7157:24:2;;;-1:-1:-1;;;;;;;7195:20:2;;7191:101;;7247:1;7251:29;7231:50;;;;;;;7191:101;7310:6;-1:-1:-1;7318:20:2;;-1:-1:-1;5743:1603:2;;;;;;;;:::o;4773:379::-;4883:7;;4988:66;4980:75;;5081:3;5077:12;;;5091:2;5073:21;5120:25;5131:4;5073:21;5140:1;4980:75;5120:10;:25::i;:::-;5113:32;;;;;;4773:379;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:196:12;82:20;;-1:-1:-1;;;;;131:54:12;;121:65;;111:93;;200:1;197;190:12;111:93;14:196;;;:::o;215:160::-;280:20;;336:13;;329:21;319:32;;309:60;;365:1;362;355:12;380:718;422:5;475:3;468:4;460:6;456:17;452:27;442:55;;493:1;490;483:12;442:55;529:6;516:20;555:18;592:2;588;585:10;582:36;;;598:18;;:::i;:::-;673:2;667:9;641:2;727:13;;-1:-1:-1;;723:22:12;;;747:2;719:31;715:40;703:53;;;771:18;;;791:22;;;768:46;765:72;;;817:18;;:::i;:::-;857:10;853:2;846:22;892:2;884:6;877:18;938:3;931:4;926:2;918:6;914:15;910:26;907:35;904:55;;;955:1;952;945:12;904:55;1019:2;1012:4;1004:6;1000:17;993:4;985:6;981:17;968:54;1066:1;1059:4;1054:2;1046:6;1042:15;1038:26;1031:37;1086:6;1077:15;;;;;;380:718;;;;:::o;1103:186::-;1162:6;1215:2;1203:9;1194:7;1190:23;1186:32;1183:52;;;1231:1;1228;1221:12;1183:52;1254:29;1273:9;1254:29;:::i;:::-;1244:39;1103:186;-1:-1:-1;;;1103:186:12:o;1294:260::-;1362:6;1370;1423:2;1411:9;1402:7;1398:23;1394:32;1391:52;;;1439:1;1436;1429:12;1391:52;1462:29;1481:9;1462:29;:::i;:::-;1452:39;;1510:38;1544:2;1533:9;1529:18;1510:38;:::i;:::-;1500:48;;1294:260;;;;;:::o;1559:328::-;1636:6;1644;1652;1705:2;1693:9;1684:7;1680:23;1676:32;1673:52;;;1721:1;1718;1711:12;1673:52;1744:29;1763:9;1744:29;:::i;:::-;1734:39;;1792:38;1826:2;1815:9;1811:18;1792:38;:::i;:::-;1782:48;;1877:2;1866:9;1862:18;1849:32;1839:42;;1559:328;;;;;:::o;1892:537::-;1987:6;1995;2003;2011;2064:3;2052:9;2043:7;2039:23;2035:33;2032:53;;;2081:1;2078;2071:12;2032:53;2104:29;2123:9;2104:29;:::i;:::-;2094:39;;2152:38;2186:2;2175:9;2171:18;2152:38;:::i;:::-;2142:48;;2237:2;2226:9;2222:18;2209:32;2199:42;;2292:2;2281:9;2277:18;2264:32;2319:18;2311:6;2308:30;2305:50;;;2351:1;2348;2341:12;2305:50;2374:49;2415:7;2406:6;2395:9;2391:22;2374:49;:::i;:::-;2364:59;;;1892:537;;;;;;;:::o;2434:254::-;2499:6;2507;2560:2;2548:9;2539:7;2535:23;2531:32;2528:52;;;2576:1;2573;2566:12;2528:52;2599:29;2618:9;2599:29;:::i;:::-;2589:39;;2647:35;2678:2;2667:9;2663:18;2647:35;:::i;2693:254::-;2761:6;2769;2822:2;2810:9;2801:7;2797:23;2793:32;2790:52;;;2838:1;2835;2828:12;2790:52;2861:29;2880:9;2861:29;:::i;:::-;2851:39;2937:2;2922:18;;;;2909:32;;-1:-1:-1;;;2693:254:12:o;2952:615::-;3038:6;3046;3099:2;3087:9;3078:7;3074:23;3070:32;3067:52;;;3115:1;3112;3105:12;3067:52;3155:9;3142:23;3184:18;3225:2;3217:6;3214:14;3211:34;;;3241:1;3238;3231:12;3211:34;3279:6;3268:9;3264:22;3254:32;;3324:7;3317:4;3313:2;3309:13;3305:27;3295:55;;3346:1;3343;3336:12;3295:55;3386:2;3373:16;3412:2;3404:6;3401:14;3398:34;;;3428:1;3425;3418:12;3398:34;3481:7;3476:2;3466:6;3463:1;3459:14;3455:2;3451:23;3447:32;3444:45;3441:65;;;3502:1;3499;3492:12;3441:65;3533:2;3525:11;;;;;3555:6;;-1:-1:-1;2952:615:12;;-1:-1:-1;;;;2952:615:12:o;3572:248::-;3634:6;3642;3695:2;3683:9;3674:7;3670:23;3666:32;3663:52;;;3711:1;3708;3701:12;3663:52;3734:26;3750:9;3734:26;:::i;3825:245::-;3883:6;3936:2;3924:9;3915:7;3911:23;3907:32;3904:52;;;3952:1;3949;3942:12;3904:52;3991:9;3978:23;4010:30;4034:5;4010:30;:::i;4075:249::-;4144:6;4197:2;4185:9;4176:7;4172:23;4168:32;4165:52;;;4213:1;4210;4203:12;4165:52;4245:9;4239:16;4264:30;4288:5;4264:30;:::i;4329:592::-;4400:6;4408;4461:2;4449:9;4440:7;4436:23;4432:32;4429:52;;;4477:1;4474;4467:12;4429:52;4517:9;4504:23;4546:18;4587:2;4579:6;4576:14;4573:34;;;4603:1;4600;4593:12;4573:34;4641:6;4630:9;4626:22;4616:32;;4686:7;4679:4;4675:2;4671:13;4667:27;4657:55;;4708:1;4705;4698:12;4657:55;4748:2;4735:16;4774:2;4766:6;4763:14;4760:34;;;4790:1;4787;4780:12;4760:34;4835:7;4830:2;4821:6;4817:2;4813:15;4809:24;4806:37;4803:57;;;4856:1;4853;4846:12;4926:180;4985:6;5038:2;5026:9;5017:7;5013:23;5009:32;5006:52;;;5054:1;5051;5044:12;5006:52;-1:-1:-1;5077:23:12;;4926:180;-1:-1:-1;4926:180:12:o;5111:456::-;5197:6;5205;5213;5266:2;5254:9;5245:7;5241:23;5237:32;5234:52;;;5282:1;5279;5272:12;5234:52;5318:9;5305:23;5295:33;;5375:2;5364:9;5360:18;5347:32;5337:42;;5430:2;5419:9;5415:18;5402:32;5457:18;5449:6;5446:30;5443:50;;;5489:1;5486;5479:12;5443:50;5512:49;5553:7;5544:6;5533:9;5529:22;5512:49;:::i;:::-;5502:59;;;5111:456;;;;;:::o;5572:257::-;5613:3;5651:5;5645:12;5678:6;5673:3;5666:19;5694:63;5750:6;5743:4;5738:3;5734:14;5727:4;5720:5;5716:16;5694:63;:::i;:::-;5811:2;5790:15;-1:-1:-1;;5786:29:12;5777:39;;;;5818:4;5773:50;;5572:257;-1:-1:-1;;5572:257:12:o;5834:185::-;5876:3;5914:5;5908:12;5929:52;5974:6;5969:3;5962:4;5955:5;5951:16;5929:52;:::i;:::-;5997:16;;;;;5834:185;-1:-1:-1;;5834:185:12:o;6142:1358::-;6419:3;6448:1;6481:6;6475:13;6511:3;6533:1;6561:9;6557:2;6553:18;6543:28;;6621:2;6610:9;6606:18;6643;6633:61;;6687:4;6679:6;6675:17;6665:27;;6633:61;6713:2;6761;6753:6;6750:14;6730:18;6727:38;6724:222;;;-1:-1:-1;;;6795:3:12;6788:90;6901:4;6898:1;6891:15;6931:4;6926:3;6919:17;6724:222;6962:18;6989:104;;;;7107:1;7102:320;;;;6955:467;;6989:104;-1:-1:-1;;7022:24:12;;7010:37;;7067:16;;;;-1:-1:-1;6989:104:12;;7102:320;18606:1;18599:14;;;18643:4;18630:18;;7197:1;7211:165;7225:6;7222:1;7219:13;7211:165;;;7303:14;;7290:11;;;7283:35;7346:16;;;;7240:10;;7211:165;;;7215:3;;7405:6;7400:3;7396:16;7389:23;;6955:467;;;;;;;7438:56;7463:30;7489:3;7481:6;7463:30;:::i;:::-;6096:7;6084:20;;6129:1;6120:11;;6024:113;7438:56;7431:63;6142:1358;-1:-1:-1;;;;;6142:1358:12:o;8121:511::-;8315:4;-1:-1:-1;;;;;8425:2:12;8417:6;8413:15;8402:9;8395:34;8477:2;8469:6;8465:15;8460:2;8449:9;8445:18;8438:43;;8517:6;8512:2;8501:9;8497:18;8490:34;8560:3;8555:2;8544:9;8540:18;8533:31;8581:45;8621:3;8610:9;8606:19;8598:6;8581:45;:::i;:::-;8573:53;8121:511;-1:-1:-1;;;;;;8121:511:12:o;9534:219::-;9683:2;9672:9;9665:21;9646:4;9703:44;9743:2;9732:9;9728:18;9720:6;9703:44;:::i;18659:128::-;18699:3;18730:1;18726:6;18723:1;18720:13;18717:39;;;18736:18;;:::i;:::-;-1:-1:-1;18772:9:12;;18659:128::o;18792:120::-;18832:1;18858;18848:35;;18863:18;;:::i;:::-;-1:-1:-1;18897:9:12;;18792:120::o;18917:168::-;18957:7;19023:1;19019;19015:6;19011:14;19008:1;19005:21;19000:1;18993:9;18986:17;18982:45;18979:71;;;19030:18;;:::i;:::-;-1:-1:-1;19070:9:12;;18917:168::o;19090:125::-;19130:4;19158:1;19155;19152:8;19149:34;;;19163:18;;:::i;:::-;-1:-1:-1;19200:9:12;;19090:125::o;19220:258::-;19292:1;19302:113;19316:6;19313:1;19310:13;19302:113;;;19392:11;;;19386:18;19373:11;;;19366:39;19338:2;19331:10;19302:113;;;19433:6;19430:1;19427:13;19424:48;;;-1:-1:-1;;19468:1:12;19450:16;;19443:27;19220:258::o;19483:437::-;19562:1;19558:12;;;;19605;;;19626:61;;19680:4;19672:6;19668:17;19658:27;;19626:61;19733:2;19725:6;19722:14;19702:18;19699:38;19696:218;;;-1:-1:-1;;;19767:1:12;19760:88;19871:4;19868:1;19861:15;19899:4;19896:1;19889:15;19696:218;;19483:437;;;:::o;19925:135::-;19964:3;-1:-1:-1;;19985:17:12;;19982:43;;;20005:18;;:::i;:::-;-1:-1:-1;20052:1:12;20041:13;;19925:135::o;20065:112::-;20097:1;20123;20113:35;;20128:18;;:::i;:::-;-1:-1:-1;20162:9:12;;20065:112::o;20182:184::-;-1:-1:-1;;;20231:1:12;20224:88;20331:4;20328:1;20321:15;20355:4;20352:1;20345:15;20371:184;-1:-1:-1;;;20420:1:12;20413:88;20520:4;20517:1;20510:15;20544:4;20541:1;20534:15;20560:184;-1:-1:-1;;;20609:1:12;20602:88;20709:4;20706:1;20699:15;20733:4;20730:1;20723:15;20749:184;-1:-1:-1;;;20798:1:12;20791:88;20898:4;20895:1;20888:15;20922:4;20919:1;20912:15;20938:184;-1:-1:-1;;;20987:1:12;20980:88;21087:4;21084:1;21077:15;21111:4;21108:1;21101:15;21127:177;-1:-1:-1;;;;;;21205:5:12;21201:78;21194:5;21191:89;21181:117;;21294:1;21291;21284:12
Swarm Source
ipfs://7fbfbb68aae829df1e65a521a1cb94e04b1d6f974e49c3ebe0712c24c48b08f9
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.