Overview
CRO Balance
0 CRO
CRO Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,209 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 15834923 | 25 days ago | IN | 0 CRO | 0.1600005 | ||||
Set Approval For... | 14749018 | 96 days ago | IN | 0 CRO | 0.23325584 | ||||
Set Approval For... | 14309029 | 125 days ago | IN | 0 CRO | 0.23332515 | ||||
Set Approval For... | 14255019 | 128 days ago | IN | 0 CRO | 0.23332515 | ||||
Set Approval For... | 13920755 | 150 days ago | IN | 0 CRO | 0.14688773 | ||||
Set Approval For... | 13899019 | 152 days ago | IN | 0 CRO | 0.1541823 | ||||
Set Approval For... | 13898865 | 152 days ago | IN | 0 CRO | 0.1541823 | ||||
Safe Transfer Fr... | 13743584 | 162 days ago | IN | 0 CRO | 0.46495675 | ||||
Safe Transfer Fr... | 13743573 | 162 days ago | IN | 0 CRO | 0.46476218 | ||||
Set Approval For... | 13196297 | 198 days ago | IN | 0 CRO | 0.14690955 | ||||
Set Approval For... | 13108973 | 204 days ago | IN | 0 CRO | 0.1238841 | ||||
Set Approval For... | 13108970 | 204 days ago | IN | 0 CRO | 0.1238841 | ||||
Set Approval For... | 12349391 | 253 days ago | IN | 0 CRO | 0.4666503 | ||||
Set Approval For... | 11473456 | 310 days ago | IN | 0 CRO | 0.11193315 | ||||
Set Approval For... | 11181050 | 329 days ago | IN | 0 CRO | 0.21343458 | ||||
Set Approval For... | 10672876 | 362 days ago | IN | 0 CRO | 0.21448071 | ||||
Set Approval For... | 10667975 | 362 days ago | IN | 0 CRO | 0.21456026 | ||||
Set Approval For... | 10306929 | 386 days ago | IN | 0 CRO | 0.12248263 | ||||
Set Approval For... | 10306841 | 386 days ago | IN | 0 CRO | 0.11316527 | ||||
Set Approval For... | 10210437 | 392 days ago | IN | 0 CRO | 0.21551875 | ||||
Set Approval For... | 10085688 | 400 days ago | IN | 0 CRO | 0.21571188 | ||||
Set Approval For... | 9224628 | 457 days ago | IN | 0 CRO | 0.21759365 | ||||
Set Approval For... | 9224585 | 457 days ago | IN | 0 CRO | 0.21759374 | ||||
Set Approval For... | 9125947 | 463 days ago | IN | 0 CRO | 0.21773313 | ||||
Set Approval For... | 9089455 | 465 days ago | IN | 0 CRO | 0.2178103 |
Loading...
Loading
Contract Name:
MiCROBOTS
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-04-26 */ // Sources flattened with hardhat v2.8.4 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File @openzeppelin/contracts/utils/[email protected] // 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/[email protected] // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // 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/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (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`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // 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/utils/[email protected] // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] // 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/[email protected] // OpenZeppelin Contracts (last updated v4.5.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: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] // 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/[email protected] // 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 contracts/oldDrops/MicroAirdrop.sol pragma solidity ^0.8.4; contract MiCROBOTS is Ownable, ERC721Enumerable { using Counters for Counters.Counter; Counters.Counter public _tokenIdCounter; uint16[] order; uint128 constant MAX_TOKENS = 1250; uint8 private currentChunkIndex; string baseURI = "ipfs://Qmc47FX5oyFCqKxLaYLbX2P9LzXdMdCLZVxkDGn1GKmTCh"; address private artist = 0x177aB682d6e7c452E68c853DE5b9139fc76E4c4F; constructor() ERC721("MiCROBOTS", "MICRO") { } function getLen() public view returns(uint) { return order.length; } function setArtist(address _newArtist) external onlyOwner { artist = _newArtist; } function setSequnceChunk(uint8 _chunkIndex, uint16[] calldata _chunk) public onlyOwner { require(currentChunkIndex <= _chunkIndex, "chunkIndex exists"); if (_chunkIndex == 0) { order = _chunk; } else { uint len = _chunk.length; for(uint i = 0; i < len; i ++) { order.push(_chunk[i]); } } currentChunkIndex = _chunkIndex + 1; } function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } function airdropMint(address _sender, uint256 _amount) external onlyOwner{ for (uint256 i = 0; i < _amount; i ++) { safeMint(_sender); } } function mint(uint256 _amount) external { require(msg.sender == artist, "not artist"); for (uint256 i = 0; i < _amount; i ++) { safeMint(artist); } } 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 safeMint(address _to) private { uint256 tokenId; tokenId = _tokenIdCounter.current(); require(tokenId < MAX_TOKENS, "sold out!"); _tokenIdCounter.increment(); _safeMint(_to, order[tokenId]); } function maxSupply() external pure returns (uint256) { return MAX_TOKENS; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_tokenIdCounter","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"airdropMint","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newArtist","type":"address"}],"name":"setArtist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_chunkIndex","type":"uint8"},{"internalType":"uint16[]","name":"_chunk","type":"uint16[]"}],"name":"setSequnceChunk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405260356080818152906200232360a03980516200002991600e9160209091019062000140565b50600f80546001600160a01b03191673177ab682d6e7c452e68c853de5b9139fc76e4c4f1790553480156200005d57600080fd5b50604051806040016040528060098152602001684d6943524f424f545360b81b815250604051806040016040528060058152602001644d4943524f60d81b815250620000b8620000b2620000ec60201b60201c565b620000f0565b8151620000cd90600190602085019062000140565b508051620000e390600290602084019062000140565b50505062000223565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200014e90620001e6565b90600052602060002090601f016020900481019282620001725760008555620001bd565b82601f106200018d57805160ff1916838001178555620001bd565b82800160010185558215620001bd579182015b82811115620001bd578251825591602001919060010190620001a0565b50620001cb929150620001cf565b5090565b5b80821115620001cb5760008155600101620001d0565b600181811c90821680620001fb57607f821691505b602082108114156200021d57634e487b7160e01b600052602260045260246000fd5b50919050565b6120f080620002336000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c80636352211e116100f9578063a22cb46511610097578063d4c9753311610071578063d4c9753314610367578063d5abeb011461037a578063e985e9c514610382578063f2fde38b146103be57600080fd5b8063a22cb4651461032e578063b88d4fde14610341578063c87b56dd1461035457600080fd5b806384c4bd4b116100d357806384c4bd4b146102f85780638da5cb5b1461030257806395d89b4114610313578063a0712d681461031b57600080fd5b80636352211e146102ca57806370a08231146102dd578063715018a6146102f057600080fd5b806323b872dd1161016657806342842e0e1161014057806342842e0e146102895780634a90be571461029c5780634f6ccce7146102a457806355f804b3146102b757600080fd5b806323b872dd146102505780632f745c59146102635780633b3c523a1461027657600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b31461021657806318160ddd1461022b57806322ad06701461023d575b600080fd5b6101c16101bc366004611bea565b6103d1565b60405190151581526020015b60405180910390f35b6101de6103fc565b6040516101cd9190611e79565b6101fe6101f9366004611c8a565b61048e565b6040516001600160a01b0390911681526020016101cd565b610229610224366004611bc1565b610528565b005b6009545b6040519081526020016101cd565b61022961024b366004611bc1565b61063e565b61022961025e366004611ad3565b61068e565b61022f610271366004611bc1565b6106bf565b610229610284366004611ca2565b610755565b610229610297366004611ad3565b61089b565b600c5461022f565b61022f6102b2366004611c8a565b6108b6565b6102296102c5366004611c22565b610957565b6101fe6102d8366004611c8a565b610998565b61022f6102eb366004611a80565b610a0f565b610229610a96565b600b5461022f9081565b6000546001600160a01b03166101fe565b6101de610acc565b610229610329366004611c8a565b610adb565b61022961033c366004611b87565b610b54565b61022961034f366004611b0e565b610b5f565b6101de610362366004611c8a565b610b97565b610229610375366004611a80565b610c4b565b6104e261022f565b6101c1610390366004611aa1565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102296103cc366004611a80565b610c97565b60006001600160e01b0319821663780e9d6360e01b14806103f657506103f682610d32565b92915050565b60606001805461040b90611ff8565b80601f016020809104026020016040519081016040528092919081815260200182805461043790611ff8565b80156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661050c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061053382610998565b9050806001600160a01b0316836001600160a01b031614156105a15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610503565b336001600160a01b03821614806105bd57506105bd8133610390565b61062f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610503565b6106398383610d82565b505050565b6000546001600160a01b031633146106685760405162461bcd60e51b815260040161050390611ede565b60005b818110156106395761067c83610df0565b8061068681612033565b91505061066b565b6106983382610e94565b6106b45760405162461bcd60e51b815260040161050390611f13565b610639838383610f8b565b60006106ca83610a0f565b821061072c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610503565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b0316331461077f5760405162461bcd60e51b815260040161050390611ede565b600d5460ff808516911611156107cb5760405162461bcd60e51b81526020600482015260116024820152706368756e6b496e6465782065786973747360781b6044820152606401610503565b60ff83166107e5576107df600c83836118b8565b50610877565b8060005b8181101561087457600c84848381811061081357634e487b7160e01b600052603260045260246000fd5b90506020020160208101906108289190611c68565b81546001810183556000928352602090922060108304018054600f9093166002026101000a61ffff8181021990941692909316929092021790558061086c81612033565b9150506107e9565b50505b610882836001611f7c565b600d805460ff191660ff92909216919091179055505050565b61063983838360405180602001604052806000815250610b5f565b60006108c160095490565b82106109245760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610503565b6009828154811061094557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000546001600160a01b031633146109815760405162461bcd60e51b815260040161050390611ede565b805161099490600e906020840190611965565b5050565b6000818152600360205260408120546001600160a01b0316806103f65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610503565b60006001600160a01b038216610a7a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610503565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610ac05760405162461bcd60e51b815260040161050390611ede565b610aca6000611132565b565b60606002805461040b90611ff8565b600f546001600160a01b03163314610b225760405162461bcd60e51b815260206004820152600a6024820152691b9bdd08185c9d1a5cdd60b21b6044820152606401610503565b60005b8181101561099457600f54610b42906001600160a01b0316610df0565b80610b4c81612033565b915050610b25565b610994338383611182565b610b693383610e94565b610b855760405162461bcd60e51b815260040161050390611f13565b610b9184848484611251565b50505050565b6000818152600360205260409020546060906001600160a01b0316610c165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610503565b6000600e610c2384611284565b604051602001610c34929190611d72565b60408051601f198184030181529190529392505050565b6000546001600160a01b03163314610c755760405162461bcd60e51b815260040161050390611ede565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610cc15760405162461bcd60e51b815260040161050390611ede565b6001600160a01b038116610d265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610503565b610d2f81611132565b50565b60006001600160e01b031982166380ac58cd60e01b1480610d6357506001600160e01b03198216635b5e139f60e01b145b806103f657506301ffc9a760e01b6001600160e01b03198316146103f6565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610db782610998565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610dfb600b5490565b90506104e28110610e3a5760405162461bcd60e51b8152602060048201526009602482015268736f6c64206f75742160b81b6044820152606401610503565b610e48600b80546001019055565b61099482600c8381548110610e6d57634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff1661139e565b6000818152600360205260408120546001600160a01b0316610f0d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610503565b6000610f1883610998565b9050806001600160a01b0316846001600160a01b03161480610f535750836001600160a01b0316610f488461048e565b6001600160a01b0316145b80610f8357506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f9e82610998565b6001600160a01b0316146110025760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610503565b6001600160a01b0382166110645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610503565b61106f8383836113b8565b61107a600082610d82565b6001600160a01b03831660009081526004602052604081208054600192906110a3908490611fb5565b90915550506001600160a01b03821660009081526004602052604081208054600192906110d1908490611f64565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156111e45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610503565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61125c848484610f8b565b61126884848484611470565b610b915760405162461bcd60e51b815260040161050390611e8c565b6060816112a85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112d257806112bc81612033565b91506112cb9050600a83611fa1565b91506112ac565b60008167ffffffffffffffff8111156112fb57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611325576020820181803683370190505b5090505b8415610f835761133a600183611fb5565b9150611347600a8661204e565b611352906030611f64565b60f81b81838151811061137557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611397600a86611fa1565b9450611329565b61099482826040518060200160405280600081525061157d565b6001600160a01b0383166114135761140e81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611436565b816001600160a01b0316836001600160a01b0316146114365761143683826115b0565b6001600160a01b03821661144d576106398161164d565b826001600160a01b0316826001600160a01b031614610639576106398282611726565b60006001600160a01b0384163b1561157257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114b4903390899088908890600401611e3c565b602060405180830381600087803b1580156114ce57600080fd5b505af19250505080156114fe575060408051601f3d908101601f191682019092526114fb91810190611c06565b60015b611558573d80801561152c576040519150601f19603f3d011682016040523d82523d6000602084013e611531565b606091505b5080516115505760405162461bcd60e51b815260040161050390611e8c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f83565b506001949350505050565b611587838361176a565b6115946000848484611470565b6106395760405162461bcd60e51b815260040161050390611e8c565b600060016115bd84610a0f565b6115c79190611fb5565b60008381526008602052604090205490915080821461161a576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061165f90600190611fb5565b6000838152600a60205260408120546009805493945090928490811061169557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600983815481106116c457634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061170a57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061173183610a0f565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166117c05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610503565b6000818152600360205260409020546001600160a01b0316156118255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610503565b611831600083836113b8565b6001600160a01b038216600090815260046020526040812080546001929061185a908490611f64565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805482825590600052602060002090600f016010900481019282156119555791602002820160005b8382111561192557833561ffff1683826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026118e1565b80156119535782816101000a81549061ffff0219169055600201602081600101049283019260010302611925565b505b506119619291506119d9565b5090565b82805461197190611ff8565b90600052602060002090601f0160209004810192826119935760008555611955565b82601f106119ac57805160ff1916838001178555611955565b82800160010185558215611955579182015b828111156119555782518255916020019190600101906119be565b5b8082111561196157600081556001016119da565b600067ffffffffffffffff80841115611a0957611a0961208e565b604051601f8501601f19908116603f01168101908282118183101715611a3157611a3161208e565b81604052809350858152868686011115611a4a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a7b57600080fd5b919050565b600060208284031215611a91578081fd5b611a9a82611a64565b9392505050565b60008060408385031215611ab3578081fd5b611abc83611a64565b9150611aca60208401611a64565b90509250929050565b600080600060608486031215611ae7578081fd5b611af084611a64565b9250611afe60208501611a64565b9150604084013590509250925092565b60008060008060808587031215611b23578081fd5b611b2c85611a64565b9350611b3a60208601611a64565b925060408501359150606085013567ffffffffffffffff811115611b5c578182fd5b8501601f81018713611b6c578182fd5b611b7b878235602084016119ee565b91505092959194509250565b60008060408385031215611b99578182fd5b611ba283611a64565b915060208301358015158114611bb6578182fd5b809150509250929050565b60008060408385031215611bd3578182fd5b611bdc83611a64565b946020939093013593505050565b600060208284031215611bfb578081fd5b8135611a9a816120a4565b600060208284031215611c17578081fd5b8151611a9a816120a4565b600060208284031215611c33578081fd5b813567ffffffffffffffff811115611c49578182fd5b8201601f81018413611c59578182fd5b610f83848235602084016119ee565b600060208284031215611c79578081fd5b813561ffff81168114611a9a578182fd5b600060208284031215611c9b578081fd5b5035919050565b600080600060408486031215611cb6578283fd5b833560ff81168114611cc6578384fd5b9250602084013567ffffffffffffffff80821115611ce2578384fd5b818601915086601f830112611cf5578384fd5b813581811115611d03578485fd5b8760208260051b8501011115611d17578485fd5b6020830194508093505050509250925092565b60008151808452611d42816020860160208601611fcc565b601f01601f19169290920160200192915050565b60008151611d68818560208601611fcc565b9290920192915050565b600080845482600182811c915080831680611d8e57607f831692505b6020808410821415611dae57634e487b7160e01b87526022600452602487fd5b818015611dc25760018114611dd357611dff565b60ff19861689528489019650611dff565b60008b815260209020885b86811015611df75781548b820152908501908301611dde565b505084890196505b505050505050611e33611e22611e1c83602f60f81b815260010190565b86611d56565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e6f90830184611d2a565b9695505050505050565b602081526000611a9a6020830184611d2a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f7757611f77612062565b500190565b600060ff821660ff84168060ff03821115611f9957611f99612062565b019392505050565b600082611fb057611fb0612078565b500490565b600082821015611fc757611fc7612062565b500390565b60005b83811015611fe7578181015183820152602001611fcf565b83811115610b915750506000910152565b600181811c9082168061200c57607f821691505b6020821081141561202d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561204757612047612062565b5060010190565b60008261205d5761205d612078565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d2f57600080fdfea2646970667358221220a12c43c8b5b463fc84e3614777422aefbc5abfb907ff8443f348de62aa334bf464736f6c63430008040033697066733a2f2f516d6334374658356f794643714b784c61594c62583250394c7a58644d64434c5a56786b44476e31474b6d544368
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c80636352211e116100f9578063a22cb46511610097578063d4c9753311610071578063d4c9753314610367578063d5abeb011461037a578063e985e9c514610382578063f2fde38b146103be57600080fd5b8063a22cb4651461032e578063b88d4fde14610341578063c87b56dd1461035457600080fd5b806384c4bd4b116100d357806384c4bd4b146102f85780638da5cb5b1461030257806395d89b4114610313578063a0712d681461031b57600080fd5b80636352211e146102ca57806370a08231146102dd578063715018a6146102f057600080fd5b806323b872dd1161016657806342842e0e1161014057806342842e0e146102895780634a90be571461029c5780634f6ccce7146102a457806355f804b3146102b757600080fd5b806323b872dd146102505780632f745c59146102635780633b3c523a1461027657600080fd5b806301ffc9a7146101ae57806306fdde03146101d6578063081812fc146101eb578063095ea7b31461021657806318160ddd1461022b57806322ad06701461023d575b600080fd5b6101c16101bc366004611bea565b6103d1565b60405190151581526020015b60405180910390f35b6101de6103fc565b6040516101cd9190611e79565b6101fe6101f9366004611c8a565b61048e565b6040516001600160a01b0390911681526020016101cd565b610229610224366004611bc1565b610528565b005b6009545b6040519081526020016101cd565b61022961024b366004611bc1565b61063e565b61022961025e366004611ad3565b61068e565b61022f610271366004611bc1565b6106bf565b610229610284366004611ca2565b610755565b610229610297366004611ad3565b61089b565b600c5461022f565b61022f6102b2366004611c8a565b6108b6565b6102296102c5366004611c22565b610957565b6101fe6102d8366004611c8a565b610998565b61022f6102eb366004611a80565b610a0f565b610229610a96565b600b5461022f9081565b6000546001600160a01b03166101fe565b6101de610acc565b610229610329366004611c8a565b610adb565b61022961033c366004611b87565b610b54565b61022961034f366004611b0e565b610b5f565b6101de610362366004611c8a565b610b97565b610229610375366004611a80565b610c4b565b6104e261022f565b6101c1610390366004611aa1565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102296103cc366004611a80565b610c97565b60006001600160e01b0319821663780e9d6360e01b14806103f657506103f682610d32565b92915050565b60606001805461040b90611ff8565b80601f016020809104026020016040519081016040528092919081815260200182805461043790611ff8565b80156104845780601f1061045957610100808354040283529160200191610484565b820191906000526020600020905b81548152906001019060200180831161046757829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b031661050c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061053382610998565b9050806001600160a01b0316836001600160a01b031614156105a15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610503565b336001600160a01b03821614806105bd57506105bd8133610390565b61062f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610503565b6106398383610d82565b505050565b6000546001600160a01b031633146106685760405162461bcd60e51b815260040161050390611ede565b60005b818110156106395761067c83610df0565b8061068681612033565b91505061066b565b6106983382610e94565b6106b45760405162461bcd60e51b815260040161050390611f13565b610639838383610f8b565b60006106ca83610a0f565b821061072c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610503565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b6000546001600160a01b0316331461077f5760405162461bcd60e51b815260040161050390611ede565b600d5460ff808516911611156107cb5760405162461bcd60e51b81526020600482015260116024820152706368756e6b496e6465782065786973747360781b6044820152606401610503565b60ff83166107e5576107df600c83836118b8565b50610877565b8060005b8181101561087457600c84848381811061081357634e487b7160e01b600052603260045260246000fd5b90506020020160208101906108289190611c68565b81546001810183556000928352602090922060108304018054600f9093166002026101000a61ffff8181021990941692909316929092021790558061086c81612033565b9150506107e9565b50505b610882836001611f7c565b600d805460ff191660ff92909216919091179055505050565b61063983838360405180602001604052806000815250610b5f565b60006108c160095490565b82106109245760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610503565b6009828154811061094557634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6000546001600160a01b031633146109815760405162461bcd60e51b815260040161050390611ede565b805161099490600e906020840190611965565b5050565b6000818152600360205260408120546001600160a01b0316806103f65760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610503565b60006001600160a01b038216610a7a5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610503565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b03163314610ac05760405162461bcd60e51b815260040161050390611ede565b610aca6000611132565b565b60606002805461040b90611ff8565b600f546001600160a01b03163314610b225760405162461bcd60e51b815260206004820152600a6024820152691b9bdd08185c9d1a5cdd60b21b6044820152606401610503565b60005b8181101561099457600f54610b42906001600160a01b0316610df0565b80610b4c81612033565b915050610b25565b610994338383611182565b610b693383610e94565b610b855760405162461bcd60e51b815260040161050390611f13565b610b9184848484611251565b50505050565b6000818152600360205260409020546060906001600160a01b0316610c165760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610503565b6000600e610c2384611284565b604051602001610c34929190611d72565b60408051601f198184030181529190529392505050565b6000546001600160a01b03163314610c755760405162461bcd60e51b815260040161050390611ede565b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610cc15760405162461bcd60e51b815260040161050390611ede565b6001600160a01b038116610d265760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610503565b610d2f81611132565b50565b60006001600160e01b031982166380ac58cd60e01b1480610d6357506001600160e01b03198216635b5e139f60e01b145b806103f657506301ffc9a760e01b6001600160e01b03198316146103f6565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610db782610998565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610dfb600b5490565b90506104e28110610e3a5760405162461bcd60e51b8152602060048201526009602482015268736f6c64206f75742160b81b6044820152606401610503565b610e48600b80546001019055565b61099482600c8381548110610e6d57634e487b7160e01b600052603260045260246000fd5b60009182526020909120601082040154600f9091166002026101000a900461ffff1661139e565b6000818152600360205260408120546001600160a01b0316610f0d5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610503565b6000610f1883610998565b9050806001600160a01b0316846001600160a01b03161480610f535750836001600160a01b0316610f488461048e565b6001600160a01b0316145b80610f8357506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610f9e82610998565b6001600160a01b0316146110025760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610503565b6001600160a01b0382166110645760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610503565b61106f8383836113b8565b61107a600082610d82565b6001600160a01b03831660009081526004602052604081208054600192906110a3908490611fb5565b90915550506001600160a01b03821660009081526004602052604081208054600192906110d1908490611f64565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b816001600160a01b0316836001600160a01b031614156111e45760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610503565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b61125c848484610f8b565b61126884848484611470565b610b915760405162461bcd60e51b815260040161050390611e8c565b6060816112a85750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112d257806112bc81612033565b91506112cb9050600a83611fa1565b91506112ac565b60008167ffffffffffffffff8111156112fb57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611325576020820181803683370190505b5090505b8415610f835761133a600183611fb5565b9150611347600a8661204e565b611352906030611f64565b60f81b81838151811061137557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611397600a86611fa1565b9450611329565b61099482826040518060200160405280600081525061157d565b6001600160a01b0383166114135761140e81600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b611436565b816001600160a01b0316836001600160a01b0316146114365761143683826115b0565b6001600160a01b03821661144d576106398161164d565b826001600160a01b0316826001600160a01b031614610639576106398282611726565b60006001600160a01b0384163b1561157257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906114b4903390899088908890600401611e3c565b602060405180830381600087803b1580156114ce57600080fd5b505af19250505080156114fe575060408051601f3d908101601f191682019092526114fb91810190611c06565b60015b611558573d80801561152c576040519150601f19603f3d011682016040523d82523d6000602084013e611531565b606091505b5080516115505760405162461bcd60e51b815260040161050390611e8c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610f83565b506001949350505050565b611587838361176a565b6115946000848484611470565b6106395760405162461bcd60e51b815260040161050390611e8c565b600060016115bd84610a0f565b6115c79190611fb5565b60008381526008602052604090205490915080821461161a576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b60095460009061165f90600190611fb5565b6000838152600a60205260408120546009805493945090928490811061169557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600983815481106116c457634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061170a57634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061173183610a0f565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b0382166117c05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610503565b6000818152600360205260409020546001600160a01b0316156118255760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610503565b611831600083836113b8565b6001600160a01b038216600090815260046020526040812080546001929061185a908490611f64565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805482825590600052602060002090600f016010900481019282156119555791602002820160005b8382111561192557833561ffff1683826101000a81548161ffff021916908361ffff16021790555092602001926002016020816001010492830192600103026118e1565b80156119535782816101000a81549061ffff0219169055600201602081600101049283019260010302611925565b505b506119619291506119d9565b5090565b82805461197190611ff8565b90600052602060002090601f0160209004810192826119935760008555611955565b82601f106119ac57805160ff1916838001178555611955565b82800160010185558215611955579182015b828111156119555782518255916020019190600101906119be565b5b8082111561196157600081556001016119da565b600067ffffffffffffffff80841115611a0957611a0961208e565b604051601f8501601f19908116603f01168101908282118183101715611a3157611a3161208e565b81604052809350858152868686011115611a4a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114611a7b57600080fd5b919050565b600060208284031215611a91578081fd5b611a9a82611a64565b9392505050565b60008060408385031215611ab3578081fd5b611abc83611a64565b9150611aca60208401611a64565b90509250929050565b600080600060608486031215611ae7578081fd5b611af084611a64565b9250611afe60208501611a64565b9150604084013590509250925092565b60008060008060808587031215611b23578081fd5b611b2c85611a64565b9350611b3a60208601611a64565b925060408501359150606085013567ffffffffffffffff811115611b5c578182fd5b8501601f81018713611b6c578182fd5b611b7b878235602084016119ee565b91505092959194509250565b60008060408385031215611b99578182fd5b611ba283611a64565b915060208301358015158114611bb6578182fd5b809150509250929050565b60008060408385031215611bd3578182fd5b611bdc83611a64565b946020939093013593505050565b600060208284031215611bfb578081fd5b8135611a9a816120a4565b600060208284031215611c17578081fd5b8151611a9a816120a4565b600060208284031215611c33578081fd5b813567ffffffffffffffff811115611c49578182fd5b8201601f81018413611c59578182fd5b610f83848235602084016119ee565b600060208284031215611c79578081fd5b813561ffff81168114611a9a578182fd5b600060208284031215611c9b578081fd5b5035919050565b600080600060408486031215611cb6578283fd5b833560ff81168114611cc6578384fd5b9250602084013567ffffffffffffffff80821115611ce2578384fd5b818601915086601f830112611cf5578384fd5b813581811115611d03578485fd5b8760208260051b8501011115611d17578485fd5b6020830194508093505050509250925092565b60008151808452611d42816020860160208601611fcc565b601f01601f19169290920160200192915050565b60008151611d68818560208601611fcc565b9290920192915050565b600080845482600182811c915080831680611d8e57607f831692505b6020808410821415611dae57634e487b7160e01b87526022600452602487fd5b818015611dc25760018114611dd357611dff565b60ff19861689528489019650611dff565b60008b815260209020885b86811015611df75781548b820152908501908301611dde565b505084890196505b505050505050611e33611e22611e1c83602f60f81b815260010190565b86611d56565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e6f90830184611d2a565b9695505050505050565b602081526000611a9a6020830184611d2a565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611f7757611f77612062565b500190565b600060ff821660ff84168060ff03821115611f9957611f99612062565b019392505050565b600082611fb057611fb0612078565b500490565b600082821015611fc757611fc7612062565b500390565b60005b83811015611fe7578181015183820152602001611fcf565b83811115610b915750506000910152565b600181811c9082168061200c57607f821691505b6020821081141561202d57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561204757612047612062565b5060010190565b60008261205d5761205d612078565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610d2f57600080fdfea2646970667358221220a12c43c8b5b463fc84e3614777422aefbc5abfb907ff8443f348de62aa334bf464736f6c63430008040033
Deployed Bytecode Sourcemap
47155:2301:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40931:224;;;;;;:::i;:::-;;:::i;:::-;;;8323:14:1;;8316:22;8298:41;;8286:2;8271:18;40931:224:0;;;;;;;;26659:100;;;:::i;:::-;;;;;;;:::i;28218:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7621:32:1;;;7603:51;;7591:2;7576:18;28218:221:0;7558:102:1;27741:411:0;;;;;;:::i;:::-;;:::i;:::-;;41571:113;41659:10;:17;41571:113;;;16945:25:1;;;16933:2;16918:18;41571:113:0;16900:76:1;48369:174:0;;;;;;:::i;:::-;;:::i;28968:339::-;;;;;;:::i;:::-;;:::i;41239:256::-;;;;;;:::i;:::-;;:::i;47806:445::-;;;;;;:::i;:::-;;:::i;29378:185::-;;;;;;:::i;:::-;;:::i;47612:82::-;47674:5;:12;47612:82;;41761:233;;;;;;:::i;:::-;;:::i;48261:100::-;;;;;;:::i;:::-;;:::i;26353:239::-;;;;;;:::i;:::-;;:::i;26083:208::-;;;;;;:::i;:::-;;:::i;4155:103::-;;;:::i;47252:39::-;;;;;;;3504:87;3550:7;3577:6;-1:-1:-1;;;;;3577:6:0;3504:87;;26828:104;;;:::i;48551:194::-;;;;;;:::i;:::-;;:::i;28511:155::-;;;;;;:::i;:::-;;:::i;29634:328::-;;;;;;:::i;:::-;;:::i;48757:318::-;;;;;;:::i;:::-;;:::i;47702:96::-;;;;;;:::i;:::-;;:::i;49364:89::-;47349:4;49364:89;;28737:164;;;;;;:::i;:::-;-1:-1:-1;;;;;28858:25:0;;;28834:4;28858:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28737:164;4413:201;;;;;;:::i;:::-;;:::i;40931:224::-;41033:4;-1:-1:-1;;;;;;41057:50:0;;-1:-1:-1;;;41057:50:0;;:90;;;41111:36;41135:11;41111:23;:36::i;:::-;41050:97;40931:224;-1:-1:-1;;40931:224:0:o;26659:100::-;26713:13;26746:5;26739:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26659:100;:::o;28218:221::-;28294:7;31561:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31561:16:0;28314:73;;;;-1:-1:-1;;;28314:73:0;;13895:2:1;28314:73:0;;;13877:21:1;13934:2;13914:18;;;13907:30;13973:34;13953:18;;;13946:62;-1:-1:-1;;;14024:18:1;;;14017:42;14076:19;;28314:73:0;;;;;;;;;-1:-1:-1;28407:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28407:24:0;;28218:221::o;27741:411::-;27822:13;27838:23;27853:7;27838:14;:23::i;:::-;27822:39;;27886:5;-1:-1:-1;;;;;27880:11:0;:2;-1:-1:-1;;;;;27880:11:0;;;27872:57;;;;-1:-1:-1;;;27872:57:0;;15085:2:1;27872:57:0;;;15067:21:1;15124:2;15104:18;;;15097:30;15163:34;15143:18;;;15136:62;-1:-1:-1;;;15214:18:1;;;15207:31;15255:19;;27872:57:0;15057:223:1;27872:57:0;2302:10;-1:-1:-1;;;;;27964:21:0;;;;:62;;-1:-1:-1;27989:37:0;28006:5;2302:10;28737:164;:::i;27989:37::-;27942:168;;;;-1:-1:-1;;;27942:168:0;;12288:2:1;27942:168:0;;;12270:21:1;12327:2;12307:18;;;12300:30;12366:34;12346:18;;;12339:62;12437:26;12417:18;;;12410:54;12481:19;;27942:168:0;12260:246:1;27942:168:0;28123:21;28132:2;28136:7;28123:8;:21::i;:::-;27741:411;;;:::o;48369:174::-;3550:7;3577:6;-1:-1:-1;;;;;3577:6:0;2302:10;3724:23;3716:68;;;;-1:-1:-1;;;3716:68:0;;;;;;;:::i;:::-;48458:9:::1;48453:83;48477:7;48473:1;:11;48453:83;;;48507:17;48516:7;48507:8;:17::i;:::-;48486:4:::0;::::1;::::0;::::1;:::i;:::-;;;;48453:83;;28968:339:::0;29163:41;2302:10;29196:7;29163:18;:41::i;:::-;29155:103;;;;-1:-1:-1;;;29155:103:0;;;;;;;:::i;:::-;29271:28;29281:4;29287:2;29291:7;29271:9;:28::i;41239:256::-;41336:7;41372:23;41389:5;41372:16;:23::i;:::-;41364:5;:31;41356:87;;;;-1:-1:-1;;;41356:87:0;;9115:2:1;41356:87:0;;;9097:21:1;9154:2;9134:18;;;9127:30;9193:34;9173:18;;;9166:62;-1:-1:-1;;;9244:18:1;;;9237:41;9295:19;;41356:87:0;9087:233:1;41356:87:0;-1:-1:-1;;;;;;41461:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;41239:256::o;47806:445::-;3550:7;3577:6;-1:-1:-1;;;;;3577:6:0;2302:10;3724:23;3716:68;;;;-1:-1:-1;;;3716:68:0;;;;;;;:::i;:::-;47912:17:::1;::::0;:32:::1;::::0;;::::1;:17:::0;::::1;:32;;47904:62;;;::::0;-1:-1:-1;;;47904:62:0;;16318:2:1;47904:62:0::1;::::0;::::1;16300:21:1::0;16357:2;16337:18;;;16330:30;-1:-1:-1;;;16376:18:1;;;16369:47;16433:18;;47904:62:0::1;16290:167:1::0;47904:62:0::1;47981:16;::::0;::::1;47977:221;;48014:14;:5;48022:6:::0;;48014:14:::1;:::i;:::-;;47977:221;;;48072:6:::0;48061:8:::1;48100:87;48120:3;48116:1;:7;48100:87;;;48150:5;48161:6;;48168:1;48161:9;;;;;-1:-1:-1::0;;;48161:9:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;48150:21:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;48150:21:0;;;::::1;::::0;;;::::1;::::0;::::1;;::::0;;;;;;::::1;;;;;::::0;;::::1;;::::0;;::::1;::::0;;;::::1;::::0;;;::::1;;::::0;;48125:4;::::1;::::0;::::1;:::i;:::-;;;;48100:87;;;;47977:221;;48228:15;:11:::0;48242:1:::1;48228:15;:::i;:::-;48208:17;:35:::0;;-1:-1:-1;;48208:35:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;-1:-1:-1;;;47806:445:0:o;29378:185::-;29516:39;29533:4;29539:2;29543:7;29516:39;;;;;;;;;;;;:16;:39::i;41761:233::-;41836:7;41872:30;41659:10;:17;;41571:113;41872:30;41864:5;:38;41856:95;;;;-1:-1:-1;;;41856:95:0;;15905:2:1;41856:95:0;;;15887:21:1;15944:2;15924:18;;;15917:30;15983:34;15963:18;;;15956:62;-1:-1:-1;;;16034:18:1;;;16027:42;16086:19;;41856:95:0;15877:234:1;41856:95:0;41969:10;41980:5;41969:17;;;;;;-1:-1:-1;;;41969:17:0;;;;;;;;;;;;;;;;;41962:24;;41761:233;;;:::o;48261:100::-;3550:7;3577:6;-1:-1:-1;;;;;3577:6:0;2302:10;3724:23;3716:68;;;;-1:-1:-1;;;3716:68:0;;;;;;;:::i;:::-;48335:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;48261:100:::0;:::o;26353:239::-;26425:7;26461:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26461:16:0;26496:19;26488:73;;;;-1:-1:-1;;;26488:73:0;;13124:2:1;26488:73:0;;;13106:21:1;13163:2;13143:18;;;13136:30;13202:34;13182:18;;;13175:62;-1:-1:-1;;;13253:18:1;;;13246:39;13302:19;;26488:73:0;13096:231:1;26083:208:0;26155:7;-1:-1:-1;;;;;26183:19:0;;26175:74;;;;-1:-1:-1;;;26175:74:0;;12713:2:1;26175:74:0;;;12695:21:1;12752:2;12732:18;;;12725:30;12791:34;12771:18;;;12764:62;-1:-1:-1;;;12842:18:1;;;12835:40;12892:19;;26175:74:0;12685:232:1;26175:74:0;-1:-1:-1;;;;;;26267:16:0;;;;;:9;:16;;;;;;;26083:208::o;4155:103::-;3550:7;3577:6;-1:-1:-1;;;;;3577:6:0;2302:10;3724:23;3716:68;;;;-1:-1:-1;;;3716:68:0;;;;;;;:::i;:::-;4220:30:::1;4247:1;4220:18;:30::i;:::-;4155:103::o:0;26828:104::-;26884:13;26917:7;26910:14;;;;;:::i;48551:194::-;48624:6;;-1:-1:-1;;;;;48624:6:0;48610:10;:20;48602:43;;;;-1:-1:-1;;;48602:43:0;;8776:2:1;48602:43:0;;;8758:21:1;8815:2;8795:18;;;8788:30;-1:-1:-1;;;8834:18:1;;;8827:40;8884:18;;48602:43:0;8748:160:1;48602:43:0;48661:9;48656:82;48680:7;48676:1;:11;48656:82;;;48719:6;;48710:16;;-1:-1:-1;;;;;48719:6:0;48710:8;:16::i;:::-;48689:4;;;;:::i;:::-;;;;48656:82;;28511:155;28606:52;2302:10;28639:8;28649;28606:18;:52::i;29634:328::-;29809:41;2302:10;29842:7;29809:18;:41::i;:::-;29801:103;;;;-1:-1:-1;;;29801:103:0;;;;;;;:::i;:::-;29915:39;29929:4;29935:2;29939:7;29948:5;29915:13;:39::i;:::-;29634:328;;;;:::o;48757:318::-;31537:4;31561:16;;;:7;:16;;;;;;48828:13;;-1:-1:-1;;;;;31561:16:0;48852:76;;;;-1:-1:-1;;;48852:76:0;;14669:2:1;48852:76:0;;;14651:21:1;14708:2;14688:18;;;14681:30;14747:34;14727:18;;;14720:62;-1:-1:-1;;;14798:18:1;;;14791:45;14853:19;;48852:76:0;14641:237:1;48852:76:0;48939:23;48989:7;49003:26;49020:8;49003:16;:26::i;:::-;48972:67;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;48972:67:0;;;;;;;;;;48757:318;-1:-1:-1;;;48757:318:0:o;47702:96::-;3550:7;3577:6;-1:-1:-1;;;;;3577:6:0;2302:10;3724:23;3716:68;;;;-1:-1:-1;;;3716:68:0;;;;;;;:::i;:::-;47771:6:::1;:19:::0;;-1:-1:-1;;;;;;47771:19:0::1;-1:-1:-1::0;;;;;47771:19:0;;;::::1;::::0;;;::::1;::::0;;47702:96::o;4413:201::-;3550:7;3577:6;-1:-1:-1;;;;;3577:6:0;2302:10;3724:23;3716:68;;;;-1:-1:-1;;;3716:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4502:22:0;::::1;4494:73;;;::::0;-1:-1:-1;;;4494:73:0;;9946:2:1;4494:73:0::1;::::0;::::1;9928:21:1::0;9985:2;9965:18;;;9958:30;10024:34;10004:18;;;9997:62;-1:-1:-1;;;10075:18:1;;;10068:36;10121:19;;4494:73:0::1;9918:228:1::0;4494:73:0::1;4578:28;4597:8;4578:18;:28::i;:::-;4413:201:::0;:::o;25714:305::-;25816:4;-1:-1:-1;;;;;;25853:40:0;;-1:-1:-1;;;25853:40:0;;:105;;-1:-1:-1;;;;;;;25910:48:0;;-1:-1:-1;;;25910:48:0;25853:105;:158;;;-1:-1:-1;;;;;;;;;;24246:40:0;;;25975:36;24137:157;35618:174;35693:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35693:29:0;-1:-1:-1;;;;;35693:29:0;;;;;;;;:24;;35747:23;35693:24;35747:14;:23::i;:::-;-1:-1:-1;;;;;35738:46:0;;;;;;;;;;;35618:174;;:::o;49082:273::-;49132:15;49178:25;:15;1034:14;;942:114;49178:25;49168:35;-1:-1:-1;47349:4:0;49232:20;;49224:42;;;;-1:-1:-1;;;49224:42:0;;16664:2:1;49224:42:0;;;16646:21:1;16703:1;16683:18;;;16676:29;-1:-1:-1;;;16721:18:1;;;16714:39;16770:18;;49224:42:0;16636:158:1;49224:42:0;49277:27;:15;1153:19;;1171:1;1153:19;;;1064:127;49277:27;49317:30;49327:3;49332:5;49338:7;49332:14;;;;;;-1:-1:-1;;;49332:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49317:9;:30::i;31766:348::-;31859:4;31561:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31561:16:0;31876:73;;;;-1:-1:-1;;;31876:73:0;;11875:2:1;31876:73:0;;;11857:21:1;11914:2;11894:18;;;11887:30;11953:34;11933:18;;;11926:62;-1:-1:-1;;;12004:18:1;;;11997:42;12056:19;;31876:73:0;11847:234:1;31876:73:0;31960:13;31976:23;31991:7;31976:14;:23::i;:::-;31960:39;;32029:5;-1:-1:-1;;;;;32018:16:0;:7;-1:-1:-1;;;;;32018:16:0;;:51;;;;32062:7;-1:-1:-1;;;;;32038:31:0;:20;32050:7;32038:11;:20::i;:::-;-1:-1:-1;;;;;32038:31:0;;32018:51;:87;;;-1:-1:-1;;;;;;28858:25:0;;;28834:4;28858:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32073:32;32010:96;31766:348;-1:-1:-1;;;;31766:348:0:o;34875:625::-;35034:4;-1:-1:-1;;;;;35007:31:0;:23;35022:7;35007:14;:23::i;:::-;-1:-1:-1;;;;;35007:31:0;;34999:81;;;;-1:-1:-1;;;34999:81:0;;10353:2:1;34999:81:0;;;10335:21:1;10392:2;10372:18;;;10365:30;10431:34;10411:18;;;10404:62;-1:-1:-1;;;10482:18:1;;;10475:35;10527:19;;34999:81:0;10325:227:1;34999:81:0;-1:-1:-1;;;;;35099:16:0;;35091:65;;;;-1:-1:-1;;;35091:65:0;;11116:2:1;35091:65:0;;;11098:21:1;11155:2;11135:18;;;11128:30;11194:34;11174:18;;;11167:62;-1:-1:-1;;;11245:18:1;;;11238:34;11289:19;;35091:65:0;11088:226:1;35091:65:0;35169:39;35190:4;35196:2;35200:7;35169:20;:39::i;:::-;35273:29;35290:1;35294:7;35273:8;:29::i;:::-;-1:-1:-1;;;;;35315:15:0;;;;;;:9;:15;;;;;:20;;35334:1;;35315:15;:20;;35334:1;;35315:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35346:13:0;;;;;;:9;:13;;;;;:18;;35363:1;;35346:13;:18;;35363:1;;35346:18;:::i;:::-;;;;-1:-1:-1;;35375:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35375:21:0;-1:-1:-1;;;;;35375:21:0;;;;;;;;;35414:27;;35375:16;;35414:27;;;;;;;27741:411;;;:::o;4774:191::-;4848:16;4867:6;;-1:-1:-1;;;;;4884:17:0;;;-1:-1:-1;;;;;;4884:17:0;;;;;;4917:40;;4867:6;;;;;;;4917:40;;4848:16;4917:40;4774:191;;:::o;35934:315::-;36089:8;-1:-1:-1;;;;;36080:17:0;:5;-1:-1:-1;;;;;36080:17:0;;;36072:55;;;;-1:-1:-1;;;36072:55:0;;11521:2:1;36072:55:0;;;11503:21:1;11560:2;11540:18;;;11533:30;11599:27;11579:18;;;11572:55;11644:18;;36072:55:0;11493:175:1;36072:55:0;-1:-1:-1;;;;;36138:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36138:46:0;;;;;;;;;;36200:41;;8298::1;;;36200::0;;8271:18:1;36200:41:0;;;;;;;35934:315;;;:::o;30844:::-;31001:28;31011:4;31017:2;31021:7;31001:9;:28::i;:::-;31048:48;31071:4;31077:2;31081:7;31090:5;31048:22;:48::i;:::-;31040:111;;;;-1:-1:-1;;;31040:111:0;;;;;;;:::i;21507:723::-;21563:13;21784:10;21780:53;;-1:-1:-1;;21811:10:0;;;;;;;;;;;;-1:-1:-1;;;21811:10:0;;;;;21507:723::o;21780:53::-;21858:5;21843:12;21899:78;21906:9;;21899:78;;21932:8;;;;:::i;:::-;;-1:-1:-1;21955:10:0;;-1:-1:-1;21963:2:0;21955:10;;:::i;:::-;;;21899:78;;;21987:19;22019:6;22009:17;;;;;;-1:-1:-1;;;22009:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22009:17:0;;21987:39;;22037:154;22044:10;;22037:154;;22071:11;22081:1;22071:11;;:::i;:::-;;-1:-1:-1;22140:10:0;22148:2;22140:5;:10;:::i;:::-;22127:24;;:2;:24;:::i;:::-;22114:39;;22097:6;22104;22097:14;;;;;;-1:-1:-1;;;22097:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;22097:56:0;;;;;;;;-1:-1:-1;22168:11:0;22177:2;22168:11;;:::i;:::-;;;22037:154;;32456:110;32532:26;32542:2;32546:7;32532:26;;;;;;;;;;;;:9;:26::i;42607:589::-;-1:-1:-1;;;;;42813:18:0;;42809:187;;42848:40;42880:7;44023:10;:17;;43996:24;;;;:15;:24;;;;;:44;;;44051:24;;;;;;;;;;;;43919:164;42848:40;42809:187;;;42918:2;-1:-1:-1;;;;;42910:10:0;:4;-1:-1:-1;;;;;42910:10:0;;42906:90;;42937:47;42970:4;42976:7;42937:32;:47::i;:::-;-1:-1:-1;;;;;43010:16:0;;43006:183;;43043:45;43080:7;43043:36;:45::i;43006:183::-;43116:4;-1:-1:-1;;;;;43110:10:0;:2;-1:-1:-1;;;;;43110:10:0;;43106:83;;43137:40;43165:2;43169:7;43137:27;:40::i;36814:799::-;36969:4;-1:-1:-1;;;;;36990:13:0;;14159:19;:23;36986:620;;37026:72;;-1:-1:-1;;;37026:72:0;;-1:-1:-1;;;;;37026:36:0;;;;;:72;;2302:10;;37077:4;;37083:7;;37092:5;;37026:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37026:72:0;;;;;;;;-1:-1:-1;;37026:72:0;;;;;;;;;;;;:::i;:::-;;;37022:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37268:13:0;;37264:272;;37311:60;;-1:-1:-1;;;37311:60:0;;;;;;;:::i;37264:272::-;37486:6;37480:13;37471:6;37467:2;37463:15;37456:38;37022:529;-1:-1:-1;;;;;;37149:51:0;-1:-1:-1;;;37149:51:0;;-1:-1:-1;37142:58:0;;36986:620;-1:-1:-1;37590:4:0;36814:799;;;;;;:::o;32793:321::-;32923:18;32929:2;32933:7;32923:5;:18::i;:::-;32974:54;33005:1;33009:2;33013:7;33022:5;32974:22;:54::i;:::-;32952:154;;;;-1:-1:-1;;;32952:154:0;;;;;;;:::i;44710:988::-;44976:22;45026:1;45001:22;45018:4;45001:16;:22::i;:::-;:26;;;;:::i;:::-;45038:18;45059:26;;;:17;:26;;;;;;44976:51;;-1:-1:-1;45192:28:0;;;45188:328;;-1:-1:-1;;;;;45259:18:0;;45237:19;45259:18;;;:12;:18;;;;;;;;:34;;;;;;;;;45310:30;;;;;;:44;;;45427:30;;:17;:30;;;;;:43;;;45188:328;-1:-1:-1;45612:26:0;;;;:17;:26;;;;;;;;45605:33;;;-1:-1:-1;;;;;45656:18:0;;;;;:12;:18;;;;;:34;;;;;;;45649:41;44710:988::o;45993:1079::-;46271:10;:17;46246:22;;46271:21;;46291:1;;46271:21;:::i;:::-;46303:18;46324:24;;;:15;:24;;;;;;46697:10;:26;;46246:46;;-1:-1:-1;46324:24:0;;46246:46;;46697:26;;;;-1:-1:-1;;;46697:26:0;;;;;;;;;;;;;;;;;46675:48;;46761:11;46736:10;46747;46736:22;;;;;;-1:-1:-1;;;46736:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;46841:28;;;:15;:28;;;;;;;:41;;;47013:24;;;;;47006:31;47048:10;:16;;;;;-1:-1:-1;;;47048:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45993:1079;;;;:::o;43497:221::-;43582:14;43599:20;43616:2;43599:16;:20::i;:::-;-1:-1:-1;;;;;43630:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;43675:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;43497:221:0:o;33450:439::-;-1:-1:-1;;;;;33530:16:0;;33522:61;;;;-1:-1:-1;;;33522:61:0;;13534:2:1;33522:61:0;;;13516:21:1;;;13553:18;;;13546:30;13612:34;13592:18;;;13585:62;13664:18;;33522:61:0;13506:182:1;33522:61:0;31537:4;31561:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31561:16:0;:30;33594:58;;;;-1:-1:-1;;;33594:58:0;;10759:2:1;33594:58:0;;;10741:21:1;10798:2;10778:18;;;10771:30;10837;10817:18;;;10810:58;10885:18;;33594:58:0;10731:178:1;33594:58:0;33665:45;33694:1;33698:2;33702:7;33665:20;:45::i;:::-;-1:-1:-1;;;;;33723:13:0;;;;;;:9;:13;;;;;:18;;33740:1;;33723:13;:18;;33740:1;;33723:18;:::i;:::-;;;;-1:-1:-1;;33752:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33752:21:0;-1:-1:-1;;;;;33752:21:0;;;;;;;;33791:33;;33752:16;;;33791:33;;33752:16;;33791:33;48335:18:::1;48261:100:::0;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;:::-;979:39;898:126;-1:-1:-1;;;898:126:1:o;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:292::-;4056:6;4109:2;4097:9;4088:7;4084:23;4080:32;4077:2;;;4130:6;4122;4115:22;4077:2;4174:9;4161:23;4224:6;4217:5;4213:18;4206:5;4203:29;4193:2;;4251:6;4243;4236:22;4295:190;4354:6;4407:2;4395:9;4386:7;4382:23;4378:32;4375:2;;;4428:6;4420;4413:22;4375:2;-1:-1:-1;4456:23:1;;4365:120;-1:-1:-1;4365:120:1:o;4490:831::-;4582:6;4590;4598;4651:2;4639:9;4630:7;4626:23;4622:32;4619:2;;;4672:6;4664;4657:22;4619:2;4716:9;4703:23;4766:4;4759:5;4755:16;4748:5;4745:27;4735:2;;4791:6;4783;4776:22;4735:2;4819:5;-1:-1:-1;4875:2:1;4860:18;;4847:32;4898:18;4928:14;;;4925:2;;;4960:6;4952;4945:22;4925:2;5003:6;4992:9;4988:22;4978:32;;5048:7;5041:4;5037:2;5033:13;5029:27;5019:2;;5075:6;5067;5060:22;5019:2;5120;5107:16;5146:2;5138:6;5135:14;5132:2;;;5167:6;5159;5152:22;5132:2;5225:7;5220:2;5210:6;5207:1;5203:14;5199:2;5195:23;5191:32;5188:45;5185:2;;;5251:6;5243;5236:22;5185:2;5287;5283;5279:11;5269:21;;5309:6;5299:16;;;;;4609:712;;;;;:::o;5326:257::-;5367:3;5405:5;5399:12;5432:6;5427:3;5420:19;5448:63;5504:6;5497:4;5492:3;5488:14;5481:4;5474:5;5470:16;5448:63;:::i;:::-;5565:2;5544:15;-1:-1:-1;;5540:29:1;5531:39;;;;5572:4;5527:50;;5375:208;-1:-1:-1;;5375:208:1:o;5588:185::-;5630:3;5668:5;5662:12;5683:52;5728:6;5723:3;5716:4;5709:5;5705:16;5683:52;:::i;:::-;5751:16;;;;;5638:135;-1:-1:-1;;5638:135:1:o;6015:1437::-;6393:3;6422;6457:6;6451:13;6487:3;6509:1;6537:9;6533:2;6529:18;6519:28;;6597:2;6586:9;6582:18;6619;6609:2;;6663:4;6655:6;6651:17;6641:27;;6609:2;6689;6737;6729:6;6726:14;6706:18;6703:38;6700:2;;;-1:-1:-1;;;6764:33:1;;6820:4;6817:1;6810:15;6850:4;6771:3;6838:17;6700:2;6881:18;6908:104;;;;7026:1;7021:322;;;;6874:469;;6908:104;-1:-1:-1;;6941:24:1;;6929:37;;6986:16;;;;-1:-1:-1;6908:104:1;;7021:322;17028:4;17047:17;;;17097:4;17081:21;;7116:3;7132:165;7146:6;7143:1;7140:13;7132:165;;;7224:14;;7211:11;;;7204:35;7267:16;;;;7161:10;;7132:165;;;7136:3;;7326:6;7321:3;7317:16;7310:23;;6874:469;;;;;;;7359:87;7384:61;7410:34;7440:3;-1:-1:-1;;;5961:16:1;;6002:1;5993:11;;5951:59;7410:34;7402:6;7384:61;:::i;:::-;-1:-1:-1;;;5838:20:1;;5883:1;5874:11;;5828:63;7359:87;7352:94;6401:1051;-1:-1:-1;;;;;6401:1051:1:o;7665:488::-;-1:-1:-1;;;;;7934:15:1;;;7916:34;;7986:15;;7981:2;7966:18;;7959:43;8033:2;8018:18;;8011:34;;;8081:3;8076:2;8061:18;;8054:31;;;7859:4;;8102:45;;8127:19;;8119:6;8102:45;:::i;:::-;8094:53;7868:285;-1:-1:-1;;;;;;7868:285:1:o;8350:219::-;8499:2;8488:9;8481:21;8462:4;8519:44;8559:2;8548:9;8544:18;8536:6;8519:44;:::i;9325:414::-;9527:2;9509:21;;;9566:2;9546:18;;;9539:30;9605:34;9600:2;9585:18;;9578:62;-1:-1:-1;;;9671:2:1;9656:18;;9649:48;9729:3;9714:19;;9499:240::o;14106:356::-;14308:2;14290:21;;;14327:18;;;14320:30;14386:34;14381:2;14366:18;;14359:62;14453:2;14438:18;;14280:182::o;15285:413::-;15487:2;15469:21;;;15526:2;15506:18;;;15499:30;15565:34;15560:2;15545:18;;15538:62;-1:-1:-1;;;15631:2:1;15616:18;;15609:47;15688:3;15673:19;;15459:239::o;17113:128::-;17153:3;17184:1;17180:6;17177:1;17174:13;17171:2;;;17190:18;;:::i;:::-;-1:-1:-1;17226:9:1;;17161:80::o;17246:204::-;17284:3;17320:4;17317:1;17313:12;17352:4;17349:1;17345:12;17387:3;17381:4;17377:14;17372:3;17369:23;17366:2;;;17395:18;;:::i;:::-;17431:13;;17292:158;-1:-1:-1;;;17292:158:1:o;17455:120::-;17495:1;17521;17511:2;;17526:18;;:::i;:::-;-1:-1:-1;17560:9:1;;17501:74::o;17580:125::-;17620:4;17648:1;17645;17642:8;17639:2;;;17653:18;;:::i;:::-;-1:-1:-1;17690:9:1;;17629:76::o;17710:258::-;17782:1;17792:113;17806:6;17803:1;17800:13;17792:113;;;17882:11;;;17876:18;17863:11;;;17856:39;17828:2;17821:10;17792:113;;;17923:6;17920:1;17917:13;17914:2;;;-1:-1:-1;;17958:1:1;17940:16;;17933:27;17763:205::o;17973:380::-;18052:1;18048:12;;;;18095;;;18116:2;;18170:4;18162:6;18158:17;18148:27;;18116:2;18223;18215:6;18212:14;18192:18;18189:38;18186:2;;;18269:10;18264:3;18260:20;18257:1;18250:31;18304:4;18301:1;18294:15;18332:4;18329:1;18322:15;18186:2;;18028:325;;;:::o;18358:135::-;18397:3;-1:-1:-1;;18418:17:1;;18415:2;;;18438:18;;:::i;:::-;-1:-1:-1;18485:1:1;18474:13;;18405:88::o;18498:112::-;18530:1;18556;18546:2;;18561:18;;:::i;:::-;-1:-1:-1;18595:9:1;;18536:74::o;18615:127::-;18676:10;18671:3;18667:20;18664:1;18657:31;18707:4;18704:1;18697:15;18731:4;18728:1;18721:15;18747:127;18808:10;18803:3;18799:20;18796:1;18789:31;18839:4;18836:1;18829:15;18863:4;18860:1;18853:15;18879:127;18940:10;18935:3;18931:20;18928:1;18921:31;18971:4;18968:1;18961:15;18995:4;18992:1;18985:15;19011:131;-1:-1:-1;;;;;;19085:32:1;;19075:43;;19065:2;;19132:1;19129;19122:12
Swarm Source
ipfs://a12c43c8b5b463fc84e3614777422aefbc5abfb907ff8443f348de62aa334bf4
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 27 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.