CRC-721
Overview
Max Total Supply
2,500 FMG
Holders
315
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
0 FMGLoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
FuryMouseGang
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-07-09 */ // File: SafeMathLite.sol pragma solidity ^0.8.4; library SafeMathLite{ /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } } // File: SafePct.sol pragma solidity ^0.8.0; library SafePct { using SafeMathLite for uint256; /** * Requirements: * * - intermediate operations must revert on overflow */ function mulDiv(uint256 x, uint256 y, uint256 z) internal pure returns (uint256) { require(z > 0, "Division by zero"); if (x == 0) return 0; uint256 xy = x * y; if (xy / x == y) { // no overflow happened - same as in SafeMath mul return xy / z; } //slither-disable-next-line divide-before-multiply uint256 a = x / z; uint256 b = x % z; // x = a * z + b //slither-disable-next-line divide-before-multiply uint256 c = y / z; uint256 d = y % z; // y = c * z + d return (a.mul(c).mul(z)).add(a.mul(d)).add(b.mul(c)).add(b.mul(d).div(z)); } } // File: IDrop.sol pragma solidity ^0.8.0; interface IDrop { struct Info { uint256 regularCost; uint256 memberCost; uint256 whitelistCost; uint256 maxSupply; uint256 totalSupply; uint256 maxMintPerAddress; uint256 maxMintPerTx; } function mintCost(address _minter) external view returns(uint256); function canMint(address _minter) external view returns (uint256); function mint(uint256 _amount) external payable; function maxSupply() external view returns (uint256); function getInfo() external view returns (Info memory); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/utils/escrow/Escrow.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/escrow/Escrow.sol) pragma solidity ^0.8.0; /** * @title Escrow * @dev Base escrow contract, holds funds designated for a payee until they * withdraw them. * * Intended usage: This contract (and derived escrow contracts) should be a * standalone contract, that only interacts with the contract that instantiated * it. That way, it is guaranteed that all Ether will be handled according to * the `Escrow` rules, and there is no need to check for payable functions or * transfers in the inheritance tree. The contract that uses the escrow as its * payment method should be its owner, and provide public methods redirecting * to the escrow's deposit and withdraw. */ contract Escrow is Ownable { using Address for address payable; event Deposited(address indexed payee, uint256 weiAmount); event Withdrawn(address indexed payee, uint256 weiAmount); mapping(address => uint256) private _deposits; function depositsOf(address payee) public view returns (uint256) { return _deposits[payee]; } /** * @dev Stores the sent amount as credit to be withdrawn. * @param payee The destination address of the funds. * * Emits a {Deposited} event. */ function deposit(address payee) public payable virtual onlyOwner { uint256 amount = msg.value; _deposits[payee] += amount; emit Deposited(payee, amount); } /** * @dev Withdraw accumulated balance for a payee, forwarding all gas to the * recipient. * * WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities. * Make sure you trust the recipient, or are either following the * checks-effects-interactions pattern or using {ReentrancyGuard}. * * @param payee The address whose funds will be withdrawn and transferred to. * * Emits a {Withdrawn} event. */ function withdraw(address payable payee) public virtual onlyOwner { uint256 payment = _deposits[payee]; _deposits[payee] = 0; payee.sendValue(payment); emit Withdrawn(payee, payment); } } // File: @openzeppelin/contracts/security/PullPayment.sol // OpenZeppelin Contracts (last updated v4.7.0) (security/PullPayment.sol) pragma solidity ^0.8.0; /** * @dev Simple implementation of a * https://consensys.github.io/smart-contract-best-practices/recommendations/#favor-pull-over-push-for-external-calls[pull-payment] * strategy, where the paying contract doesn't interact directly with the * receiver account, which must withdraw its payments itself. * * Pull-payments are often considered the best practice when it comes to sending * Ether, security-wise. It prevents recipients from blocking execution, and * eliminates reentrancy concerns. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. * * To use, derive from the `PullPayment` contract, and use {_asyncTransfer} * instead of Solidity's `transfer` function. Payees can query their due * payments with {payments}, and retrieve them with {withdrawPayments}. */ abstract contract PullPayment { Escrow private immutable _escrow; constructor() { _escrow = new Escrow(); } /** * @dev Withdraw accumulated payments, forwarding all gas to the recipient. * * Note that _any_ account can call this function, not just the `payee`. * This means that contracts unaware of the `PullPayment` protocol can still * receive funds this way, by having a separate account call * {withdrawPayments}. * * WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities. * Make sure you trust the recipient, or are either following the * checks-effects-interactions pattern or using {ReentrancyGuard}. * * @param payee Whose payments will be withdrawn. * * Causes the `escrow` to emit a {Withdrawn} event. */ function withdrawPayments(address payable payee) public virtual { _escrow.withdraw(payee); } /** * @dev Returns the payments owed to an address. * @param dest The creditor's address. */ function payments(address dest) public view returns (uint256) { return _escrow.depositsOf(dest); } /** * @dev Called by the payer to store the sent amount as credit to be pulled. * Funds sent in this way are stored in an intermediate {Escrow} contract, so * there is no danger of them being spent before withdrawal. * * @param dest The destination address of the funds. * @param amount The amount to transfer. * * Causes the `escrow` to emit a {Deposited} event. */ function _asyncTransfer(address dest, uint256 amount) internal virtual { _escrow.deposit{value: amount}(dest); } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // 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); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @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; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @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); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @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: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); 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: caller is not token 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: caller is not token 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {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 an {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 Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @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 { /// @solidity memory-safe-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: FuryMouseGang.sol //SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Market { function isMember(address user) public virtual view returns(bool); function addToEscrow(address _address) external virtual payable; } interface IERC1155 { function balanceOf(address account, uint id) external view returns (uint256); } contract FuryMouseGang is ERC721Enumerable, Ownable, IDrop, ReentrancyGuard, PullPayment { using Strings for uint256; using SafePct for uint256; uint256 public _maxSupply = 2500; uint256 public immutable _maxPerTx = 15; uint256 public immutable _maxWL = 5; uint256 public mouseCounter; uint256 public fmPrice = 450 ether; uint256 public publicPrice = 500 ether; uint256 public premintPrice = 425 ether; uint256 public supplyRemaining; uint public startSaleTimestamp = 1657393200; bool public freeze; uint128 constant internal SCALE = 10000; uint128 constant internal FEE = 1500; uint128 constant internal devFEE = 1000; string public baseURI; Market contractMarket; address devAddress; mapping(address => bool) public whitelist; mapping(bytes32 => Sale) public sale; mapping(address => uint256) public presaleMintedBalance; struct Sale { uint128 saleStartTime; uint128 saleEndTime; uint price; bool paused; } uint secondDropTimestamp; event SaleChange(bytes32 _name, Sale _sale); event mouseMinted(address _minter, uint[] _tokenIDs); constructor(string memory _baseURI, Market _marketAddress) ERC721("Fury Mouse Gang", "FMG") { setBaseURI(_baseURI); setEBMarket(_marketAddress); supplyRemaining = _maxSupply; devAddress = msg.sender; } //******************************// // PUBLIC VIEW // //******************************// function isEBMember(address _user) public view returns (bool) { return contractMarket.isMember(_user); } function isWhitelist(address _user) public view returns (bool) { return whitelist[_user]; } //************************// // SALES // //************************// modifier isOpen(uint256 _count) { require( block.timestamp >= startSaleTimestamp, "SALE IS NOT OPEN" ); require( _count > 0, "CANT MINT 0 NFT" ); require( _count <= _maxPerTx, "MAX PER TX IS 15" ); require( totalSupply() + _count <= _maxSupply, "SOLD OUT, TRY TO MINT LESS" ); require( _count <= supplyRemaining, "SOLDOUT" ); require( supplyRemaining > 0, "COLLECTION ALREADY SOLDOUT" ); uint price; if(isWhitelist(msg.sender) && presaleMintedBalance[msg.sender] + _count <= _maxWL) { price = premintPrice; } else if (isEBMember(msg.sender)) { price = fmPrice; } else { price = publicPrice; } require( msg.value >= price * _count, "INSUFFICIENT FUNDS" ); _; } modifier isNotFreeze { require( !freeze, "ERROR: MINT IS FROZEN" ); _; } //*************************// // SETTER // //*************************// function batchWhitelist(address[] memory _whitelistUser) external onlyOwner { for(uint256 i = 0; i < _whitelistUser.length; i++ ) { whitelist[_whitelistUser[i]] = true; } } function setPrices(uint256 _newPublicPrice, uint256 _newFMPrice) external onlyOwner { fmPrice = _newFMPrice; publicPrice = _newPublicPrice; } function setEBMarket(Market _marketAddress) public onlyOwner { contractMarket = _marketAddress; } function freezeNow() external onlyOwner isNotFreeze { freeze = true; } function unFreezeNow() external onlyOwner { require( !freeze, "ERROR: MINT IS NOT FROZEN" ); freeze = false; } //*****************************// // MINT LOGIC // //*****************************// function teamMint(uint _amount) external onlyOwner { for(uint i = 0; i < _amount; i++){ supplyRemaining--; mouseCounter++; _safeMint(msg.sender, mouseCounter); } } function _mint(uint _amount) internal isOpen(_amount) isNotFreeze nonReentrant { uint[] memory tokenIdsBought = new uint[](_amount); uint totalCost; if(isWhitelist(msg.sender) && presaleMintedBalance[msg.sender] + _amount <= _maxWL) { totalCost = premintPrice * _amount; presaleMintedBalance[msg.sender] += _amount; } else if (isEBMember(msg.sender)) { totalCost = fmPrice * _amount; } else { totalCost = publicPrice * _amount; } uint mintFee = totalCost.mulDiv(FEE, SCALE); uint devFee = totalCost.mulDiv(devFEE, SCALE); (bool success, ) = devAddress.call{value: devFee}(""); require(success, "Transfer failed."); contractMarket.addToEscrow{value: mintFee}(0x454cfAa623A629CC0b4017aEb85d54C42e91479d); for(uint i = 0; i < _amount; i++){ mouseCounter++; supplyRemaining--; tokenIdsBought[i] = mouseCounter; _safeMint(msg.sender, mouseCounter); } emit mouseMinted(msg.sender, tokenIdsBought); } //***************************// // METADATA // //***************************// function tokenURI(uint _tokenId) public view virtual override returns (string memory) { require(_exists(_tokenId),"ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = string(abi.encodePacked(baseURI, Strings.toString(_tokenId),".json")); return _tokenURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } //************************// // IDROP // //************************// function mintCost(address _minter) external override view returns (uint256) { if(isWhitelist(_minter) && presaleMintedBalance[_minter] < _maxWL) { return premintPrice; } else if (isEBMember(_minter)) { return fmPrice; } else { return publicPrice; } } function maxSupply() external override view returns (uint256) { return _maxSupply; } function canMint(address _minter) external override view returns (uint256) { if(block.timestamp >= startSaleTimestamp) { if(isWhitelist(_minter) && presaleMintedBalance[_minter] < _maxWL) { return (_maxWL - presaleMintedBalance[_minter]); } return (_maxPerTx); } return 0; } function mint(uint256 _amount) external override payable { _mint(_amount); } function getInfo() external view override returns (Info memory){ return (Info(publicPrice, fmPrice, premintPrice, _maxSupply, totalSupply(), _maxSupply, _maxPerTx)); } function _withdrawAll() external onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"contract Market","name":"_marketAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"_name","type":"bytes32"},{"components":[{"internalType":"uint128","name":"saleStartTime","type":"uint128"},{"internalType":"uint128","name":"saleEndTime","type":"uint128"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"bool","name":"paused","type":"bool"}],"indexed":false,"internalType":"struct FuryMouseGang.Sale","name":"_sale","type":"tuple"}],"name":"SaleChange","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"_tokenIDs","type":"uint256[]"}],"name":"mouseMinted","type":"event"},{"inputs":[],"name":"_maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxWL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelistUser","type":"address[]"}],"name":"batchWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"canMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fmPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeze","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freezeNow","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":[],"name":"getInfo","outputs":[{"components":[{"internalType":"uint256","name":"regularCost","type":"uint256"},{"internalType":"uint256","name":"memberCost","type":"uint256"},{"internalType":"uint256","name":"whitelistCost","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"uint256","name":"totalSupply","type":"uint256"},{"internalType":"uint256","name":"maxMintPerAddress","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"internalType":"struct IDrop.Info","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isEBMember","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_minter","type":"address"}],"name":"mintCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mouseCounter","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"address","name":"dest","type":"address"}],"name":"payments","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"bytes32","name":"","type":"bytes32"}],"name":"sale","outputs":[{"internalType":"uint128","name":"saleStartTime","type":"uint128"},{"internalType":"uint128","name":"saleEndTime","type":"uint128"},{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"bool","name":"paused","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract Market","name":"_marketAddress","type":"address"}],"name":"setEBMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicPrice","type":"uint256"},{"internalType":"uint256","name":"_newFMPrice","type":"uint256"}],"name":"setPrices","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSaleTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supplyRemaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unFreezeNow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"payee","type":"address"}],"name":"withdrawPayments","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e06040526109c4600c55600f60a0819052600560c0526818650127cc3dc80000600e55681b1ae4d6e2ef500000905568170a0f5040e50400006010556362c9d0306012553480156200005157600080fd5b5060405162003bf638038062003bf6833981016040819052620000749162000347565b604080518082018252600f81526e46757279204d6f7573652047616e6760881b602080830191825283518085019094526003845262464d4760e81b908401528151919291620000c69160009162000276565b508051620000dc90600190602084019062000276565b505050620000f9620000f36200017060201b60201c565b62000174565b6001600b556040516200010c9062000305565b604051809103906000f08015801562000129573d6000803e3d6000fd5b5060601b6001600160601b0319166080526200014582620001c6565b6200015081620001e9565b5050600c54601155601680546001600160a01b0319163317905562000485565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001d062000215565b8051620001e590601490602084019062000276565b5050565b620001f362000215565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b03163314620002745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b828054620002849062000432565b90600052602060002090601f016020900481019282620002a85760008555620002f3565b82601f10620002c357805160ff1916838001178555620002f3565b82800160010185558215620002f3579182015b82811115620002f3578251825591602001919060010190620002d6565b506200030192915062000313565b5090565b610588806200366e83390190565b5b8082111562000301576000815560010162000314565b80516001600160a01b03811681146200034257600080fd5b919050565b600080604083850312156200035a578182fd5b82516001600160401b038082111562000371578384fd5b818501915085601f83011262000385578384fd5b8151818111156200039a576200039a6200046f565b604051601f8201601f19908116603f01168101908382118183101715620003c557620003c56200046f565b81604052828152602093508884848701011115620003e1578687fd5b8691505b82821015620004045784820184015181830185015290830190620003e5565b828211156200041557868484830101525b9550620004279150508582016200032a565b925050509250929050565b600181811c908216806200044757607f821691505b602082108114156200046957634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160c051613177620004f7600039600081816108e401528181610c27015281816113200152818161136501528181611c8e0152611e500152600081816107e5015281816110200152818161138c0152611b16015260008181610d87015261152a01526131776000f3fe6080604052600436106102cd5760003560e01c806370a0823111610175578063b70d677d116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610926578063eb9372fa1461096f578063ed3d161d14610984578063f2fde38b1461099a57600080fd5b8063d5abeb01146108bd578063dc52c3c0146108d2578063e2982c211461090657600080fd5b8063b70d677d14610807578063b88d4fde1461081d578063c2ba47441461083d578063c683630d1461085d578063c87b56dd1461087d578063cb4ed1761461089d57600080fd5b80639b19251a1161012e5780639b19251a1461073a5780639eb209dd1461076a578063a0712d681461078a578063a22cb4651461079d578063a945bf80146107bd578063ab5e246f146107d357600080fd5b806370a08231146106a7578063715018a6146106c7578063801d8c9a146106dc5780638ac8f1dd146106f25780638da5cb5b1461070757806395d89b411461072557600080fd5b80632fbba115116102345780634672d7bf116101ed5780635a9b0b89116101c75780635a9b0b89146105ed57806362a5af3b146106585780636352211e146106725780636c0360eb1461069257600080fd5b80634672d7bf1461052d5780634f6ccce7146105ad57806355f804b3146105cd57600080fd5b80632fbba1151461048257806331b3eb94146104a257806339ee0661146104c25780633d443782146104e25780633e38fe80146104f757806342842e0e1461050d57600080fd5b806322f4596f1161028657806322f4596f146103c957806323b872dd146103df5780632acc659e146103ff5780632d72cc281461041f5780632e221808146104355780632f745c591461046257600080fd5b806301ffc9a7146102d957806305fefda71461030e57806306fdde0314610330578063081812fc14610352578063095ea7b31461038a57806318160ddd146103aa57600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102f96102f4366004612c87565b6109ba565b60405190151581526020015b60405180910390f35b34801561031a57600080fd5b5061032e610329366004612d1d565b6109e5565b005b34801561033c57600080fd5b506103456109f5565b6040516103059190612ed3565b34801561035e57600080fd5b5061037261036d366004612c6f565b610a87565b6040516001600160a01b039091168152602001610305565b34801561039657600080fd5b5061032e6103a5366004612b74565b610aae565b3480156103b657600080fd5b506008545b604051908152602001610305565b3480156103d557600080fd5b506103bb600c5481565b3480156103eb57600080fd5b5061032e6103fa366004612a8a565b610bc9565b34801561040b57600080fd5b506103bb61041a366004612a36565b610bfa565b34801561042b57600080fd5b506103bb600d5481565b34801561044157600080fd5b506103bb610450366004612a36565b60196020526000908152604090205481565b34801561046e57600080fd5b506103bb61047d366004612b74565b610c73565b34801561048e57600080fd5b5061032e61049d366004612c6f565b610d09565b3480156104ae57600080fd5b5061032e6104bd366004612a36565b610d68565b3480156104ce57600080fd5b5061032e6104dd366004612b9f565b610de6565b3480156104ee57600080fd5b5061032e610e64565b34801561050357600080fd5b506103bb60115481565b34801561051957600080fd5b5061032e610528366004612a8a565b610ec6565b34801561053957600080fd5b50610580610548366004612c6f565b6018602052600090815260409020805460018201546002909201546001600160801b0380831693600160801b90930416919060ff1684565b604080516001600160801b0395861681529490931660208501529183015215156060820152608001610305565b3480156105b957600080fd5b506103bb6105c8366004612c6f565b610ee1565b3480156105d957600080fd5b5061032e6105e8366004612cbf565b610f82565b3480156105f957600080fd5b50610602610f9d565b6040516103059190600060e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015292915050565b34801561066457600080fd5b506013546102f99060ff1681565b34801561067e57600080fd5b5061037261068d366004612c6f565b611047565b34801561069e57600080fd5b506103456110a7565b3480156106b357600080fd5b506103bb6106c2366004612a36565b611135565b3480156106d357600080fd5b5061032e6111bb565b3480156106e857600080fd5b506103bb60105481565b3480156106fe57600080fd5b5061032e6111cf565b34801561071357600080fd5b50600a546001600160a01b0316610372565b34801561073157600080fd5b50610345611265565b34801561074657600080fd5b506102f9610755366004612a36565b60176020526000908152604090205460ff1681565b34801561077657600080fd5b5061032e610785366004612a36565b611274565b61032e610798366004612c6f565b61129e565b3480156107a957600080fd5b5061032e6107b8366004612b47565b6112a7565b3480156107c957600080fd5b506103bb600f5481565b3480156107df57600080fd5b506103bb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561081357600080fd5b506103bb600e5481565b34801561082957600080fd5b5061032e610838366004612aca565b6112b2565b34801561084957600080fd5b506103bb610858366004612a36565b6112ea565b34801561086957600080fd5b506102f9610878366004612a36565b6113b8565b34801561088957600080fd5b50610345610898366004612c6f565b6113d6565b3480156108a957600080fd5b506102f96108b8366004612a36565b61148a565b3480156108c957600080fd5b50600c546103bb565b3480156108de57600080fd5b506103bb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561091257600080fd5b506103bb610921366004612a36565b611508565b34801561093257600080fd5b506102f9610941366004612a52565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561097b57600080fd5b5061032e6115a6565b34801561099057600080fd5b506103bb60125481565b3480156109a657600080fd5b5061032e6109b5366004612a36565b61160d565b60006001600160e01b0319821663780e9d6360e01b14806109df57506109df82611683565b92915050565b6109ed6116d3565b600e55600f55565b606060008054610a049061305c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a309061305c565b8015610a7d5780601f10610a5257610100808354040283529160200191610a7d565b820191906000526020600020905b815481529060010190602001808311610a6057829003601f168201915b5050505050905090565b6000610a928261172d565b506000908152600460205260409020546001600160a01b031690565b6000610ab982611047565b9050806001600160a01b0316836001600160a01b03161415610b2c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610b485750610b488133610941565b610bba5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610b23565b610bc4838361178c565b505050565b610bd333826117fa565b610bef5760405162461bcd60e51b8152600401610b2390612f38565b610bc4838383611879565b6000610c05826113b8565b8015610c4857506001600160a01b0382166000908152601960205260409020547f0000000000000000000000000000000000000000000000000000000000000000115b15610c5557505060105490565b610c5e8261148a565b15610c6b575050600e5490565b5050600f5490565b6000610c7e83611135565b8210610ce05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b23565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d116116d3565b60005b81811015610d645760118054906000610d2c83613045565b9091555050600d8054906000610d4183613097565b9190505550610d5233600d54611a20565b80610d5c81613097565b915050610d14565b5050565b6040516351cff8d960e01b81526001600160a01b0382811660048301527f000000000000000000000000000000000000000000000000000000000000000016906351cff8d990602401600060405180830381600087803b158015610dcb57600080fd5b505af1158015610ddf573d6000803e3d6000fd5b5050505050565b610dee6116d3565b60005b8151811015610d6457600160176000848481518110610e2057634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e5c81613097565b915050610df1565b610e6c6116d3565b60135460ff1615610eb75760405162461bcd60e51b815260206004820152601560248201527422a92927a91d1026a4a72a1024a990232927ad22a760591b6044820152606401610b23565b6013805460ff19166001179055565b610bc4838383604051806020016040528060008152506112b2565b6000610eec60085490565b8210610f4f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b23565b60088281548110610f7057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610f8a6116d3565b8051610d64906014906020840190612945565b610fdd6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040518060e00160405280600f548152602001600e5481526020016010548152602001600c54815260200161101160085490565b8152602001600c5481526020017f0000000000000000000000000000000000000000000000000000000000000000815250905090565b6000818152600260205260408120546001600160a01b0316806109df5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b23565b601480546110b49061305c565b80601f01602080910402602001604051908101604052809291908181526020018280546110e09061305c565b801561112d5780601f106111025761010080835404028352916020019161112d565b820191906000526020600020905b81548152906001019060200180831161111057829003601f168201915b505050505081565b60006001600160a01b03821661119f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610b23565b506001600160a01b031660009081526003602052604090205490565b6111c36116d3565b6111cd6000611a3a565b565b6111d76116d3565b604051600090339047908381818185875af1925050503d8060008114611219576040519150601f19603f3d011682016040523d82523d6000602084013e61121e565b606091505b50509050806112625760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b23565b50565b606060018054610a049061305c565b61127c6116d3565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b61126281611a8c565b610d643383836120f1565b6112bc33836117fa565b6112d85760405162461bcd60e51b8152600401610b2390612f38565b6112e4848484846121c0565b50505050565b600060125442106113b0576112fe826113b8565b801561134157506001600160a01b0382166000908152601960205260409020547f0000000000000000000000000000000000000000000000000000000000000000115b15611389576001600160a01b0382166000908152601960205260409020546109df907f0000000000000000000000000000000000000000000000000000000000000000613002565b507f0000000000000000000000000000000000000000000000000000000000000000919050565b506000919050565b6001600160a01b031660009081526017602052604090205460ff1690565b6000818152600260205260409020546060906001600160a01b03166114555760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b23565b60006014611462846121f3565b604051602001611473929190612d86565b60408051601f198184030181529190529392505050565b60155460405163288c314960e21b81526001600160a01b038381166004830152600092169063a230c5249060240160206040518083038186803b1580156114d057600080fd5b505afa1580156114e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109df9190612c53565b6040516371d4ed8d60e11b81526001600160a01b0382811660048301526000917f00000000000000000000000000000000000000000000000000000000000000009091169063e3a9db1a9060240160206040518083038186803b15801561156e57600080fd5b505afa158015611582573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109df9190612d05565b6115ae6116d3565b60135460ff16156116015760405162461bcd60e51b815260206004820152601960248201527f4552524f523a204d494e54204953204e4f542046524f5a454e000000000000006044820152606401610b23565b6013805460ff19169055565b6116156116d3565b6001600160a01b03811661167a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b23565b61126281611a3a565b60006001600160e01b031982166380ac58cd60e01b14806116b457506001600160e01b03198216635b5e139f60e01b145b806109df57506301ffc9a760e01b6001600160e01b03198316146109df565b600a546001600160a01b031633146111cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b6000818152600260205260409020546001600160a01b03166112625760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b23565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117c182611047565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061180683611047565b9050806001600160a01b0316846001600160a01b0316148061184d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806118715750836001600160a01b031661186684610a87565b6001600160a01b0316145b949350505050565b826001600160a01b031661188c82611047565b6001600160a01b0316146118f05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610b23565b6001600160a01b0382166119525760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b23565b61195d83838361230d565b61196860008261178c565b6001600160a01b0383166000908152600360205260408120805460019290611991908490613002565b90915550506001600160a01b03821660009081526003602052604081208054600192906119bf908490612fb7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d648282604051806020016040528060008152506123c5565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80601254421015611ad25760405162461bcd60e51b815260206004820152601060248201526f29a0a6229024a9902727aa1027a822a760811b6044820152606401610b23565b60008111611b145760405162461bcd60e51b815260206004820152600f60248201526e10d053950813525395080c08139195608a1b6044820152606401610b23565b7f0000000000000000000000000000000000000000000000000000000000000000811115611b775760405162461bcd60e51b815260206004820152601060248201526f4d41582050455220545820495320313560801b6044820152606401610b23565b600c5481611b8460085490565b611b8e9190612fb7565b1115611bdc5760405162461bcd60e51b815260206004820152601a60248201527f534f4c44204f55542c2054525920544f204d494e54204c4553530000000000006044820152606401610b23565b601154811115611c185760405162461bcd60e51b815260206004820152600760248201526614d3d31113d55560ca1b6044820152606401610b23565b600060115411611c6a5760405162461bcd60e51b815260206004820152601a60248201527f434f4c4c454354494f4e20414c524541445920534f4c444f55540000000000006044820152606401610b23565b6000611c75336113b8565b8015611cbc5750336000908152601960205260409020547f000000000000000000000000000000000000000000000000000000000000000090611cb9908490612fb7565b11155b15611cca5750601054611ce6565b611cd33361148a565b15611ce15750600e54611ce6565b50600f545b611cf08282612fe3565b341015611d345760405162461bcd60e51b8152602060048201526012602482015271494e53554646494349454e542046554e445360701b6044820152606401610b23565b60135460ff1615611d7f5760405162461bcd60e51b815260206004820152601560248201527422a92927a91d1026a4a72a1024a990232927ad22a760591b6044820152606401610b23565b6002600b541415611dd25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b23565b6002600b5560008367ffffffffffffffff811115611e0057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611e29578160200160208202803683370190505b5090506000611e37336113b8565b8015611e7e5750336000908152601960205260409020547f000000000000000000000000000000000000000000000000000000000000000090611e7b908790612fb7565b11155b15611ec05784601054611e919190612fe3565b33600090815260196020526040812080549293508792909190611eb5908490612fb7565b90915550611ef49050565b611ec93361148a565b15611ee35784600e54611edc9190612fe3565b9050611ef4565b84600f54611ef19190612fe3565b90505b6000611f05826105dc6127106123f8565b90506000611f18836103e86127106123f8565b6016546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114611f6a576040519150601f19603f3d011682016040523d82523d6000602084013e611f6f565b606091505b5050905080611fb35760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b23565b601554604051634065da6360e01b815273454cfaa623a629cc0b4017aeb85d54c42e91479d60048201526001600160a01b0390911690634065da639085906024016000604051808303818588803b15801561200d57600080fd5b505af1158015612021573d6000803e3d6000fd5b505050505060005b888110156120a857600d805490600061204183613097565b90915550506011805490600061205683613045565b9190505550600d5486828151811061207e57634e487b7160e01b600052603260045260246000fd5b60200260200101818152505061209633600d54611a20565b806120a081613097565b915050612029565b507f2b60777739058f365ca1b8af8161406ee30f8ce60a47b621ada495df2736da9633866040516120da929190612e7d565b60405180910390a150506001600b55505050505050565b816001600160a01b0316836001600160a01b031614156121535760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b23565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6121cb848484611879565b6121d78484848461250c565b6112e45760405162461bcd60e51b8152600401610b2390612ee6565b6060816122175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612241578061222b81613097565b915061223a9050600a83612fcf565b915061221b565b60008167ffffffffffffffff81111561226a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612294576020820181803683370190505b5090505b8415611871576122a9600183613002565b91506122b6600a866130b2565b6122c1906030612fb7565b60f81b8183815181106122e457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612306600a86612fcf565b9450612298565b6001600160a01b0383166123685761236381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61238b565b816001600160a01b0316836001600160a01b03161461238b5761238b8382612619565b6001600160a01b0382166123a257610bc4816126b6565b826001600160a01b0316826001600160a01b031614610bc457610bc4828261278f565b6123cf83836127d3565b6123dc600084848461250c565b610bc45760405162461bcd60e51b8152600401610b2390612ee6565b600080821161243c5760405162461bcd60e51b815260206004820152601060248201526f4469766973696f6e206279207a65726f60801b6044820152606401610b23565b8361244957506000612505565b60006124558486612fe3565b9050836124628683612fcf565b141561247a576124728382612fcf565b915050612505565b60006124868487612fcf565b9050600061249485886130b2565b905060006124a28688612fcf565b905060006124b087896130b2565b90506124fd6124c9886124c38685612921565b9061292d565b6124f76124d68686612921565b6124f76124e38987612921565b6124f78d6124f18c8b612921565b90612921565b90612939565b955050505050505b9392505050565b60006001600160a01b0384163b1561260e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612550903390899088908890600401612e40565b602060405180830381600087803b15801561256a57600080fd5b505af192505050801561259a575060408051601f3d908101601f1916820190925261259791810190612ca3565b60015b6125f4573d8080156125c8576040519150601f19603f3d011682016040523d82523d6000602084013e6125cd565b606091505b5080516125ec5760405162461bcd60e51b8152600401610b2390612ee6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611871565b506001949350505050565b6000600161262684611135565b6126309190613002565b600083815260076020526040902054909150808214612683576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126c890600190613002565b600083815260096020526040812054600880549394509092849081106126fe57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061272d57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061277357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061279a83611135565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166128295760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b23565b6000818152600260205260409020546001600160a01b03161561288e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b23565b61289a6000838361230d565b6001600160a01b03821660009081526003602052604081208054600192906128c3908490612fb7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006125058284612fe3565b60006125058284612fcf565b60006125058284612fb7565b8280546129519061305c565b90600052602060002090601f01602090048101928261297357600085556129b9565b82601f1061298c57805160ff19168380011785556129b9565b828001600101855582156129b9579182015b828111156129b957825182559160200191906001019061299e565b506129c59291506129c9565b5090565b5b808211156129c557600081556001016129ca565b600067ffffffffffffffff8311156129f8576129f86130f2565b612a0b601f8401601f1916602001612f86565b9050828152838383011115612a1f57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612a47578081fd5b813561250581613108565b60008060408385031215612a64578081fd5b8235612a6f81613108565b91506020830135612a7f81613108565b809150509250929050565b600080600060608486031215612a9e578081fd5b8335612aa981613108565b92506020840135612ab981613108565b929592945050506040919091013590565b60008060008060808587031215612adf578081fd5b8435612aea81613108565b93506020850135612afa81613108565b925060408501359150606085013567ffffffffffffffff811115612b1c578182fd5b8501601f81018713612b2c578182fd5b612b3b878235602084016129de565b91505092959194509250565b60008060408385031215612b59578182fd5b8235612b6481613108565b91506020830135612a7f8161311d565b60008060408385031215612b86578182fd5b8235612b9181613108565b946020939093013593505050565b60006020808385031215612bb1578182fd5b823567ffffffffffffffff80821115612bc8578384fd5b818501915085601f830112612bdb578384fd5b813581811115612bed57612bed6130f2565b8060051b9150612bfe848301612f86565b8181528481019084860184860187018a1015612c18578788fd5b8795505b83861015612c465780359450612c3185613108565b84835260019590950194918601918601612c1c565b5098975050505050505050565b600060208284031215612c64578081fd5b81516125058161311d565b600060208284031215612c80578081fd5b5035919050565b600060208284031215612c98578081fd5b81356125058161312b565b600060208284031215612cb4578081fd5b81516125058161312b565b600060208284031215612cd0578081fd5b813567ffffffffffffffff811115612ce6578182fd5b8201601f81018413612cf6578182fd5b611871848235602084016129de565b600060208284031215612d16578081fd5b5051919050565b60008060408385031215612d2f578182fd5b50508035926020909101359150565b60008151808452612d56816020860160208601613019565b601f01601f19169290920160200192915050565b60008151612d7c818560208601613019565b9290920192915050565b600080845482600182811c915080831680612da257607f831692505b6020808410821415612dc257634e487b7160e01b87526022600452602487fd5b818015612dd65760018114612de757612e13565b60ff19861689528489019650612e13565b60008b815260209020885b86811015612e0b5781548b820152908501908301612df2565b505084890196505b505050505050612e37612e268286612d6a565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e7390830184612d3e565b9695505050505050565b6001600160a01b038316815260406020808301829052835191830182905260009184820191906060850190845b81811015612ec657845183529383019391830191600101612eaa565b5090979650505050505050565b6020815260006125056020830184612d3e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612faf57612faf6130f2565b604052919050565b60008219821115612fca57612fca6130c6565b500190565b600082612fde57612fde6130dc565b500490565b6000816000190483118215151615612ffd57612ffd6130c6565b500290565b600082821015613014576130146130c6565b500390565b60005b8381101561303457818101518382015260200161301c565b838111156112e45750506000910152565b600081613054576130546130c6565b506000190190565b600181811c9082168061307057607f821691505b6020821081141561309157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130ab576130ab6130c6565b5060010190565b6000826130c1576130c16130dc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461126257600080fd5b801515811461126257600080fd5b6001600160e01b03198116811461126257600080fdfea26469706673582212209d84e6c072bed3a2f99efdf60b98f4c944b3a71f1c5822f8f6f52a88f904137064736f6c63430008040033608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61050a8061007e6000396000f3fe6080604052600436106100555760003560e01c806351cff8d91461005a578063715018a61461007c5780638da5cb5b14610091578063e3a9db1a146100be578063f2fde38b14610102578063f340fa0114610122575b600080fd5b34801561006657600080fd5b5061007a610075366004610478565b610135565b005b34801561008857600080fd5b5061007a6101ac565b34801561009d57600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b3480156100ca57600080fd5b506100f46100d9366004610478565b6001600160a01b031660009081526001602052604090205490565b6040519081526020016100b5565b34801561010e57600080fd5b5061007a61011d366004610478565b6101c0565b61007a610130366004610478565b61023e565b61013d6102b0565b6001600160a01b0381166000818152600160205260408120805491905590610165908261030a565b816001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5826040516101a091815260200190565b60405180910390a25050565b6101b46102b0565b6101be6000610428565b565b6101c86102b0565b6001600160a01b0381166102325760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b61023b81610428565b50565b6102466102b0565b6001600160a01b03811660009081526001602052604081208054349283929161027090849061049b565b90915550506040518181526001600160a01b038316907f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c4906020016101a0565b6000546001600160a01b031633146101be5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610229565b8047101561035a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610229565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146103a7576040519150601f19603f3d011682016040523d82523d6000602084013e6103ac565b606091505b50509050806104235760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610229565b505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208284031215610489578081fd5b8135610494816104bf565b9392505050565b600082198211156104ba57634e487b7160e01b81526011600452602481fd5b500190565b6001600160a01b038116811461023b57600080fdfea264697066735822122031bea0fcde35274aa2358ef29690519105d1a9cb7af93f96ce413669ff8475b364736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000007a3cdb2364f92369a602cae81167d0679087e6a3000000000000000000000000000000000000000000000000000000000000000e68747470733a2f2f697066732f2f000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102cd5760003560e01c806370a0823111610175578063b70d677d116100dc578063d5abeb0111610095578063e985e9c51161006f578063e985e9c514610926578063eb9372fa1461096f578063ed3d161d14610984578063f2fde38b1461099a57600080fd5b8063d5abeb01146108bd578063dc52c3c0146108d2578063e2982c211461090657600080fd5b8063b70d677d14610807578063b88d4fde1461081d578063c2ba47441461083d578063c683630d1461085d578063c87b56dd1461087d578063cb4ed1761461089d57600080fd5b80639b19251a1161012e5780639b19251a1461073a5780639eb209dd1461076a578063a0712d681461078a578063a22cb4651461079d578063a945bf80146107bd578063ab5e246f146107d357600080fd5b806370a08231146106a7578063715018a6146106c7578063801d8c9a146106dc5780638ac8f1dd146106f25780638da5cb5b1461070757806395d89b411461072557600080fd5b80632fbba115116102345780634672d7bf116101ed5780635a9b0b89116101c75780635a9b0b89146105ed57806362a5af3b146106585780636352211e146106725780636c0360eb1461069257600080fd5b80634672d7bf1461052d5780634f6ccce7146105ad57806355f804b3146105cd57600080fd5b80632fbba1151461048257806331b3eb94146104a257806339ee0661146104c25780633d443782146104e25780633e38fe80146104f757806342842e0e1461050d57600080fd5b806322f4596f1161028657806322f4596f146103c957806323b872dd146103df5780632acc659e146103ff5780632d72cc281461041f5780632e221808146104355780632f745c591461046257600080fd5b806301ffc9a7146102d957806305fefda71461030e57806306fdde0314610330578063081812fc14610352578063095ea7b31461038a57806318160ddd146103aa57600080fd5b366102d457005b600080fd5b3480156102e557600080fd5b506102f96102f4366004612c87565b6109ba565b60405190151581526020015b60405180910390f35b34801561031a57600080fd5b5061032e610329366004612d1d565b6109e5565b005b34801561033c57600080fd5b506103456109f5565b6040516103059190612ed3565b34801561035e57600080fd5b5061037261036d366004612c6f565b610a87565b6040516001600160a01b039091168152602001610305565b34801561039657600080fd5b5061032e6103a5366004612b74565b610aae565b3480156103b657600080fd5b506008545b604051908152602001610305565b3480156103d557600080fd5b506103bb600c5481565b3480156103eb57600080fd5b5061032e6103fa366004612a8a565b610bc9565b34801561040b57600080fd5b506103bb61041a366004612a36565b610bfa565b34801561042b57600080fd5b506103bb600d5481565b34801561044157600080fd5b506103bb610450366004612a36565b60196020526000908152604090205481565b34801561046e57600080fd5b506103bb61047d366004612b74565b610c73565b34801561048e57600080fd5b5061032e61049d366004612c6f565b610d09565b3480156104ae57600080fd5b5061032e6104bd366004612a36565b610d68565b3480156104ce57600080fd5b5061032e6104dd366004612b9f565b610de6565b3480156104ee57600080fd5b5061032e610e64565b34801561050357600080fd5b506103bb60115481565b34801561051957600080fd5b5061032e610528366004612a8a565b610ec6565b34801561053957600080fd5b50610580610548366004612c6f565b6018602052600090815260409020805460018201546002909201546001600160801b0380831693600160801b90930416919060ff1684565b604080516001600160801b0395861681529490931660208501529183015215156060820152608001610305565b3480156105b957600080fd5b506103bb6105c8366004612c6f565b610ee1565b3480156105d957600080fd5b5061032e6105e8366004612cbf565b610f82565b3480156105f957600080fd5b50610602610f9d565b6040516103059190600060e082019050825182526020830151602083015260408301516040830152606083015160608301526080830151608083015260a083015160a083015260c083015160c083015292915050565b34801561066457600080fd5b506013546102f99060ff1681565b34801561067e57600080fd5b5061037261068d366004612c6f565b611047565b34801561069e57600080fd5b506103456110a7565b3480156106b357600080fd5b506103bb6106c2366004612a36565b611135565b3480156106d357600080fd5b5061032e6111bb565b3480156106e857600080fd5b506103bb60105481565b3480156106fe57600080fd5b5061032e6111cf565b34801561071357600080fd5b50600a546001600160a01b0316610372565b34801561073157600080fd5b50610345611265565b34801561074657600080fd5b506102f9610755366004612a36565b60176020526000908152604090205460ff1681565b34801561077657600080fd5b5061032e610785366004612a36565b611274565b61032e610798366004612c6f565b61129e565b3480156107a957600080fd5b5061032e6107b8366004612b47565b6112a7565b3480156107c957600080fd5b506103bb600f5481565b3480156107df57600080fd5b506103bb7f000000000000000000000000000000000000000000000000000000000000000f81565b34801561081357600080fd5b506103bb600e5481565b34801561082957600080fd5b5061032e610838366004612aca565b6112b2565b34801561084957600080fd5b506103bb610858366004612a36565b6112ea565b34801561086957600080fd5b506102f9610878366004612a36565b6113b8565b34801561088957600080fd5b50610345610898366004612c6f565b6113d6565b3480156108a957600080fd5b506102f96108b8366004612a36565b61148a565b3480156108c957600080fd5b50600c546103bb565b3480156108de57600080fd5b506103bb7f000000000000000000000000000000000000000000000000000000000000000581565b34801561091257600080fd5b506103bb610921366004612a36565b611508565b34801561093257600080fd5b506102f9610941366004612a52565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561097b57600080fd5b5061032e6115a6565b34801561099057600080fd5b506103bb60125481565b3480156109a657600080fd5b5061032e6109b5366004612a36565b61160d565b60006001600160e01b0319821663780e9d6360e01b14806109df57506109df82611683565b92915050565b6109ed6116d3565b600e55600f55565b606060008054610a049061305c565b80601f0160208091040260200160405190810160405280929190818152602001828054610a309061305c565b8015610a7d5780601f10610a5257610100808354040283529160200191610a7d565b820191906000526020600020905b815481529060010190602001808311610a6057829003601f168201915b5050505050905090565b6000610a928261172d565b506000908152600460205260409020546001600160a01b031690565b6000610ab982611047565b9050806001600160a01b0316836001600160a01b03161415610b2c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b0382161480610b485750610b488133610941565b610bba5760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c00006064820152608401610b23565b610bc4838361178c565b505050565b610bd333826117fa565b610bef5760405162461bcd60e51b8152600401610b2390612f38565b610bc4838383611879565b6000610c05826113b8565b8015610c4857506001600160a01b0382166000908152601960205260409020547f0000000000000000000000000000000000000000000000000000000000000005115b15610c5557505060105490565b610c5e8261148a565b15610c6b575050600e5490565b5050600f5490565b6000610c7e83611135565b8210610ce05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610b23565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610d116116d3565b60005b81811015610d645760118054906000610d2c83613045565b9091555050600d8054906000610d4183613097565b9190505550610d5233600d54611a20565b80610d5c81613097565b915050610d14565b5050565b6040516351cff8d960e01b81526001600160a01b0382811660048301527f000000000000000000000000876c9153abab57fb1400efc54eb6b33ac136139f16906351cff8d990602401600060405180830381600087803b158015610dcb57600080fd5b505af1158015610ddf573d6000803e3d6000fd5b5050505050565b610dee6116d3565b60005b8151811015610d6457600160176000848481518110610e2057634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610e5c81613097565b915050610df1565b610e6c6116d3565b60135460ff1615610eb75760405162461bcd60e51b815260206004820152601560248201527422a92927a91d1026a4a72a1024a990232927ad22a760591b6044820152606401610b23565b6013805460ff19166001179055565b610bc4838383604051806020016040528060008152506112b2565b6000610eec60085490565b8210610f4f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610b23565b60088281548110610f7057634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610f8a6116d3565b8051610d64906014906020840190612945565b610fdd6040518060e00160405280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040518060e00160405280600f548152602001600e5481526020016010548152602001600c54815260200161101160085490565b8152602001600c5481526020017f000000000000000000000000000000000000000000000000000000000000000f815250905090565b6000818152600260205260408120546001600160a01b0316806109df5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b23565b601480546110b49061305c565b80601f01602080910402602001604051908101604052809291908181526020018280546110e09061305c565b801561112d5780601f106111025761010080835404028352916020019161112d565b820191906000526020600020905b81548152906001019060200180831161111057829003601f168201915b505050505081565b60006001600160a01b03821661119f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b6064820152608401610b23565b506001600160a01b031660009081526003602052604090205490565b6111c36116d3565b6111cd6000611a3a565b565b6111d76116d3565b604051600090339047908381818185875af1925050503d8060008114611219576040519150601f19603f3d011682016040523d82523d6000602084013e61121e565b606091505b50509050806112625760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b23565b50565b606060018054610a049061305c565b61127c6116d3565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b61126281611a8c565b610d643383836120f1565b6112bc33836117fa565b6112d85760405162461bcd60e51b8152600401610b2390612f38565b6112e4848484846121c0565b50505050565b600060125442106113b0576112fe826113b8565b801561134157506001600160a01b0382166000908152601960205260409020547f0000000000000000000000000000000000000000000000000000000000000005115b15611389576001600160a01b0382166000908152601960205260409020546109df907f0000000000000000000000000000000000000000000000000000000000000005613002565b507f000000000000000000000000000000000000000000000000000000000000000f919050565b506000919050565b6001600160a01b031660009081526017602052604090205460ff1690565b6000818152600260205260409020546060906001600160a01b03166114555760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610b23565b60006014611462846121f3565b604051602001611473929190612d86565b60408051601f198184030181529190529392505050565b60155460405163288c314960e21b81526001600160a01b038381166004830152600092169063a230c5249060240160206040518083038186803b1580156114d057600080fd5b505afa1580156114e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109df9190612c53565b6040516371d4ed8d60e11b81526001600160a01b0382811660048301526000917f000000000000000000000000876c9153abab57fb1400efc54eb6b33ac136139f9091169063e3a9db1a9060240160206040518083038186803b15801561156e57600080fd5b505afa158015611582573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109df9190612d05565b6115ae6116d3565b60135460ff16156116015760405162461bcd60e51b815260206004820152601960248201527f4552524f523a204d494e54204953204e4f542046524f5a454e000000000000006044820152606401610b23565b6013805460ff19169055565b6116156116d3565b6001600160a01b03811661167a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b23565b61126281611a3a565b60006001600160e01b031982166380ac58cd60e01b14806116b457506001600160e01b03198216635b5e139f60e01b145b806109df57506301ffc9a760e01b6001600160e01b03198316146109df565b600a546001600160a01b031633146111cd5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610b23565b6000818152600260205260409020546001600160a01b03166112625760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b6044820152606401610b23565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117c182611047565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061180683611047565b9050806001600160a01b0316846001600160a01b0316148061184d57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806118715750836001600160a01b031661186684610a87565b6001600160a01b0316145b949350505050565b826001600160a01b031661188c82611047565b6001600160a01b0316146118f05760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610b23565b6001600160a01b0382166119525760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610b23565b61195d83838361230d565b61196860008261178c565b6001600160a01b0383166000908152600360205260408120805460019290611991908490613002565b90915550506001600160a01b03821660009081526003602052604081208054600192906119bf908490612fb7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610d648282604051806020016040528060008152506123c5565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b80601254421015611ad25760405162461bcd60e51b815260206004820152601060248201526f29a0a6229024a9902727aa1027a822a760811b6044820152606401610b23565b60008111611b145760405162461bcd60e51b815260206004820152600f60248201526e10d053950813525395080c08139195608a1b6044820152606401610b23565b7f000000000000000000000000000000000000000000000000000000000000000f811115611b775760405162461bcd60e51b815260206004820152601060248201526f4d41582050455220545820495320313560801b6044820152606401610b23565b600c5481611b8460085490565b611b8e9190612fb7565b1115611bdc5760405162461bcd60e51b815260206004820152601a60248201527f534f4c44204f55542c2054525920544f204d494e54204c4553530000000000006044820152606401610b23565b601154811115611c185760405162461bcd60e51b815260206004820152600760248201526614d3d31113d55560ca1b6044820152606401610b23565b600060115411611c6a5760405162461bcd60e51b815260206004820152601a60248201527f434f4c4c454354494f4e20414c524541445920534f4c444f55540000000000006044820152606401610b23565b6000611c75336113b8565b8015611cbc5750336000908152601960205260409020547f000000000000000000000000000000000000000000000000000000000000000590611cb9908490612fb7565b11155b15611cca5750601054611ce6565b611cd33361148a565b15611ce15750600e54611ce6565b50600f545b611cf08282612fe3565b341015611d345760405162461bcd60e51b8152602060048201526012602482015271494e53554646494349454e542046554e445360701b6044820152606401610b23565b60135460ff1615611d7f5760405162461bcd60e51b815260206004820152601560248201527422a92927a91d1026a4a72a1024a990232927ad22a760591b6044820152606401610b23565b6002600b541415611dd25760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610b23565b6002600b5560008367ffffffffffffffff811115611e0057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611e29578160200160208202803683370190505b5090506000611e37336113b8565b8015611e7e5750336000908152601960205260409020547f000000000000000000000000000000000000000000000000000000000000000590611e7b908790612fb7565b11155b15611ec05784601054611e919190612fe3565b33600090815260196020526040812080549293508792909190611eb5908490612fb7565b90915550611ef49050565b611ec93361148a565b15611ee35784600e54611edc9190612fe3565b9050611ef4565b84600f54611ef19190612fe3565b90505b6000611f05826105dc6127106123f8565b90506000611f18836103e86127106123f8565b6016546040519192506000916001600160a01b039091169083908381818185875af1925050503d8060008114611f6a576040519150601f19603f3d011682016040523d82523d6000602084013e611f6f565b606091505b5050905080611fb35760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610b23565b601554604051634065da6360e01b815273454cfaa623a629cc0b4017aeb85d54c42e91479d60048201526001600160a01b0390911690634065da639085906024016000604051808303818588803b15801561200d57600080fd5b505af1158015612021573d6000803e3d6000fd5b505050505060005b888110156120a857600d805490600061204183613097565b90915550506011805490600061205683613045565b9190505550600d5486828151811061207e57634e487b7160e01b600052603260045260246000fd5b60200260200101818152505061209633600d54611a20565b806120a081613097565b915050612029565b507f2b60777739058f365ca1b8af8161406ee30f8ce60a47b621ada495df2736da9633866040516120da929190612e7d565b60405180910390a150506001600b55505050505050565b816001600160a01b0316836001600160a01b031614156121535760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610b23565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6121cb848484611879565b6121d78484848461250c565b6112e45760405162461bcd60e51b8152600401610b2390612ee6565b6060816122175750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612241578061222b81613097565b915061223a9050600a83612fcf565b915061221b565b60008167ffffffffffffffff81111561226a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612294576020820181803683370190505b5090505b8415611871576122a9600183613002565b91506122b6600a866130b2565b6122c1906030612fb7565b60f81b8183815181106122e457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612306600a86612fcf565b9450612298565b6001600160a01b0383166123685761236381600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61238b565b816001600160a01b0316836001600160a01b03161461238b5761238b8382612619565b6001600160a01b0382166123a257610bc4816126b6565b826001600160a01b0316826001600160a01b031614610bc457610bc4828261278f565b6123cf83836127d3565b6123dc600084848461250c565b610bc45760405162461bcd60e51b8152600401610b2390612ee6565b600080821161243c5760405162461bcd60e51b815260206004820152601060248201526f4469766973696f6e206279207a65726f60801b6044820152606401610b23565b8361244957506000612505565b60006124558486612fe3565b9050836124628683612fcf565b141561247a576124728382612fcf565b915050612505565b60006124868487612fcf565b9050600061249485886130b2565b905060006124a28688612fcf565b905060006124b087896130b2565b90506124fd6124c9886124c38685612921565b9061292d565b6124f76124d68686612921565b6124f76124e38987612921565b6124f78d6124f18c8b612921565b90612921565b90612939565b955050505050505b9392505050565b60006001600160a01b0384163b1561260e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612550903390899088908890600401612e40565b602060405180830381600087803b15801561256a57600080fd5b505af192505050801561259a575060408051601f3d908101601f1916820190925261259791810190612ca3565b60015b6125f4573d8080156125c8576040519150601f19603f3d011682016040523d82523d6000602084013e6125cd565b606091505b5080516125ec5760405162461bcd60e51b8152600401610b2390612ee6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611871565b506001949350505050565b6000600161262684611135565b6126309190613002565b600083815260076020526040902054909150808214612683576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906126c890600190613002565b600083815260096020526040812054600880549394509092849081106126fe57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061272d57634e487b7160e01b600052603260045260246000fd5b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061277357634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061279a83611135565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166128295760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610b23565b6000818152600260205260409020546001600160a01b03161561288e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610b23565b61289a6000838361230d565b6001600160a01b03821660009081526003602052604081208054600192906128c3908490612fb7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006125058284612fe3565b60006125058284612fcf565b60006125058284612fb7565b8280546129519061305c565b90600052602060002090601f01602090048101928261297357600085556129b9565b82601f1061298c57805160ff19168380011785556129b9565b828001600101855582156129b9579182015b828111156129b957825182559160200191906001019061299e565b506129c59291506129c9565b5090565b5b808211156129c557600081556001016129ca565b600067ffffffffffffffff8311156129f8576129f86130f2565b612a0b601f8401601f1916602001612f86565b9050828152838383011115612a1f57600080fd5b828260208301376000602084830101529392505050565b600060208284031215612a47578081fd5b813561250581613108565b60008060408385031215612a64578081fd5b8235612a6f81613108565b91506020830135612a7f81613108565b809150509250929050565b600080600060608486031215612a9e578081fd5b8335612aa981613108565b92506020840135612ab981613108565b929592945050506040919091013590565b60008060008060808587031215612adf578081fd5b8435612aea81613108565b93506020850135612afa81613108565b925060408501359150606085013567ffffffffffffffff811115612b1c578182fd5b8501601f81018713612b2c578182fd5b612b3b878235602084016129de565b91505092959194509250565b60008060408385031215612b59578182fd5b8235612b6481613108565b91506020830135612a7f8161311d565b60008060408385031215612b86578182fd5b8235612b9181613108565b946020939093013593505050565b60006020808385031215612bb1578182fd5b823567ffffffffffffffff80821115612bc8578384fd5b818501915085601f830112612bdb578384fd5b813581811115612bed57612bed6130f2565b8060051b9150612bfe848301612f86565b8181528481019084860184860187018a1015612c18578788fd5b8795505b83861015612c465780359450612c3185613108565b84835260019590950194918601918601612c1c565b5098975050505050505050565b600060208284031215612c64578081fd5b81516125058161311d565b600060208284031215612c80578081fd5b5035919050565b600060208284031215612c98578081fd5b81356125058161312b565b600060208284031215612cb4578081fd5b81516125058161312b565b600060208284031215612cd0578081fd5b813567ffffffffffffffff811115612ce6578182fd5b8201601f81018413612cf6578182fd5b611871848235602084016129de565b600060208284031215612d16578081fd5b5051919050565b60008060408385031215612d2f578182fd5b50508035926020909101359150565b60008151808452612d56816020860160208601613019565b601f01601f19169290920160200192915050565b60008151612d7c818560208601613019565b9290920192915050565b600080845482600182811c915080831680612da257607f831692505b6020808410821415612dc257634e487b7160e01b87526022600452602487fd5b818015612dd65760018114612de757612e13565b60ff19861689528489019650612e13565b60008b815260209020885b86811015612e0b5781548b820152908501908301612df2565b505084890196505b505050505050612e37612e268286612d6a565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e7390830184612d3e565b9695505050505050565b6001600160a01b038316815260406020808301829052835191830182905260009184820191906060850190845b81811015612ec657845183529383019391830191600101612eaa565b5090979650505050505050565b6020815260006125056020830184612d3e565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612faf57612faf6130f2565b604052919050565b60008219821115612fca57612fca6130c6565b500190565b600082612fde57612fde6130dc565b500490565b6000816000190483118215151615612ffd57612ffd6130c6565b500290565b600082821015613014576130146130c6565b500390565b60005b8381101561303457818101518382015260200161301c565b838111156112e45750506000910152565b600081613054576130546130c6565b506000190190565b600181811c9082168061307057607f821691505b6020821081141561309157634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156130ab576130ab6130c6565b5060010190565b6000826130c1576130c16130dc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461126257600080fd5b801515811461126257600080fd5b6001600160e01b03198116811461126257600080fdfea26469706673582212209d84e6c072bed3a2f99efdf60b98f4c944b3a71f1c5822f8f6f52a88f904137064736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000007a3cdb2364f92369a602cae81167d0679087e6a3000000000000000000000000000000000000000000000000000000000000000e68747470733a2f2f697066732f2f000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseURI (string): https://ipfs//
Arg [1] : _marketAddress (address): 0x7a3CdB2364f92369a602CAE81167d0679087e6a3
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000007a3cdb2364f92369a602cae81167d0679087e6a3
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [3] : 68747470733a2f2f697066732f2f000000000000000000000000000000000000
Deployed Bytecode Sourcemap
57599:7501:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51065:224;;;;;;;;;;-1:-1:-1;51065:224:0;;;;;:::i;:::-;;:::i;:::-;;;10784:14:1;;10777:22;10759:41;;10747:2;10732:18;51065:224:0;;;;;;;;61082:164;;;;;;;;;;-1:-1:-1;61082:164:0;;;;;:::i;:::-;;:::i;:::-;;37799:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39312:171::-;;;;;;;;;;-1:-1:-1;39312:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9121:32:1;;;9103:51;;9091:2;9076:18;39312:171:0;9058:102:1;38829:417:0;;;;;;;;;;-1:-1:-1;38829:417:0;;;;;:::i;:::-;;:::i;51705:113::-;;;;;;;;;;-1:-1:-1;51793:10:0;:17;51705:113;;;22770:25:1;;;22758:2;22743:18;51705:113:0;22725:76:1;57761:32:0;;;;;;;;;;;;;;;;40012:336;;;;;;;;;;-1:-1:-1;40012:336:0;;;;;:::i;:::-;;:::i;63781:330::-;;;;;;;;;;-1:-1:-1;63781:330:0;;;;;:::i;:::-;;:::i;57888:27::-;;;;;;;;;;;;;;;;58489:55;;;;;;;;;;-1:-1:-1;58489:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;51373:256;;;;;;;;;;-1:-1:-1;51373:256:0;;;;;:::i;:::-;;:::i;61758:225::-;;;;;;;;;;-1:-1:-1;61758:225:0;;;;;:::i;:::-;;:::i;24789:106::-;;;;;;;;;;-1:-1:-1;24789:106:0;;;;;:::i;:::-;;:::i;60866:208::-;;;;;;;;;;-1:-1:-1;60866:208:0;;;;;:::i;:::-;;:::i;61373:84::-;;;;;;;;;;;;;:::i;58054:30::-;;;;;;;;;;;;;;;;40419:185;;;;;;;;;;-1:-1:-1;40419:185:0;;;;;:::i;:::-;;:::i;58446:36::-;;;;;;;;;;-1:-1:-1;58446:36:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;58446:36:0;;;;-1:-1:-1;;;58446:36:0;;;;;;;;;;;;;;-1:-1:-1;;;;;22443:15:1;;;22425:34;;22495:15;;;;22490:2;22475:18;;22468:43;22527:18;;;22520:34;22597:14;22590:22;22585:2;22570:18;;22563:50;22359:3;22344:19;58446:36:0;22326:293:1;51895:233:0;;;;;;;;;;-1:-1:-1;51895:233:0;;;;;:::i;:::-;;:::i;63567:104::-;;;;;;;;;;-1:-1:-1;63567:104:0;;;;;:::i;:::-;;:::i;64694:181::-;;;;;;;;;;;;;:::i;:::-;;;;;;21671:4:1;21713:3;21702:9;21698:19;21690:27;;21750:6;21744:13;21733:9;21726:32;21814:4;21806:6;21802:17;21796:24;21789:4;21778:9;21774:20;21767:54;21877:4;21869:6;21865:17;21859:24;21852:4;21841:9;21837:20;21830:54;21940:4;21932:6;21928:17;21922:24;21915:4;21904:9;21900:20;21893:54;22003:4;21995:6;21991:17;21985:24;21978:4;21967:9;21963:20;21956:54;22066:4;22058:6;22054:17;22048:24;22041:4;22030:9;22026:20;22019:54;22129:4;22121:6;22117:17;22111:24;22104:4;22093:9;22089:20;22082:54;21680:462;;;;;58143:18:0;;;;;;;;;;-1:-1:-1;58143:18:0;;;;;;;;37510:222;;;;;;;;;;-1:-1:-1;37510:222:0;;;;;:::i;:::-;;:::i;58313:21::-;;;;;;;;;;;;;:::i;37241:207::-;;;;;;;;;;-1:-1:-1;37241:207:0;;;;;:::i;:::-;;:::i;11126:103::-;;;;;;;;;;;;;:::i;58008:39::-;;;;;;;;;;;;;;;;64883:177;;;;;;;;;;;;;:::i;10478:87::-;;;;;;;;;;-1:-1:-1;10551:6:0;;-1:-1:-1;;;;;10551:6:0;10478:87;;37968:104;;;;;;;;;;;;;:::i;58398:41::-;;;;;;;;;;-1:-1:-1;58398:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;61254:111;;;;;;;;;;-1:-1:-1;61254:111:0;;;;;:::i;:::-;;:::i;64596:90::-;;;;;;:::i;:::-;;:::i;39555:155::-;;;;;;;;;;-1:-1:-1;39555:155:0;;;;;:::i;:::-;;:::i;57963:38::-;;;;;;;;;;;;;;;;57800:39;;;;;;;;;;;;;;;57922:34;;;;;;;;;;;;;;;;40675:323;;;;;;;;;;-1:-1:-1;40675:323:0;;;;;:::i;:::-;;:::i;64225:363::-;;;;;;;;;;-1:-1:-1;64225:363:0;;;;;:::i;:::-;;:::i;59328:105::-;;;;;;;;;;-1:-1:-1;59328:105:0;;;;;:::i;:::-;;:::i;63251:308::-;;;;;;;;;;-1:-1:-1;63251:308:0;;;;;:::i;:::-;;:::i;59202:118::-;;;;;;;;;;-1:-1:-1;59202:118:0;;;;;:::i;:::-;;:::i;64119:98::-;;;;;;;;;;-1:-1:-1;64199:10:0;;64119:98;;57846:35;;;;;;;;;;;;;;;25019:112;;;;;;;;;;-1:-1:-1;25019:112:0;;;;;:::i;:::-;;:::i;39781:164::-;;;;;;;;;;-1:-1:-1;39781:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;39902:25:0;;;39878:4;39902:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;39781:164;61465:168;;;;;;;;;;;;;:::i;58091:43::-;;;;;;;;;;;;;;;;11384:201;;;;;;;;;;-1:-1:-1;11384:201:0;;;;;:::i;:::-;;:::i;51065:224::-;51167:4;-1:-1:-1;;;;;;51191:50:0;;-1:-1:-1;;;51191:50:0;;:90;;;51245:36;51269:11;51245:23;:36::i;:::-;51184:97;51065:224;-1:-1:-1;;51065:224:0:o;61082:164::-;10364:13;:11;:13::i;:::-;61177:7:::1;:21:::0;61209:11:::1;:29:::0;61082:164::o;37799:100::-;37853:13;37886:5;37879:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37799:100;:::o;39312:171::-;39388:7;39408:23;39423:7;39408:14;:23::i;:::-;-1:-1:-1;39451:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;39451:24:0;;39312:171::o;38829:417::-;38910:13;38926:23;38941:7;38926:14;:23::i;:::-;38910:39;;38974:5;-1:-1:-1;;;;;38968:11:0;:2;-1:-1:-1;;;;;38968:11:0;;;38960:57;;;;-1:-1:-1;;;38960:57:0;;18063:2:1;38960:57:0;;;18045:21:1;18102:2;18082:18;;;18075:30;18141:34;18121:18;;;18114:62;-1:-1:-1;;;18192:18:1;;;18185:31;18233:19;;38960:57:0;;;;;;;;;9109:10;-1:-1:-1;;;;;39052:21:0;;;;:62;;-1:-1:-1;39077:37:0;39094:5;9109:10;39781:164;:::i;39077:37::-;39030:174;;;;-1:-1:-1;;;39030:174:0;;15442:2:1;39030:174:0;;;15424:21:1;15481:2;15461:18;;;15454:30;15520:34;15500:18;;;15493:62;15591:32;15571:18;;;15564:60;15641:19;;39030:174:0;15414:252:1;39030:174:0;39217:21;39226:2;39230:7;39217:8;:21::i;:::-;38829:417;;;:::o;40012:336::-;40207:41;9109:10;40240:7;40207:18;:41::i;:::-;40199:100;;;;-1:-1:-1;;;40199:100:0;;;;;;;:::i;:::-;40312:28;40322:4;40328:2;40332:7;40312:9;:28::i;63781:330::-;63848:7;63871:20;63883:7;63871:11;:20::i;:::-;:62;;;;-1:-1:-1;;;;;;63895:29:0;;;;;;:20;:29;;;;;;63927:6;-1:-1:-1;63871:62:0;63868:236;;;-1:-1:-1;;63957:12:0;;;63781:330::o;63868:236::-;63991:19;64002:7;63991:10;:19::i;:::-;63987:117;;;-1:-1:-1;;64034:7:0;;;63781:330::o;63987:117::-;-1:-1:-1;;64081:11:0;;;63781:330::o;51373:256::-;51470:7;51506:23;51523:5;51506:16;:23::i;:::-;51498:5;:31;51490:87;;;;-1:-1:-1;;;51490:87:0;;11237:2:1;51490:87:0;;;11219:21:1;11276:2;11256:18;;;11249:30;11315:34;11295:18;;;11288:62;-1:-1:-1;;;11366:18:1;;;11359:41;11417:19;;51490:87:0;11209:233:1;51490:87:0;-1:-1:-1;;;;;;51595:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;51373:256::o;61758:225::-;10364:13;:11;:13::i;:::-;61824:6:::1;61820:156;61840:7;61836:1;:11;61820:156;;;61868:15;:17:::0;;;:15:::1;:17;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;61900:12:0::1;:14:::0;;;:12:::1;:14;::::0;::::1;:::i;:::-;;;;;;61929:35;61939:10;61951:12;;61929:9;:35::i;:::-;61849:3:::0;::::1;::::0;::::1;:::i;:::-;;;;61820:156;;;;61758:225:::0;:::o;24789:106::-;24864:23;;-1:-1:-1;;;24864:23:0;;-1:-1:-1;;;;;9121:32:1;;;24864:23:0;;;9103:51:1;24864:7:0;:16;;;;9076:18:1;;24864:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24789:106;:::o;60866:208::-;10364:13;:11;:13::i;:::-;60957:9:::1;60953:114;60976:14;:21;60972:1;:25;60953:114;;;61051:4;61020:9;:28;61030:14;61045:1;61030:17;;;;;;-1:-1:-1::0;;;61030:17:0::1;;;;;;;;;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;61020:28:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;61020:28:0;:35;;-1:-1:-1;;61020:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;60999:3;::::1;::::0;::::1;:::i;:::-;;;;60953:114;;61373:84:::0;10364:13;:11;:13::i;:::-;60678:6:::1;::::0;::::1;;60677:7;60655:78;;;::::0;-1:-1:-1;;;60655:78:0;;18465:2:1;60655:78:0::1;::::0;::::1;18447:21:1::0;18504:2;18484:18;;;18477:30;-1:-1:-1;;;18523:18:1;;;18516:51;18584:18;;60655:78:0::1;18437:171:1::0;60655:78:0::1;61436:6:::2;:13:::0;;-1:-1:-1;;61436:13:0::2;61445:4;61436:13;::::0;;61373:84::o;40419:185::-;40557:39;40574:4;40580:2;40584:7;40557:39;;;;;;;;;;;;:16;:39::i;51895:233::-;51970:7;52006:30;51793:10;:17;;51705:113;52006:30;51998:5;:38;51990:95;;;;-1:-1:-1;;;51990:95:0;;20206:2:1;51990:95:0;;;20188:21:1;20245:2;20225:18;;;20218:30;20284:34;20264:18;;;20257:62;-1:-1:-1;;;20335:18:1;;;20328:42;20387:19;;51990:95:0;20178:234:1;51990:95:0;52103:10;52114:5;52103:17;;;;;;-1:-1:-1;;;52103:17:0;;;;;;;;;;;;;;;;;52096:24;;51895:233;;;:::o;63567:104::-;10364:13;:11;:13::i;:::-;63642:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;64694:181::-:0;64745:11;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64745:11:0;64776:90;;;;;;;;64781:11;;64776:90;;;;64794:7;;64776:90;;;;64803:12;;64776:90;;;;64817:10;;64776:90;;;;64829:13;51793:10;:17;;51705:113;64829:13;64776:90;;;;64844:10;;64776:90;;;;64856:9;64776:90;;;64768:99;;64694:181;:::o;37510:222::-;37582:7;37618:16;;;:7;:16;;;;;;-1:-1:-1;;;;;37618:16:0;37653:19;37645:56;;;;-1:-1:-1;;;37645:56:0;;17710:2:1;37645:56:0;;;17692:21:1;17749:2;17729:18;;;17722:30;-1:-1:-1;;;17768:18:1;;;17761:54;17832:18;;37645:56:0;17682:174:1;58313:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37241:207::-;37313:7;-1:-1:-1;;;;;37341:19:0;;37333:73;;;;-1:-1:-1;;;37333:73:0;;14332:2:1;37333:73:0;;;14314:21:1;14371:2;14351:18;;;14344:30;14410:34;14390:18;;;14383:62;-1:-1:-1;;;14461:18:1;;;14454:39;14510:19;;37333:73:0;14304:231:1;37333:73:0;-1:-1:-1;;;;;;37424:16:0;;;;;:9;:16;;;;;;;37241:207::o;11126:103::-;10364:13;:11;:13::i;:::-;11191:30:::1;11218:1;11191:18;:30::i;:::-;11126:103::o:0;64883:177::-;10364:13;:11;:13::i;:::-;64956:49:::1;::::0;64938:12:::1;::::0;64956:10:::1;::::0;64979:21:::1;::::0;64938:12;64956:49;64938:12;64956:49;64979:21;64956:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64937:68;;;65024:7;65016:36;;;::::0;-1:-1:-1;;;65016:36:0;;19514:2:1;65016:36:0::1;::::0;::::1;19496:21:1::0;19553:2;19533:18;;;19526:30;-1:-1:-1;;;19572:18:1;;;19565:46;19628:18;;65016:36:0::1;19486:166:1::0;65016:36:0::1;10388:1;64883:177::o:0;37968:104::-;38024:13;38057:7;38050:14;;;;;:::i;61254:111::-;10364:13;:11;:13::i;:::-;61326:14:::1;:31:::0;;-1:-1:-1;;;;;;61326:31:0::1;-1:-1:-1::0;;;;;61326:31:0;;;::::1;::::0;;;::::1;::::0;;61254:111::o;64596:90::-;64664:14;64670:7;64664:5;:14::i;39555:155::-;39650:52;9109:10;39683:8;39693;39650:18;:52::i;40675:323::-;40849:41;9109:10;40882:7;40849:18;:41::i;:::-;40841:100;;;;-1:-1:-1;;;40841:100:0;;;;;;;:::i;:::-;40952:38;40966:4;40972:2;40976:7;40985:4;40952:13;:38::i;:::-;40675:323;;;;:::o;64225:363::-;64291:7;64333:18;;64314:15;:37;64311:251;;64371:20;64383:7;64371:11;:20::i;:::-;:62;;;;-1:-1:-1;;;;;;64395:29:0;;;;;;:20;:29;;;;;;64427:6;-1:-1:-1;64371:62:0;64368:149;;;-1:-1:-1;;;;;64471:29:0;;;;;;:20;:29;;;;;;64462:38;;:6;:38;:::i;64368:149::-;-1:-1:-1;64540:9:0;;64225:363;-1:-1:-1;64225:363:0:o;64311:251::-;-1:-1:-1;64579:1:0;;64225:363;-1:-1:-1;64225:363:0:o;59328:105::-;-1:-1:-1;;;;;59409:16:0;59385:4;59409:16;;;:9;:16;;;;;;;;;59328:105::o;63251:308::-;42570:4;42594:16;;;:7;:16;;;;;;63322:13;;-1:-1:-1;;;;;42594:16:0;63346:76;;;;-1:-1:-1;;;63346:76:0;;17294:2:1;63346:76:0;;;17276:21:1;17333:2;17313:18;;;17306:30;17372:34;17352:18;;;17345:62;-1:-1:-1;;;17423:18:1;;;17416:45;17478:19;;63346:76:0;17266:237:1;63346:76:0;63431:23;63481:7;63490:26;63507:8;63490:16;:26::i;:::-;63464:61;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;63464:61:0;;;;;;;;;;63251:308;-1:-1:-1;;;63251:308:0:o;59202:118::-;59282:14;;:30;;-1:-1:-1;;;59282:30:0;;-1:-1:-1;;;;;9121:32:1;;;59282:30:0;;;9103:51:1;59258:4:0;;59282:14;;:23;;9076:18:1;;59282:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;25019:112::-;25099:24;;-1:-1:-1;;;25099:24:0;;-1:-1:-1;;;;;9121:32:1;;;25099:24:0;;;9103:51:1;25072:7:0;;25099;:18;;;;;;9076::1;;25099:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;61465:168::-;10364:13;:11;:13::i;:::-;61541:6:::1;::::0;::::1;;61540:7;61518:82;;;::::0;-1:-1:-1;;;61518:82:0;;16940:2:1;61518:82:0::1;::::0;::::1;16922:21:1::0;16979:2;16959:18;;;16952:30;17018:27;16998:18;;;16991:55;17063:18;;61518:82:0::1;16912:175:1::0;61518:82:0::1;61611:6;:14:::0;;-1:-1:-1;;61611:14:0::1;::::0;;61465:168::o;11384:201::-;10364:13;:11;:13::i;:::-;-1:-1:-1;;;;;11473:22:0;::::1;11465:73;;;::::0;-1:-1:-1;;;11465:73:0;;12068:2:1;11465:73:0::1;::::0;::::1;12050:21:1::0;12107:2;12087:18;;;12080:30;12146:34;12126:18;;;12119:62;-1:-1:-1;;;12197:18:1;;;12190:36;12243:19;;11465:73:0::1;12040:228:1::0;11465:73:0::1;11549:28;11568:8;11549:18;:28::i;36872:305::-:0;36974:4;-1:-1:-1;;;;;;37011:40:0;;-1:-1:-1;;;37011:40:0;;:105;;-1:-1:-1;;;;;;;37068:48:0;;-1:-1:-1;;;37068:48:0;37011:105;:158;;;-1:-1:-1;;;;;;;;;;28643:40:0;;;37133:36;28534:157;10643:132;10551:6;;-1:-1:-1;;;;;10551:6:0;9109:10;10707:23;10699:68;;;;-1:-1:-1;;;10699:68:0;;16579:2:1;10699:68:0;;;16561:21:1;;;16598:18;;;16591:30;16657:34;16637:18;;;16630:62;16709:18;;10699:68:0;16551:182:1;47287:135:0;42570:4;42594:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42594:16:0;47361:53;;;;-1:-1:-1;;;47361:53:0;;17710:2:1;47361:53:0;;;17692:21:1;17749:2;17729:18;;;17722:30;-1:-1:-1;;;17768:18:1;;;17761:54;17832:18;;47361:53:0;17682:174:1;46566::0;46641:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;46641:29:0;-1:-1:-1;;;;;46641:29:0;;;;;;;;:24;;46695:23;46641:24;46695:14;:23::i;:::-;-1:-1:-1;;;;;46686:46:0;;;;;;;;;;;46566:174;;:::o;42799:264::-;42892:4;42909:13;42925:23;42940:7;42925:14;:23::i;:::-;42909:39;;42978:5;-1:-1:-1;;;;;42967:16:0;:7;-1:-1:-1;;;;;42967:16:0;;:52;;;-1:-1:-1;;;;;;39902:25:0;;;39878:4;39902:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;42987:32;42967:87;;;;43047:7;-1:-1:-1;;;;;43023:31:0;:20;43035:7;43023:11;:20::i;:::-;-1:-1:-1;;;;;43023:31:0;;42967:87;42959:96;42799:264;-1:-1:-1;;;;42799:264:0:o;45822:625::-;45981:4;-1:-1:-1;;;;;45954:31:0;:23;45969:7;45954:14;:23::i;:::-;-1:-1:-1;;;;;45954:31:0;;45946:81;;;;-1:-1:-1;;;45946:81:0;;12475:2:1;45946:81:0;;;12457:21:1;12514:2;12494:18;;;12487:30;12553:34;12533:18;;;12526:62;-1:-1:-1;;;12604:18:1;;;12597:35;12649:19;;45946:81:0;12447:227:1;45946:81:0;-1:-1:-1;;;;;46046:16:0;;46038:65;;;;-1:-1:-1;;;46038:65:0;;13238:2:1;46038:65:0;;;13220:21:1;13277:2;13257:18;;;13250:30;13316:34;13296:18;;;13289:62;-1:-1:-1;;;13367:18:1;;;13360:34;13411:19;;46038:65:0;13210:226:1;46038:65:0;46116:39;46137:4;46143:2;46147:7;46116:20;:39::i;:::-;46220:29;46237:1;46241:7;46220:8;:29::i;:::-;-1:-1:-1;;;;;46262:15:0;;;;;;:9;:15;;;;;:20;;46281:1;;46262:15;:20;;46281:1;;46262:20;:::i;:::-;;;;-1:-1:-1;;;;;;;46293:13:0;;;;;;:9;:13;;;;;:18;;46310:1;;46293:13;:18;;46310:1;;46293:18;:::i;:::-;;;;-1:-1:-1;;46322:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;46322:21:0;-1:-1:-1;;;;;46322:21:0;;;;;;;;;46361:27;;46322:16;;46361:27;;;;;;;38829:417;;;:::o;43405:110::-;43481:26;43491:2;43495:7;43481:26;;;;;;;;;;;;:9;:26::i;11745:191::-;11838:6;;;-1:-1:-1;;;;;11855:17:0;;;-1:-1:-1;;;;;;11855:17:0;;;;;;;11888:40;;11838:6;;;11855:17;11838:6;;11888:40;;11819:16;;11888:40;11745:191;;:::o;61991:1140::-;62036:7;59627:18;;59608:15;:37;;59586:104;;;;-1:-1:-1;;;59586:104:0;;15097:2:1;59586:104:0;;;15079:21:1;15136:2;15116:18;;;15109:30;-1:-1:-1;;;15155:18:1;;;15148:46;15211:18;;59586:104:0;15069:166:1;59586:104:0;59732:1;59723:6;:10;59701:76;;;;-1:-1:-1;;;59701:76:0;;19170:2:1;59701:76:0;;;19152:21:1;19209:2;19189:18;;;19182:30;-1:-1:-1;;;19228:18:1;;;19221:45;19283:18;;59701:76:0;19142:165:1;59701:76:0;59820:9;59810:6;:19;;59788:86;;;;-1:-1:-1;;;59788:86:0;;21394:2:1;59788:86:0;;;21376:21:1;21433:2;21413:18;;;21406:30;-1:-1:-1;;;21452:18:1;;;21445:46;21508:18;;59788:86:0;21366:166:1;59788:86:0;59933:10;;59923:6;59907:13;51793:10;:17;;51705:113;59907:13;:22;;;;:::i;:::-;:36;;59885:113;;;;-1:-1:-1;;;59885:113:0;;14742:2:1;59885:113:0;;;14724:21:1;14781:2;14761:18;;;14754:30;14820:28;14800:18;;;14793:56;14866:18;;59885:113:0;14714:176:1;59885:113:0;60041:15;;60031:6;:25;;60009:83;;;;-1:-1:-1;;;60009:83:0;;13997:2:1;60009:83:0;;;13979:21:1;14036:1;14016:18;;;14009:29;-1:-1:-1;;;14054:18:1;;;14047:37;14101:18;;60009:83:0;13969:156:1;60009:83:0;60143:1;60125:15;;:19;60103:96;;;;-1:-1:-1;;;60103:96:0;;18815:2:1;60103:96:0;;;18797:21:1;18854:2;18834:18;;;18827:30;18893:28;18873:18;;;18866:56;18939:18;;60103:96:0;18787:176:1;60103:96:0;60210:10;60234:23;60246:10;60234:11;:23::i;:::-;:78;;;;-1:-1:-1;60282:10:0;60261:32;;;;:20;:32;;;;;;60306:6;;60261:41;;60296:6;;60261:41;:::i;:::-;:51;;60234:78;60231:258;;;-1:-1:-1;60337:12:0;;60231:258;;;60371:22;60382:10;60371;:22::i;:::-;60367:122;;;-1:-1:-1;60418:7:0;;60367:122;;;-1:-1:-1;60466:11:0;;60367:122;60534:14;60542:6;60534:5;:14;:::i;:::-;60521:9;:27;;60499:96;;;;-1:-1:-1;;;60499:96:0;;19859:2:1;60499:96:0;;;19841:21:1;19898:2;19878:18;;;19871:30;-1:-1:-1;;;19917:18:1;;;19910:48;19975:18;;60499:96:0;19831:168:1;60499:96:0;60678:6:::1;::::0;::::1;;60677:7;60655:78;;;::::0;-1:-1:-1;;;60655:78:0;;18465:2:1;60655:78:0::1;::::0;::::1;18447:21:1::0;18504:2;18484:18;;;18477:30;-1:-1:-1;;;18523:18:1;;;18516:51;18584:18;;60655:78:0::1;18437:171:1::0;60655:78:0::1;4906:1:::2;5504:7;;:19;;5496:63;;;::::0;-1:-1:-1;;;5496:63:0;;21034:2:1;5496:63:0::2;::::0;::::2;21016:21:1::0;21073:2;21053:18;;;21046:30;21112:33;21092:18;;;21085:61;21163:18;;5496:63:0::2;21006:181:1::0;5496:63:0::2;4906:1;5637:7;:18:::0;62081:28:::3;62123:7:::0;62112:19:::3;::::0;::::3;;;;-1:-1:-1::0;;;62112:19:0::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;62112:19:0::3;;62081:50;;62142:14;62170:23;62182:10;62170:11;:23::i;:::-;:79;;;;-1:-1:-1::0;62218:10:0::3;62197:32;::::0;;;:20:::3;:32;::::0;;;;;62243:6:::3;::::0;62197:42:::3;::::0;62232:7;;62197:42:::3;:::i;:::-;:52;;62170:79;62167:359;;;62293:7;62278:12;;:22;;;;:::i;:::-;62336:10;62315:32;::::0;;;:20:::3;:32;::::0;;;;:43;;62266:34;;-1:-1:-1;62351:7:0;;62315:32;;;:43:::3;::::0;62351:7;;62315:43:::3;:::i;:::-;::::0;;;-1:-1:-1;62167:359:0::3;::::0;-1:-1:-1;62167:359:0::3;;62380:22;62391:10;62380;:22::i;:::-;62376:150;;;62441:7;62431;;:17;;;;:::i;:::-;62419:29;;62376:150;;;62507:7;62493:11;;:21;;;;:::i;:::-;62481:33;;62376:150;62536:12;62551:28;:9:::0;58248:4:::3;58204:5;62551:16;:28::i;:::-;62536:43:::0;-1:-1:-1;62590:11:0::3;62604:31;:9:::0;58294:4:::3;58204:5;62604:16;:31::i;:::-;62665:10;::::0;:34:::3;::::0;62590:45;;-1:-1:-1;62647:12:0::3;::::0;-1:-1:-1;;;;;62665:10:0;;::::3;::::0;62590:45;;62647:12;62665:34;62647:12;62665:34;62590:45;62665:10;:34:::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62646:53;;;62718:7;62710:36;;;::::0;-1:-1:-1;;;62710:36:0;;19514:2:1;62710:36:0::3;::::0;::::3;19496:21:1::0;19553:2;19533:18;;;19526:30;-1:-1:-1;;;19572:18:1;;;19565:46;19628:18;;62710:36:0::3;19486:166:1::0;62710:36:0::3;62757:14;::::0;:86:::3;::::0;-1:-1:-1;;;62757:86:0;;62800:42:::3;62757:86;::::0;::::3;9103:51:1::0;-1:-1:-1;;;;;62757:14:0;;::::3;::::0;:26:::3;::::0;62791:7;;9076:18:1;;62757:86:0::3;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;::::0;::::3;;;;;;;;;;62868:6;62864:203;62884:7;62880:1;:11;62864:203;;;62912:12;:14:::0;;;:12:::3;:14;::::0;::::3;:::i;:::-;::::0;;;-1:-1:-1;;62941:15:0::3;:17:::0;;;:15:::3;:17;::::0;::::3;:::i;:::-;;;;;;62993:12;;62973:14;62988:1;62973:17;;;;;;-1:-1:-1::0;;;62973:17:0::3;;;;;;;;;;;;;;:32;;;::::0;::::3;63020:35;63030:10;63042:12;;63020:9;:35::i;:::-;62893:3:::0;::::3;::::0;::::3;:::i;:::-;;;;62864:203;;;;63084:39;63096:10;63108:14;63084:39;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;4862:1:0::2;5816:7;:22:::0;-1:-1:-1;;;;;;61991:1140:0:o;46883:315::-;47038:8;-1:-1:-1;;;;;47029:17:0;:5;-1:-1:-1;;;;;47029:17:0;;;47021:55;;;;-1:-1:-1;;;47021:55:0;;13643:2:1;47021:55:0;;;13625:21:1;13682:2;13662:18;;;13655:30;13721:27;13701:18;;;13694:55;13766:18;;47021:55:0;13615:175:1;47021:55:0;-1:-1:-1;;;;;47087:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;47087:46:0;;;;;;;;;;47149:41;;10759::1;;;47149::0;;10732:18:1;47149:41:0;;;;;;;46883:315;;;:::o;41879:313::-;42035:28;42045:4;42051:2;42055:7;42035:9;:28::i;:::-;42082:47;42105:4;42111:2;42115:7;42124:4;42082:22;:47::i;:::-;42074:110;;;;-1:-1:-1;;;42074:110:0;;;;;;;:::i;6283:723::-;6339:13;6560:10;6556:53;;-1:-1:-1;;6587:10:0;;;;;;;;;;;;-1:-1:-1;;;6587:10:0;;;;;6283:723::o;6556:53::-;6634:5;6619:12;6675:78;6682:9;;6675:78;;6708:8;;;;:::i;:::-;;-1:-1:-1;6731:10:0;;-1:-1:-1;6739:2:0;6731:10;;:::i;:::-;;;6675:78;;;6763:19;6795:6;6785:17;;;;;;-1:-1:-1;;;6785:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6785:17:0;;6763:39;;6813:154;6820:10;;6813:154;;6847:11;6857:1;6847:11;;:::i;:::-;;-1:-1:-1;6916:10:0;6924:2;6916:5;:10;:::i;:::-;6903:24;;:2;:24;:::i;:::-;6890:39;;6873:6;6880;6873:14;;;;;;-1:-1:-1;;;6873:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;6873:56:0;;;;;;;;-1:-1:-1;6944:11:0;6953:2;6944:11;;:::i;:::-;;;6813:154;;52741:589;-1:-1:-1;;;;;52947:18:0;;52943:187;;52982:40;53014:7;54157:10;:17;;54130:24;;;;:15;:24;;;;;:44;;;54185:24;;;;;;;;;;;;54053:164;52982:40;52943:187;;;53052:2;-1:-1:-1;;;;;53044:10:0;:4;-1:-1:-1;;;;;53044:10:0;;53040:90;;53071:47;53104:4;53110:7;53071:32;:47::i;:::-;-1:-1:-1;;;;;53144:16:0;;53140:183;;53177:45;53214:7;53177:36;:45::i;53140:183::-;53250:4;-1:-1:-1;;;;;53244:10:0;:2;-1:-1:-1;;;;;53244:10:0;;53240:83;;53271:40;53299:2;53303:7;53271:27;:40::i;43742:319::-;43871:18;43877:2;43881:7;43871:5;:18::i;:::-;43922:53;43953:1;43957:2;43961:7;43970:4;43922:22;:53::i;:::-;43900:153;;;;-1:-1:-1;;;43900:153:0;;;;;;;:::i;1783:669::-;1855:7;1887:1;1883;:5;1875:34;;;;-1:-1:-1;;;1875:34:0;;16234:2:1;1875:34:0;;;16216:21:1;16273:2;16253:18;;;16246:30;-1:-1:-1;;;16292:18:1;;;16285:46;16348:18;;1875:34:0;16206:166:1;1875:34:0;1926:6;1922:20;;-1:-1:-1;1941:1:0;1934:8;;1922:20;1953:10;1966:5;1970:1;1966;:5;:::i;:::-;1953:18;-1:-1:-1;1996:1:0;1986:6;1991:1;1953:18;1986:6;:::i;:::-;:11;1982:107;;;2071:6;2076:1;2071:2;:6;:::i;:::-;2064:13;;;;;1982:107;2161:9;2173:5;2177:1;2173;:5;:::i;:::-;2161:17;-1:-1:-1;2189:9:0;2201:5;2205:1;2201;:5;:::i;:::-;2189:17;-1:-1:-1;2296:9:0;2308:5;2312:1;2308;:5;:::i;:::-;2296:17;-1:-1:-1;2324:9:0;2336:5;2340:1;2336;:5;:::i;:::-;2324:17;-1:-1:-1;2378:66:0;2428:15;2441:1;2428:8;:1;2324:17;2428:5;:8::i;:::-;:12;;:15::i;:::-;2378:45;2414:8;:1;2420;2414:5;:8::i;:::-;2378:31;2400:8;:1;2406;2400:5;:8::i;:::-;2379:15;2392:1;2379:8;:1;2385;2379:5;:8::i;:::-;:12;;:15::i;:::-;2378:21;;:31::i;:66::-;2371:73;;;;;;;1783:669;;;;;;:::o;47986:853::-;48140:4;-1:-1:-1;;;;;48161:13:0;;13471:19;:23;48157:675;;48197:71;;-1:-1:-1;;;48197:71:0;;-1:-1:-1;;;;;48197:36:0;;;;;:71;;9109:10;;48248:4;;48254:7;;48263:4;;48197:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48197:71:0;;;;;;;;-1:-1:-1;;48197:71:0;;;;;;;;;;;;:::i;:::-;;;48193:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48438:13:0;;48434:328;;48481:60;;-1:-1:-1;;;48481:60:0;;;;;;;:::i;48434:328::-;48712:6;48706:13;48697:6;48693:2;48689:15;48682:38;48193:584;-1:-1:-1;;;;;;48319:51:0;-1:-1:-1;;;48319:51:0;;-1:-1:-1;48312:58:0;;48157:675;-1:-1:-1;48816:4:0;47986:853;;;;;;:::o;54844:988::-;55110:22;55160:1;55135:22;55152:4;55135:16;:22::i;:::-;:26;;;;:::i;:::-;55172:18;55193:26;;;:17;:26;;;;;;55110:51;;-1:-1:-1;55326:28:0;;;55322:328;;-1:-1:-1;;;;;55393:18:0;;55371:19;55393:18;;;:12;:18;;;;;;;;:34;;;;;;;;;55444:30;;;;;;:44;;;55561:30;;:17;:30;;;;;:43;;;55322:328;-1:-1:-1;55746:26:0;;;;:17;:26;;;;;;;;55739:33;;;-1:-1:-1;;;;;55790:18:0;;;;;:12;:18;;;;;:34;;;;;;;55783:41;54844:988::o;56127:1079::-;56405:10;:17;56380:22;;56405:21;;56425:1;;56405:21;:::i;:::-;56437:18;56458:24;;;:15;:24;;;;;;56831:10;:26;;56380:46;;-1:-1:-1;56458:24:0;;56380:46;;56831:26;;;;-1:-1:-1;;;56831:26:0;;;;;;;;;;;;;;;;;56809:48;;56895:11;56870:10;56881;56870:22;;;;;;-1:-1:-1;;;56870:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;56975:28;;;:15;:28;;;;;;;:41;;;57147:24;;;;;57140:31;57182:10;:16;;;;;-1:-1:-1;;;57182:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;56127:1079;;;;:::o;53631:221::-;53716:14;53733:20;53750:2;53733:16;:20::i;:::-;-1:-1:-1;;;;;53764:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;53809:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;53631:221:0:o;44397:439::-;-1:-1:-1;;;;;44477:16:0;;44469:61;;;;-1:-1:-1;;;44469:61:0;;15873:2:1;44469:61:0;;;15855:21:1;;;15892:18;;;15885:30;15951:34;15931:18;;;15924:62;16003:18;;44469:61:0;15845:182:1;44469:61:0;42570:4;42594:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42594:16:0;:30;44541:58;;;;-1:-1:-1;;;44541:58:0;;12881:2:1;44541:58:0;;;12863:21:1;12920:2;12900:18;;;12893:30;12959;12939:18;;;12932:58;13007:18;;44541:58:0;12853:178:1;44541:58:0;44612:45;44641:1;44645:2;44649:7;44612:20;:45::i;:::-;-1:-1:-1;;;;;44670:13:0;;;;;;:9;:13;;;;;:18;;44687:1;;44670:13;:18;;44687:1;;44670:18;:::i;:::-;;;;-1:-1:-1;;44699:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;44699:21:0;-1:-1:-1;;;;;44699:21:0;;;;;;;;44738:33;;44699:16;;;44738:33;;44699:16;;44738:33;61820:156:::1;61758:225:::0;:::o;1062:98::-;1120:7;1147:5;1151:1;1147;:5;:::i;1461:98::-;1519:7;1546:5;1550:1;1546;:5;:::i;324:98::-;382:7;409:5;413:1;409;:5;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:257::-;484:6;537:2;525:9;516:7;512:23;508:32;505:2;;;558:6;550;543:22;505:2;602:9;589:23;621:31;646:5;621:31;:::i;957:398::-;1025:6;1033;1086:2;1074:9;1065:7;1061:23;1057:32;1054:2;;;1107:6;1099;1092:22;1054:2;1151:9;1138:23;1170:31;1195:5;1170:31;:::i;:::-;1220:5;-1:-1:-1;1277:2:1;1262:18;;1249:32;1290:33;1249:32;1290:33;:::i;:::-;1342:7;1332:17;;;1044:311;;;;;:::o;1360:466::-;1437:6;1445;1453;1506:2;1494:9;1485:7;1481:23;1477:32;1474:2;;;1527:6;1519;1512:22;1474:2;1571:9;1558:23;1590:31;1615:5;1590:31;:::i;:::-;1640:5;-1:-1:-1;1697:2:1;1682:18;;1669:32;1710:33;1669:32;1710:33;:::i;:::-;1464:362;;1762:7;;-1:-1:-1;;;1816:2:1;1801:18;;;;1788:32;;1464:362::o;1831:824::-;1926:6;1934;1942;1950;2003:3;1991:9;1982:7;1978:23;1974:33;1971:2;;;2025:6;2017;2010:22;1971:2;2069:9;2056:23;2088:31;2113:5;2088:31;:::i;:::-;2138:5;-1:-1:-1;2195:2:1;2180:18;;2167:32;2208:33;2167:32;2208:33;:::i;:::-;2260:7;-1:-1:-1;2314:2:1;2299:18;;2286:32;;-1:-1:-1;2369:2:1;2354:18;;2341:32;2396:18;2385:30;;2382:2;;;2433:6;2425;2418:22;2382:2;2461:22;;2514:4;2506:13;;2502:27;-1:-1:-1;2492:2:1;;2548:6;2540;2533:22;2492:2;2576:73;2641:7;2636:2;2623:16;2618:2;2614;2610:11;2576:73;:::i;:::-;2566:83;;;1961:694;;;;;;;:::o;2660:392::-;2725:6;2733;2786:2;2774:9;2765:7;2761:23;2757:32;2754:2;;;2807:6;2799;2792:22;2754:2;2851:9;2838:23;2870:31;2895:5;2870:31;:::i;:::-;2920:5;-1:-1:-1;2977:2:1;2962:18;;2949:32;2990:30;2949:32;2990:30;:::i;3057:325::-;3125:6;3133;3186:2;3174:9;3165:7;3161:23;3157:32;3154:2;;;3207:6;3199;3192:22;3154:2;3251:9;3238:23;3270:31;3295:5;3270:31;:::i;:::-;3320:5;3372:2;3357:18;;;;3344:32;;-1:-1:-1;;;3144:238:1:o;3387:1077::-;3471:6;3502:2;3545;3533:9;3524:7;3520:23;3516:32;3513:2;;;3566:6;3558;3551:22;3513:2;3611:9;3598:23;3640:18;3681:2;3673:6;3670:14;3667:2;;;3702:6;3694;3687:22;3667:2;3745:6;3734:9;3730:22;3720:32;;3790:7;3783:4;3779:2;3775:13;3771:27;3761:2;;3817:6;3809;3802:22;3761:2;3858;3845:16;3880:2;3876;3873:10;3870:2;;;3886:18;;:::i;:::-;3932:2;3929:1;3925:10;3915:20;;3955:28;3979:2;3975;3971:11;3955:28;:::i;:::-;4017:15;;;4048:12;;;;4080:11;;;4110;;;4106:20;;4103:33;-1:-1:-1;4100:2:1;;;4154:6;4146;4139:22;4100:2;4181:6;4172:15;;4196:238;4210:2;4207:1;4204:9;4196:238;;;4281:3;4268:17;4255:30;;4298:31;4323:5;4298:31;:::i;:::-;4342:18;;;4228:1;4221:9;;;;;4380:12;;;;4412;;4196:238;;;-1:-1:-1;4453:5:1;3482:982;-1:-1:-1;;;;;;;;3482:982:1:o;4469:255::-;4536:6;4589:2;4577:9;4568:7;4564:23;4560:32;4557:2;;;4610:6;4602;4595:22;4557:2;4647:9;4641:16;4666:28;4688:5;4666:28;:::i;4729:190::-;4788:6;4841:2;4829:9;4820:7;4816:23;4812:32;4809:2;;;4862:6;4854;4847:22;4809:2;-1:-1:-1;4890:23:1;;4799:120;-1:-1:-1;4799:120:1:o;4924:255::-;4982:6;5035:2;5023:9;5014:7;5010:23;5006:32;5003:2;;;5056:6;5048;5041:22;5003:2;5100:9;5087:23;5119:30;5143:5;5119:30;:::i;5184:259::-;5253:6;5306:2;5294:9;5285:7;5281:23;5277:32;5274:2;;;5327:6;5319;5312:22;5274:2;5364:9;5358:16;5383:30;5407:5;5383:30;:::i;5725:480::-;5794:6;5847:2;5835:9;5826:7;5822:23;5818:32;5815:2;;;5868:6;5860;5853:22;5815:2;5913:9;5900:23;5946:18;5938:6;5935:30;5932:2;;;5983:6;5975;5968:22;5932:2;6011:22;;6064:4;6056:13;;6052:27;-1:-1:-1;6042:2:1;;6098:6;6090;6083:22;6042:2;6126:73;6191:7;6186:2;6173:16;6168:2;6164;6160:11;6126:73;:::i;6405:194::-;6475:6;6528:2;6516:9;6507:7;6503:23;6499:32;6496:2;;;6549:6;6541;6534:22;6496:2;-1:-1:-1;6577:16:1;;6486:113;-1:-1:-1;6486:113:1:o;6604:258::-;6672:6;6680;6733:2;6721:9;6712:7;6708:23;6704:32;6701:2;;;6754:6;6746;6739:22;6701:2;-1:-1:-1;;6782:23:1;;;6852:2;6837:18;;;6824:32;;-1:-1:-1;6691:171:1:o;6867:257::-;6908:3;6946:5;6940:12;6973:6;6968:3;6961:19;6989:63;7045:6;7038:4;7033:3;7029:14;7022:4;7015:5;7011:16;6989:63;:::i;:::-;7106:2;7085:15;-1:-1:-1;;7081:29:1;7072:39;;;;7113:4;7068:50;;6916:208;-1:-1:-1;;6916:208:1:o;7129:185::-;7171:3;7209:5;7203:12;7224:52;7269:6;7264:3;7257:4;7250:5;7246:16;7224:52;:::i;:::-;7292:16;;;;;7179:135;-1:-1:-1;;7179:135:1:o;7437:1305::-;7714:3;7743;7778:6;7772:13;7808:3;7830:1;7858:9;7854:2;7850:18;7840:28;;7918:2;7907:9;7903:18;7940;7930:2;;7984:4;7976:6;7972:17;7962:27;;7930:2;8010;8058;8050:6;8047:14;8027:18;8024:38;8021:2;;;-1:-1:-1;;;8085:33:1;;8141:4;8138:1;8131:15;8171:4;8092:3;8159:17;8021:2;8202:18;8229:104;;;;8347:1;8342:322;;;;8195:469;;8229:104;-1:-1:-1;;8262:24:1;;8250:37;;8307:16;;;;-1:-1:-1;8229:104:1;;8342:322;23133:4;23152:17;;;23202:4;23186:21;;8437:3;8453:165;8467:6;8464:1;8461:13;8453:165;;;8545:14;;8532:11;;;8525:35;8588:16;;;;8482:10;;8453:165;;;8457:3;;8647:6;8642:3;8638:16;8631:23;;8195:469;;;;;;;8680:56;8705:30;8731:3;8723:6;8705:30;:::i;:::-;-1:-1:-1;;;7379:20:1;;7424:1;7415:11;;7369:63;8680:56;8673:63;7722:1020;-1:-1:-1;;;;;7722:1020:1:o;9389:488::-;-1:-1:-1;;;;;9658:15:1;;;9640:34;;9710:15;;9705:2;9690:18;;9683:43;9757:2;9742:18;;9735:34;;;9805:3;9800:2;9785:18;;9778:31;;;9583:4;;9826:45;;9851:19;;9843:6;9826:45;:::i;:::-;9818:53;9592:285;-1:-1:-1;;;;;;9592:285:1:o;9882:732::-;-1:-1:-1;;;;;10130:32:1;;10112:51;;10100:2;10182;10200:18;;;10193:30;;;10272:13;;10085:18;;;10294:22;;;10052:4;;10373:15;;;;10182:2;10347;10332:18;;;10052:4;10419:169;10433:6;10430:1;10427:13;10419:169;;;10494:13;;10482:26;;10563:15;;;;10528:12;;;;10455:1;10448:9;10419:169;;;-1:-1:-1;10605:3:1;;10061:553;-1:-1:-1;;;;;;;10061:553:1:o;10811:219::-;10960:2;10949:9;10942:21;10923:4;10980:44;11020:2;11009:9;11005:18;10997:6;10980:44;:::i;11447:414::-;11649:2;11631:21;;;11688:2;11668:18;;;11661:30;11727:34;11722:2;11707:18;;11700:62;-1:-1:-1;;;11793:2:1;11778:18;;11771:48;11851:3;11836:19;;11621:240::o;20417:410::-;20619:2;20601:21;;;20658:2;20638:18;;;20631:30;20697:34;20692:2;20677:18;;20670:62;-1:-1:-1;;;20763:2:1;20748:18;;20741:44;20817:3;20802:19;;20591:236::o;22806:275::-;22877:2;22871:9;22942:2;22923:13;;-1:-1:-1;;22919:27:1;22907:40;;22977:18;22962:34;;22998:22;;;22959:62;22956:2;;;23024:18;;:::i;:::-;23060:2;23053:22;22851:230;;-1:-1:-1;22851:230:1:o;23218:128::-;23258:3;23289:1;23285:6;23282:1;23279:13;23276:2;;;23295:18;;:::i;:::-;-1:-1:-1;23331:9:1;;23266:80::o;23351:120::-;23391:1;23417;23407:2;;23422:18;;:::i;:::-;-1:-1:-1;23456:9:1;;23397:74::o;23476:168::-;23516:7;23582:1;23578;23574:6;23570:14;23567:1;23564:21;23559:1;23552:9;23545:17;23541:45;23538:2;;;23589:18;;:::i;:::-;-1:-1:-1;23629:9:1;;23528:116::o;23649:125::-;23689:4;23717:1;23714;23711:8;23708:2;;;23722:18;;:::i;:::-;-1:-1:-1;23759:9:1;;23698:76::o;23779:258::-;23851:1;23861:113;23875:6;23872:1;23869:13;23861:113;;;23951:11;;;23945:18;23932:11;;;23925:39;23897:2;23890:10;23861:113;;;23992:6;23989:1;23986:13;23983:2;;;-1:-1:-1;;24027:1:1;24009:16;;24002:27;23832:205::o;24042:136::-;24081:3;24109:5;24099:2;;24118:18;;:::i;:::-;-1:-1:-1;;;24154:18:1;;24089:89::o;24183:380::-;24262:1;24258:12;;;;24305;;;24326:2;;24380:4;24372:6;24368:17;24358:27;;24326:2;24433;24425:6;24422:14;24402:18;24399:38;24396:2;;;24479:10;24474:3;24470:20;24467:1;24460:31;24514:4;24511:1;24504:15;24542:4;24539:1;24532:15;24396:2;;24238:325;;;:::o;24568:135::-;24607:3;-1:-1:-1;;24628:17:1;;24625:2;;;24648:18;;:::i;:::-;-1:-1:-1;24695:1:1;24684:13;;24615:88::o;24708:112::-;24740:1;24766;24756:2;;24771:18;;:::i;:::-;-1:-1:-1;24805:9:1;;24746:74::o;24825:127::-;24886:10;24881:3;24877:20;24874:1;24867:31;24917:4;24914:1;24907:15;24941:4;24938:1;24931:15;24957:127;25018:10;25013:3;25009:20;25006:1;24999:31;25049:4;25046:1;25039:15;25073:4;25070:1;25063:15;25089:127;25150:10;25145:3;25141:20;25138:1;25131:31;25181:4;25178:1;25171:15;25205:4;25202:1;25195:15;25221:131;-1:-1:-1;;;;;25296:31:1;;25286:42;;25276:2;;25342:1;25339;25332:12;25357:118;25443:5;25436:13;25429:21;25422:5;25419:32;25409:2;;25465:1;25462;25455:12;25480:131;-1:-1:-1;;;;;;25554:32:1;;25544:43;;25534:2;;25601:1;25598;25591:12
Swarm Source
ipfs://31bea0fcde35274aa2358ef29690519105d1a9cb7af93f96ce413669ff8475b3
[ 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.