Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Multi Chain
Multichain Addresses
8 addresses found via
Latest 25 from a total of 163 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
Value | ||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 18050650 | 23 days 14 hrs ago | IN | 0 ETH | 0.00058349 | ||||
Set Approval For... | 17822258 | 55 days 13 hrs ago | IN | 0 ETH | 0.00109615 | ||||
Set Approval For... | 17791976 | 59 days 19 hrs ago | IN | 0 ETH | 0.0015397 | ||||
Set Approval For... | 17629050 | 82 days 16 hrs ago | IN | 0 ETH | 0.00133615 | ||||
Set Approval For... | 17629049 | 82 days 16 hrs ago | IN | 0 ETH | 0.00244758 | ||||
Set Approval For... | 17626992 | 82 days 22 hrs ago | IN | 0 ETH | 0.00250315 | ||||
Set Approval For... | 17512769 | 99 days 4 mins ago | IN | 0 ETH | 0.00144432 | ||||
Set Approval For... | 17512749 | 99 days 8 mins ago | IN | 0 ETH | 0.00064845 | ||||
Set Approval For... | 17501911 | 100 days 12 hrs ago | IN | 0 ETH | 0.00068921 | ||||
Set Approval For... | 17501759 | 100 days 13 hrs ago | IN | 0 ETH | 0.00072472 | ||||
Set Approval For... | 17490735 | 102 days 2 hrs ago | IN | 0 ETH | 0.00070142 | ||||
Set Approval For... | 17487225 | 102 days 14 hrs ago | IN | 0 ETH | 0.00108295 | ||||
Set Approval For... | 17478222 | 103 days 20 hrs ago | IN | 0 ETH | 0.00073186 | ||||
Set Approval For... | 17472733 | 104 days 15 hrs ago | IN | 0 ETH | 0.00074899 | ||||
Set Approval For... | 17458672 | 106 days 14 hrs ago | IN | 0 ETH | 0.0007183 | ||||
Set Approval For... | 17438371 | 109 days 11 hrs ago | IN | 0 ETH | 0.0008802 | ||||
Set Approval For... | 17429416 | 110 days 17 hrs ago | IN | 0 ETH | 0.00077296 | ||||
Set Approval For... | 17429381 | 110 days 17 hrs ago | IN | 0 ETH | 0.00151248 | ||||
Set Base URI | 17428354 | 110 days 21 hrs ago | IN | 0 ETH | 0.000959 | ||||
Set Approval For... | 17426634 | 111 days 2 hrs ago | IN | 0 ETH | 0.00092812 | ||||
Set Approval For... | 17421841 | 111 days 19 hrs ago | IN | 0 ETH | 0.00077454 | ||||
Set Approval For... | 17421840 | 111 days 19 hrs ago | IN | 0 ETH | 0.00138359 | ||||
Set Approval For... | 17418883 | 112 days 5 hrs ago | IN | 0 ETH | 0.0008817 | ||||
Set Approval For... | 17414077 | 112 days 21 hrs ago | IN | 0 ETH | 0.00091346 | ||||
Set Approval For... | 17414065 | 112 days 21 hrs ago | IN | 0 ETH | 0.00088168 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
NTChampionChips
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-05-03 */ /* * Generated by @Thrasher66099 * Email [email protected] for your NFT launch needs */ 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); } /** * @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; } /** * @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); } } /* * @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; } } /** * @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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } /** * @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); } /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private 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); } } } } /** * @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; } } /** * @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 { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev 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(to).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 {} } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @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(); } } contract NTChampionChips is ERC721Enumerable, ReentrancyGuard, Ownable { string baseURI; //Such a simple contract. Probably nothing. function getSeason(uint256 tokenId) public view returns (uint256) { require(_exists(tokenId), "Token does not exist"); if(tokenId < 21) { return 1; } else { return 2; } } function initialClaim(address _to, uint256 tokenId) public onlyOwner { require(tokenId > 0 && tokenId < 61, "Token ID invalid"); _safeMint(_to, tokenId); } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function _baseURI() internal view virtual override returns (string memory) { return baseURI; } constructor() ERC721("Neo Tokyo Champion Chips", "NTCC") Ownable() { setBaseURI("https://neotokyo.mypinata.cloud/ipfs/Qmc6ft3EV9EEYwuM4gURQ7EmRb2ybTBH2FN42RBf6bXzYD/"); } }
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":[{"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getSeason","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"initialClaim","outputs":[],"stateMutability":"nonpayable","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":"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":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","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
60806040523480156200001157600080fd5b50604080518082018252601881527f4e656f20546f6b796f204368616d70696f6e20436869707300000000000000006020808301918252835180850190945260048452634e54434360e01b908401528151919291620000739160009162000190565b5080516200008990600190602084019062000190565b50506001600a55506200009c33620000c6565b620000c060405180608001604052806054815260200162001ea86054913962000118565b62000273565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b546001600160a01b03163314620001775760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200018c90600c90602084019062000190565b5050565b8280546200019e9062000236565b90600052602060002090601f016020900481019282620001c257600085556200020d565b82601f10620001dd57805160ff19168380011785556200020d565b828001600101855582156200020d579182015b828111156200020d578251825591602001919060010190620001f0565b506200021b9291506200021f565b5090565b5b808211156200021b576000815560010162000220565b600181811c908216806200024b57607f821691505b602082108114156200026d57634e487b7160e01b600052602260045260246000fd5b50919050565b611c2580620002836000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c80636352211e116100b8578063a22cb4651161007c578063a22cb4651461028f578063a43d8654146102a2578063b88d4fde146102b5578063c87b56dd146102c8578063e985e9c5146102db578063f2fde38b1461031757600080fd5b80636352211e1461024857806370a082311461025b578063715018a61461026e5780638da5cb5b1461027657806395d89b411461028757600080fd5b806323b872dd1161010a57806323b872dd146101d65780632f745c59146101e957806342842e0e146101fc57806346088e5c1461020f5780634f6ccce71461022257806355f804b31461023557600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a610155366004611873565b61032a565b60405190151581526020015b60405180910390f35b610177610355565b60405161016691906119a7565b6101976101923660046118f6565b6103e7565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611849565b610481565b005b6008545b604051908152602001610166565b6101c26101e4366004611755565b610597565b6101c86101f7366004611849565b6105c8565b6101c261020a366004611755565b61065e565b6101c261021d366004611849565b610679565b6101c86102303660046118f6565b610700565b6101c26102433660046118ad565b610793565b6101976102563660046118f6565b6107d0565b6101c8610269366004611707565b610847565b6101c26108ce565b600b546001600160a01b0316610197565b610177610904565b6101c261029d36600461180d565b610913565b6101c86102b03660046118f6565b6109d8565b6101c26102c3366004611791565b610a51565b6101776102d63660046118f6565b610a89565b61015a6102e9366004611722565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c2610325366004611707565b610b64565b60006001600160e01b0319821663780e9d6360e01b148061034f575061034f82610bff565b92915050565b60606000805461036490611b01565b80601f016020809104026020016040519081016040528092919081815260200182805461039090611b01565b80156103dd5780601f106103b2576101008083540402835291602001916103dd565b820191906000526020600020905b8154815290600101906020018083116103c057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061048c826107d0565b9050806001600160a01b0316836001600160a01b031614156104fa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161045c565b336001600160a01b0382161480610516575061051681336102e9565b6105885760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161045c565b6105928383610c4f565b505050565b6105a13382610cbd565b6105bd5760405162461bcd60e51b815260040161045c90611a41565b610592838383610db4565b60006105d383610847565b82106106355760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161045c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61059283838360405180602001604052806000815250610a51565b600b546001600160a01b031633146106a35760405162461bcd60e51b815260040161045c90611a0c565b6000811180156106b35750603d81105b6106f25760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161045c565b6106fc8282610f5f565b5050565b600061070b60085490565b821061076e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161045c565b6008828154811061078157610781611bad565b90600052602060002001549050919050565b600b546001600160a01b031633146107bd5760405162461bcd60e51b815260040161045c90611a0c565b80516106fc90600c9060208401906115e1565b6000818152600260205260408120546001600160a01b03168061034f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161045c565b60006001600160a01b0382166108b25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161045c565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146108f85760405162461bcd60e51b815260040161045c90611a0c565b6109026000610f79565b565b60606001805461036490611b01565b6001600160a01b03821633141561096c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161045c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600260205260408120546001600160a01b0316610a335760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161045c565b6015821015610a4457506001919050565b506002919050565b919050565b610a5b3383610cbd565b610a775760405162461bcd60e51b815260040161045c90611a41565b610a8384848484610fcb565b50505050565b6000818152600260205260409020546060906001600160a01b0316610b085760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161045c565b6000610b12610ffe565b90506000815111610b325760405180602001604052806000815250610b5d565b80610b3c8461100d565b604051602001610b4d92919061193b565b6040516020818303038152906040525b9392505050565b600b546001600160a01b03163314610b8e5760405162461bcd60e51b815260040161045c90611a0c565b6001600160a01b038116610bf35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045c565b610bfc81610f79565b50565b60006001600160e01b031982166380ac58cd60e01b1480610c3057506001600160e01b03198216635b5e139f60e01b145b8061034f57506301ffc9a760e01b6001600160e01b031983161461034f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c84826107d0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610d365760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161045c565b6000610d41836107d0565b9050806001600160a01b0316846001600160a01b03161480610d7c5750836001600160a01b0316610d71846103e7565b6001600160a01b0316145b80610dac57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610dc7826107d0565b6001600160a01b031614610e2f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161045c565b6001600160a01b038216610e915760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161045c565b610e9c83838361110b565b610ea7600082610c4f565b6001600160a01b0383166000908152600360205260408120805460019290610ed0908490611abe565b90915550506001600160a01b0382166000908152600360205260408120805460019290610efe908490611a92565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6106fc8282604051806020016040528060008152506111c3565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610fd6848484610db4565b610fe2848484846111f6565b610a835760405162461bcd60e51b815260040161045c906119ba565b6060600c805461036490611b01565b6060816110315750506040805180820190915260018152600360fc1b602082015290565b8160005b811561105b578061104581611b3c565b91506110549050600a83611aaa565b9150611035565b60008167ffffffffffffffff81111561107657611076611bc3565b6040519080825280601f01601f1916602001820160405280156110a0576020820181803683370190505b5090505b8415610dac576110b5600183611abe565b91506110c2600a86611b57565b6110cd906030611a92565b60f81b8183815181106110e2576110e2611bad565b60200101906001600160f81b031916908160001a905350611104600a86611aaa565b94506110a4565b6001600160a01b0383166111665761116181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611189565b816001600160a01b0316836001600160a01b031614611189576111898382611303565b6001600160a01b0382166111a057610592816113a0565b826001600160a01b0316826001600160a01b03161461059257610592828261144f565b6111cd8383611493565b6111da60008484846111f6565b6105925760405162461bcd60e51b815260040161045c906119ba565b60006001600160a01b0384163b156112f857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061123a90339089908890889060040161196a565b602060405180830381600087803b15801561125457600080fd5b505af1925050508015611284575060408051601f3d908101601f1916820190925261128191810190611890565b60015b6112de573d8080156112b2576040519150601f19603f3d011682016040523d82523d6000602084013e6112b7565b606091505b5080516112d65760405162461bcd60e51b815260040161045c906119ba565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610dac565b506001949350505050565b6000600161131084610847565b61131a9190611abe565b60008381526007602052604090205490915080821461136d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906113b290600190611abe565b600083815260096020526040812054600880549394509092849081106113da576113da611bad565b9060005260206000200154905080600883815481106113fb576113fb611bad565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061143357611433611b97565b6001900381819060005260206000200160009055905550505050565b600061145a83610847565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166114e95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161045c565b6000818152600260205260409020546001600160a01b03161561154e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161045c565b61155a6000838361110b565b6001600160a01b0382166000908152600360205260408120805460019290611583908490611a92565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546115ed90611b01565b90600052602060002090601f01602090048101928261160f5760008555611655565b82601f1061162857805160ff1916838001178555611655565b82800160010185558215611655579182015b8281111561165557825182559160200191906001019061163a565b50611661929150611665565b5090565b5b808211156116615760008155600101611666565b600067ffffffffffffffff8084111561169557611695611bc3565b604051601f8501601f19908116603f011681019082821181831017156116bd576116bd611bc3565b816040528093508581528686860111156116d657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610a4c57600080fd5b60006020828403121561171957600080fd5b610b5d826116f0565b6000806040838503121561173557600080fd5b61173e836116f0565b915061174c602084016116f0565b90509250929050565b60008060006060848603121561176a57600080fd5b611773846116f0565b9250611781602085016116f0565b9150604084013590509250925092565b600080600080608085870312156117a757600080fd5b6117b0856116f0565b93506117be602086016116f0565b925060408501359150606085013567ffffffffffffffff8111156117e157600080fd5b8501601f810187136117f257600080fd5b6118018782356020840161167a565b91505092959194509250565b6000806040838503121561182057600080fd5b611829836116f0565b91506020830135801515811461183e57600080fd5b809150509250929050565b6000806040838503121561185c57600080fd5b611865836116f0565b946020939093013593505050565b60006020828403121561188557600080fd5b8135610b5d81611bd9565b6000602082840312156118a257600080fd5b8151610b5d81611bd9565b6000602082840312156118bf57600080fd5b813567ffffffffffffffff8111156118d657600080fd5b8201601f810184136118e757600080fd5b610dac8482356020840161167a565b60006020828403121561190857600080fd5b5035919050565b60008151808452611927816020860160208601611ad5565b601f01601f19169290920160200192915050565b6000835161194d818460208801611ad5565b835190830190611961818360208801611ad5565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061199d9083018461190f565b9695505050505050565b602081526000610b5d602083018461190f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611aa557611aa5611b6b565b500190565b600082611ab957611ab9611b81565b500490565b600082821015611ad057611ad0611b6b565b500390565b60005b83811015611af0578181015183820152602001611ad8565b83811115610a835750506000910152565b600181811c90821680611b1557607f821691505b60208210811415611b3657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b5057611b50611b6b565b5060010190565b600082611b6657611b66611b81565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bfc57600080fdfea2646970667358221220336dbfc9d744a9079822e7498ae694d9e2d319135c4a8ba9314632589f87689e64736f6c6343000806003368747470733a2f2f6e656f746f6b796f2e6d7970696e6174612e636c6f75642f697066732f516d633666743345563945455977754d346755525137456d526232796254424832464e34325242663662587a59442f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c80636352211e116100b8578063a22cb4651161007c578063a22cb4651461028f578063a43d8654146102a2578063b88d4fde146102b5578063c87b56dd146102c8578063e985e9c5146102db578063f2fde38b1461031757600080fd5b80636352211e1461024857806370a082311461025b578063715018a61461026e5780638da5cb5b1461027657806395d89b411461028757600080fd5b806323b872dd1161010a57806323b872dd146101d65780632f745c59146101e957806342842e0e146101fc57806346088e5c1461020f5780634f6ccce71461022257806355f804b31461023557600080fd5b806301ffc9a71461014757806306fdde031461016f578063081812fc14610184578063095ea7b3146101af57806318160ddd146101c4575b600080fd5b61015a610155366004611873565b61032a565b60405190151581526020015b60405180910390f35b610177610355565b60405161016691906119a7565b6101976101923660046118f6565b6103e7565b6040516001600160a01b039091168152602001610166565b6101c26101bd366004611849565b610481565b005b6008545b604051908152602001610166565b6101c26101e4366004611755565b610597565b6101c86101f7366004611849565b6105c8565b6101c261020a366004611755565b61065e565b6101c261021d366004611849565b610679565b6101c86102303660046118f6565b610700565b6101c26102433660046118ad565b610793565b6101976102563660046118f6565b6107d0565b6101c8610269366004611707565b610847565b6101c26108ce565b600b546001600160a01b0316610197565b610177610904565b6101c261029d36600461180d565b610913565b6101c86102b03660046118f6565b6109d8565b6101c26102c3366004611791565b610a51565b6101776102d63660046118f6565b610a89565b61015a6102e9366004611722565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b6101c2610325366004611707565b610b64565b60006001600160e01b0319821663780e9d6360e01b148061034f575061034f82610bff565b92915050565b60606000805461036490611b01565b80601f016020809104026020016040519081016040528092919081815260200182805461039090611b01565b80156103dd5780601f106103b2576101008083540402835291602001916103dd565b820191906000526020600020905b8154815290600101906020018083116103c057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166104655760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061048c826107d0565b9050806001600160a01b0316836001600160a01b031614156104fa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161045c565b336001600160a01b0382161480610516575061051681336102e9565b6105885760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161045c565b6105928383610c4f565b505050565b6105a13382610cbd565b6105bd5760405162461bcd60e51b815260040161045c90611a41565b610592838383610db4565b60006105d383610847565b82106106355760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161045c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b61059283838360405180602001604052806000815250610a51565b600b546001600160a01b031633146106a35760405162461bcd60e51b815260040161045c90611a0c565b6000811180156106b35750603d81105b6106f25760405162461bcd60e51b815260206004820152601060248201526f151bdad95b881251081a5b9d985b1a5960821b604482015260640161045c565b6106fc8282610f5f565b5050565b600061070b60085490565b821061076e5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161045c565b6008828154811061078157610781611bad565b90600052602060002001549050919050565b600b546001600160a01b031633146107bd5760405162461bcd60e51b815260040161045c90611a0c565b80516106fc90600c9060208401906115e1565b6000818152600260205260408120546001600160a01b03168061034f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161045c565b60006001600160a01b0382166108b25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161045c565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b031633146108f85760405162461bcd60e51b815260040161045c90611a0c565b6109026000610f79565b565b60606001805461036490611b01565b6001600160a01b03821633141561096c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161045c565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000818152600260205260408120546001600160a01b0316610a335760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b604482015260640161045c565b6015821015610a4457506001919050565b506002919050565b919050565b610a5b3383610cbd565b610a775760405162461bcd60e51b815260040161045c90611a41565b610a8384848484610fcb565b50505050565b6000818152600260205260409020546060906001600160a01b0316610b085760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161045c565b6000610b12610ffe565b90506000815111610b325760405180602001604052806000815250610b5d565b80610b3c8461100d565b604051602001610b4d92919061193b565b6040516020818303038152906040525b9392505050565b600b546001600160a01b03163314610b8e5760405162461bcd60e51b815260040161045c90611a0c565b6001600160a01b038116610bf35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161045c565b610bfc81610f79565b50565b60006001600160e01b031982166380ac58cd60e01b1480610c3057506001600160e01b03198216635b5e139f60e01b145b8061034f57506301ffc9a760e01b6001600160e01b031983161461034f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610c84826107d0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316610d365760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161045c565b6000610d41836107d0565b9050806001600160a01b0316846001600160a01b03161480610d7c5750836001600160a01b0316610d71846103e7565b6001600160a01b0316145b80610dac57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316610dc7826107d0565b6001600160a01b031614610e2f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161045c565b6001600160a01b038216610e915760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161045c565b610e9c83838361110b565b610ea7600082610c4f565b6001600160a01b0383166000908152600360205260408120805460019290610ed0908490611abe565b90915550506001600160a01b0382166000908152600360205260408120805460019290610efe908490611a92565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6106fc8282604051806020016040528060008152506111c3565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610fd6848484610db4565b610fe2848484846111f6565b610a835760405162461bcd60e51b815260040161045c906119ba565b6060600c805461036490611b01565b6060816110315750506040805180820190915260018152600360fc1b602082015290565b8160005b811561105b578061104581611b3c565b91506110549050600a83611aaa565b9150611035565b60008167ffffffffffffffff81111561107657611076611bc3565b6040519080825280601f01601f1916602001820160405280156110a0576020820181803683370190505b5090505b8415610dac576110b5600183611abe565b91506110c2600a86611b57565b6110cd906030611a92565b60f81b8183815181106110e2576110e2611bad565b60200101906001600160f81b031916908160001a905350611104600a86611aaa565b94506110a4565b6001600160a01b0383166111665761116181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611189565b816001600160a01b0316836001600160a01b031614611189576111898382611303565b6001600160a01b0382166111a057610592816113a0565b826001600160a01b0316826001600160a01b03161461059257610592828261144f565b6111cd8383611493565b6111da60008484846111f6565b6105925760405162461bcd60e51b815260040161045c906119ba565b60006001600160a01b0384163b156112f857604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061123a90339089908890889060040161196a565b602060405180830381600087803b15801561125457600080fd5b505af1925050508015611284575060408051601f3d908101601f1916820190925261128191810190611890565b60015b6112de573d8080156112b2576040519150601f19603f3d011682016040523d82523d6000602084013e6112b7565b606091505b5080516112d65760405162461bcd60e51b815260040161045c906119ba565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610dac565b506001949350505050565b6000600161131084610847565b61131a9190611abe565b60008381526007602052604090205490915080821461136d576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906113b290600190611abe565b600083815260096020526040812054600880549394509092849081106113da576113da611bad565b9060005260206000200154905080600883815481106113fb576113fb611bad565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061143357611433611b97565b6001900381819060005260206000200160009055905550505050565b600061145a83610847565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166114e95760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161045c565b6000818152600260205260409020546001600160a01b03161561154e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161045c565b61155a6000838361110b565b6001600160a01b0382166000908152600360205260408120805460019290611583908490611a92565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546115ed90611b01565b90600052602060002090601f01602090048101928261160f5760008555611655565b82601f1061162857805160ff1916838001178555611655565b82800160010185558215611655579182015b8281111561165557825182559160200191906001019061163a565b50611661929150611665565b5090565b5b808211156116615760008155600101611666565b600067ffffffffffffffff8084111561169557611695611bc3565b604051601f8501601f19908116603f011681019082821181831017156116bd576116bd611bc3565b816040528093508581528686860111156116d657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610a4c57600080fd5b60006020828403121561171957600080fd5b610b5d826116f0565b6000806040838503121561173557600080fd5b61173e836116f0565b915061174c602084016116f0565b90509250929050565b60008060006060848603121561176a57600080fd5b611773846116f0565b9250611781602085016116f0565b9150604084013590509250925092565b600080600080608085870312156117a757600080fd5b6117b0856116f0565b93506117be602086016116f0565b925060408501359150606085013567ffffffffffffffff8111156117e157600080fd5b8501601f810187136117f257600080fd5b6118018782356020840161167a565b91505092959194509250565b6000806040838503121561182057600080fd5b611829836116f0565b91506020830135801515811461183e57600080fd5b809150509250929050565b6000806040838503121561185c57600080fd5b611865836116f0565b946020939093013593505050565b60006020828403121561188557600080fd5b8135610b5d81611bd9565b6000602082840312156118a257600080fd5b8151610b5d81611bd9565b6000602082840312156118bf57600080fd5b813567ffffffffffffffff8111156118d657600080fd5b8201601f810184136118e757600080fd5b610dac8482356020840161167a565b60006020828403121561190857600080fd5b5035919050565b60008151808452611927816020860160208601611ad5565b601f01601f19169290920160200192915050565b6000835161194d818460208801611ad5565b835190830190611961818360208801611ad5565b01949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061199d9083018461190f565b9695505050505050565b602081526000610b5d602083018461190f565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611aa557611aa5611b6b565b500190565b600082611ab957611ab9611b81565b500490565b600082821015611ad057611ad0611b6b565b500390565b60005b83811015611af0578181015183820152602001611ad8565b83811115610a835750506000910152565b600181811c90821680611b1557607f821691505b60208210811415611b3657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611b5057611b50611b6b565b5060010190565b600082611b6657611b66611b81565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610bfc57600080fdfea2646970667358221220336dbfc9d744a9079822e7498ae694d9e2d319135c4a8ba9314632589f87689e64736f6c63430008060033
Deployed Bytecode Sourcemap
44474:1038:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38326:224;;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;38326:224:0;;;;;;;;25448:100;;;:::i;:::-;;;;;;;:::i;27007:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;27007:221:0;4881:102:1;26530:411:0;;;;;;:::i;:::-;;:::i;:::-;;38966:113;39054:10;:17;38966:113;;;13944:25:1;;;13932:2;13917:18;38966:113:0;13899:76:1;27897:339:0;;;;;;:::i;:::-;;:::i;38634:256::-;;;;;;:::i;:::-;;:::i;28307:185::-;;;;;;:::i;:::-;;:::i;44905:180::-;;;;;;:::i;:::-;;:::i;39156:233::-;;;;;;:::i;:::-;;:::i;45093:104::-;;;;;;:::i;:::-;;:::i;25142:239::-;;;;;;:::i;:::-;;:::i;24872:208::-;;;;;;:::i;:::-;;:::i;9894:94::-;;;:::i;9243:87::-;9316:6;;-1:-1:-1;;;;;9316:6:0;9243:87;;25617:104;;;:::i;27300:295::-;;;;;;:::i;:::-;;:::i;44628:269::-;;;;;;:::i;:::-;;:::i;28563:328::-;;;;;;:::i;:::-;;:::i;25792:334::-;;;;;;:::i;:::-;;:::i;27666:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;27787:25:0;;;27763:4;27787:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27666:164;10143:192;;;;;;:::i;:::-;;:::i;38326:224::-;38428:4;-1:-1:-1;;;;;;38452:50:0;;-1:-1:-1;;;38452:50:0;;:90;;;38506:36;38530:11;38506:23;:36::i;:::-;38445:97;38326:224;-1:-1:-1;;38326:224:0:o;25448:100::-;25502:13;25535:5;25528:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25448:100;:::o;27007:221::-;27083:7;30490:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30490:16:0;27103:73;;;;-1:-1:-1;;;27103:73:0;;10822:2:1;27103:73:0;;;10804:21:1;10861:2;10841:18;;;10834:30;10900:34;10880:18;;;10873:62;-1:-1:-1;;;10951:18:1;;;10944:42;11003:19;;27103:73:0;;;;;;;;;-1:-1:-1;27196:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27196:24:0;;27007:221::o;26530:411::-;26611:13;26627:23;26642:7;26627:14;:23::i;:::-;26611:39;;26675:5;-1:-1:-1;;;;;26669:11:0;:2;-1:-1:-1;;;;;26669:11:0;;;26661:57;;;;-1:-1:-1;;;26661:57:0;;12767:2:1;26661:57:0;;;12749:21:1;12806:2;12786:18;;;12779:30;12845:34;12825:18;;;12818:62;-1:-1:-1;;;12896:18:1;;;12889:31;12937:19;;26661:57:0;12739:223:1;26661:57:0;8197:10;-1:-1:-1;;;;;26753:21:0;;;;:62;;-1:-1:-1;26778:37:0;26795:5;8197:10;27666:164;:::i;26778:37::-;26731:168;;;;-1:-1:-1;;;26731:168:0;;9215:2:1;26731:168:0;;;9197:21:1;9254:2;9234:18;;;9227:30;9293:34;9273:18;;;9266:62;9364:26;9344:18;;;9337:54;9408:19;;26731:168:0;9187:246:1;26731:168:0;26912:21;26921:2;26925:7;26912:8;:21::i;:::-;26600:341;26530:411;;:::o;27897:339::-;28092:41;8197:10;28125:7;28092:18;:41::i;:::-;28084:103;;;;-1:-1:-1;;;28084:103:0;;;;;;;:::i;:::-;28200:28;28210:4;28216:2;28220:7;28200:9;:28::i;38634:256::-;38731:7;38767:23;38784:5;38767:16;:23::i;:::-;38759:5;:31;38751:87;;;;-1:-1:-1;;;38751:87:0;;6099:2:1;38751:87:0;;;6081:21:1;6138:2;6118:18;;;6111:30;6177:34;6157:18;;;6150:62;-1:-1:-1;;;6228:18:1;;;6221:41;6279:19;;38751:87:0;6071:233:1;38751:87:0;-1:-1:-1;;;;;;38856:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38634:256::o;28307:185::-;28445:39;28462:4;28468:2;28472:7;28445:39;;;;;;;;;;;;:16;:39::i;44905:180::-;9316:6;;-1:-1:-1;;;;;9316:6:0;8197:10;9463:23;9455:68;;;;-1:-1:-1;;;9455:68:0;;;;;;;:::i;:::-;45003:1:::1;44993:7;:11;:27;;;;;45018:2;45008:7;:12;44993:27;44985:56;;;::::0;-1:-1:-1;;;44985:56:0;;11596:2:1;44985:56:0::1;::::0;::::1;11578:21:1::0;11635:2;11615:18;;;11608:30;-1:-1:-1;;;11654:18:1;;;11647:46;11710:18;;44985:56:0::1;11568:166:1::0;44985:56:0::1;45054:23;45064:3;45069:7;45054:9;:23::i;:::-;44905:180:::0;;:::o;39156:233::-;39231:7;39267:30;39054:10;:17;;38966:113;39267:30;39259:5;:38;39251:95;;;;-1:-1:-1;;;39251:95:0;;13587:2:1;39251:95:0;;;13569:21:1;13626:2;13606:18;;;13599:30;13665:34;13645:18;;;13638:62;-1:-1:-1;;;13716:18:1;;;13709:42;13768:19;;39251:95:0;13559:234:1;39251:95:0;39364:10;39375:5;39364:17;;;;;;;;:::i;:::-;;;;;;;;;39357:24;;39156:233;;;:::o;45093:104::-;9316:6;;-1:-1:-1;;;;;9316:6:0;8197:10;9463:23;9455:68;;;;-1:-1:-1;;;9455:68:0;;;;;;;:::i;:::-;45168:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;25142:239::-:0;25214:7;25250:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25250:16:0;25285:19;25277:73;;;;-1:-1:-1;;;25277:73:0;;10051:2:1;25277:73:0;;;10033:21:1;10090:2;10070:18;;;10063:30;10129:34;10109:18;;;10102:62;-1:-1:-1;;;10180:18:1;;;10173:39;10229:19;;25277:73:0;10023:231:1;24872:208:0;24944:7;-1:-1:-1;;;;;24972:19:0;;24964:74;;;;-1:-1:-1;;;24964:74:0;;9640:2:1;24964:74:0;;;9622:21:1;9679:2;9659:18;;;9652:30;9718:34;9698:18;;;9691:62;-1:-1:-1;;;9769:18:1;;;9762:40;9819:19;;24964:74:0;9612:232:1;24964:74:0;-1:-1:-1;;;;;;25056:16:0;;;;;:9;:16;;;;;;;24872:208::o;9894:94::-;9316:6;;-1:-1:-1;;;;;9316:6:0;8197:10;9463:23;9455:68;;;;-1:-1:-1;;;9455:68:0;;;;;;;:::i;:::-;9959:21:::1;9977:1;9959:9;:21::i;:::-;9894:94::o:0;25617:104::-;25673:13;25706:7;25699:14;;;;;:::i;27300:295::-;-1:-1:-1;;;;;27403:24:0;;8197:10;27403:24;;27395:62;;;;-1:-1:-1;;;27395:62:0;;8099:2:1;27395:62:0;;;8081:21:1;8138:2;8118:18;;;8111:30;8177:27;8157:18;;;8150:55;8222:18;;27395:62:0;8071:175:1;27395:62:0;8197:10;27470:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27470:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27470:53:0;;;;;;;;;;27539:48;;5621:41:1;;;27470:42:0;;8197:10;27539:48;;5594:18:1;27539:48:0;;;;;;;27300:295;;:::o;44628:269::-;44685:7;30490:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30490:16:0;44710:49;;;;-1:-1:-1;;;44710:49:0;;8453:2:1;44710:49:0;;;8435:21:1;8492:2;8472:18;;;8465:30;-1:-1:-1;;;8511:18:1;;;8504:50;8571:18;;44710:49:0;8425:170:1;44710:49:0;44783:2;44773:7;:12;44770:120;;;-1:-1:-1;44818:1:0;;44628:269;-1:-1:-1;44628:269:0:o;44770:120::-;-1:-1:-1;44877:1:0;;44628:269;-1:-1:-1;44628:269:0:o;44770:120::-;44628:269;;;:::o;28563:328::-;28738:41;8197:10;28771:7;28738:18;:41::i;:::-;28730:103;;;;-1:-1:-1;;;28730:103:0;;;;;;;:::i;:::-;28844:39;28858:4;28864:2;28868:7;28877:5;28844:13;:39::i;:::-;28563:328;;;;:::o;25792:334::-;30466:4;30490:16;;;:7;:16;;;;;;25865:13;;-1:-1:-1;;;;;30490:16:0;25891:76;;;;-1:-1:-1;;;25891:76:0;;12351:2:1;25891:76:0;;;12333:21:1;12390:2;12370:18;;;12363:30;12429:34;12409:18;;;12402:62;-1:-1:-1;;;12480:18:1;;;12473:45;12535:19;;25891:76:0;12323:237:1;25891:76:0;25980:21;26004:10;:8;:10::i;:::-;25980:34;;26056:1;26038:7;26032:21;:25;:86;;;;;;;;;;;;;;;;;26084:7;26093:18;:7;:16;:18::i;:::-;26067:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26032:86;26025:93;25792:334;-1:-1:-1;;;25792:334:0:o;10143:192::-;9316:6;;-1:-1:-1;;;;;9316:6:0;8197:10;9463:23;9455:68;;;;-1:-1:-1;;;9455:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10232:22:0;::::1;10224:73;;;::::0;-1:-1:-1;;;10224:73:0;;6930:2:1;10224:73:0::1;::::0;::::1;6912:21:1::0;6969:2;6949:18;;;6942:30;7008:34;6988:18;;;6981:62;-1:-1:-1;;;7059:18:1;;;7052:36;7105:19;;10224:73:0::1;6902:228:1::0;10224:73:0::1;10308:19;10318:8;10308:9;:19::i;:::-;10143:192:::0;:::o;24503:305::-;24605:4;-1:-1:-1;;;;;;24642:40:0;;-1:-1:-1;;;24642:40:0;;:105;;-1:-1:-1;;;;;;;24699:48:0;;-1:-1:-1;;;24699:48:0;24642:105;:158;;;-1:-1:-1;;;;;;;;;;23219:40:0;;;24764:36;23110:157;34383:174;34458:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34458:29:0;-1:-1:-1;;;;;34458:29:0;;;;;;;;:24;;34512:23;34458:24;34512:14;:23::i;:::-;-1:-1:-1;;;;;34503:46:0;;;;;;;;;;;34383:174;;:::o;30695:348::-;30788:4;30490:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30490:16:0;30805:73;;;;-1:-1:-1;;;30805:73:0;;8802:2:1;30805:73:0;;;8784:21:1;8841:2;8821:18;;;8814:30;8880:34;8860:18;;;8853:62;-1:-1:-1;;;8931:18:1;;;8924:42;8983:19;;30805:73:0;8774:234:1;30805:73:0;30889:13;30905:23;30920:7;30905:14;:23::i;:::-;30889:39;;30958:5;-1:-1:-1;;;;;30947:16:0;:7;-1:-1:-1;;;;;30947:16:0;;:51;;;;30991:7;-1:-1:-1;;;;;30967:31:0;:20;30979:7;30967:11;:20::i;:::-;-1:-1:-1;;;;;30967:31:0;;30947:51;:87;;;-1:-1:-1;;;;;;27787:25:0;;;27763:4;27787:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31002:32;30939:96;30695:348;-1:-1:-1;;;;30695:348:0:o;33687:578::-;33846:4;-1:-1:-1;;;;;33819:31:0;:23;33834:7;33819:14;:23::i;:::-;-1:-1:-1;;;;;33819:31:0;;33811:85;;;;-1:-1:-1;;;33811:85:0;;11941:2:1;33811:85:0;;;11923:21:1;11980:2;11960:18;;;11953:30;12019:34;11999:18;;;11992:62;-1:-1:-1;;;12070:18:1;;;12063:39;12119:19;;33811:85:0;11913:231:1;33811:85:0;-1:-1:-1;;;;;33915:16:0;;33907:65;;;;-1:-1:-1;;;33907:65:0;;7694:2:1;33907:65:0;;;7676:21:1;7733:2;7713:18;;;7706:30;7772:34;7752:18;;;7745:62;-1:-1:-1;;;7823:18:1;;;7816:34;7867:19;;33907:65:0;7666:226:1;33907:65:0;33985:39;34006:4;34012:2;34016:7;33985:20;:39::i;:::-;34089:29;34106:1;34110:7;34089:8;:29::i;:::-;-1:-1:-1;;;;;34131:15:0;;;;;;:9;:15;;;;;:20;;34150:1;;34131:15;:20;;34150:1;;34131:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34162:13:0;;;;;;:9;:13;;;;;:18;;34179:1;;34162:13;:18;;34179:1;;34162:18;:::i;:::-;;;;-1:-1:-1;;34191:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34191:21:0;-1:-1:-1;;;;;34191:21:0;;;;;;;;;34230:27;;34191:16;;34230:27;;;;;;;33687:578;;;:::o;31385:110::-;31461:26;31471:2;31475:7;31461:26;;;;;;;;;;;;:9;:26::i;10343:173::-;10418:6;;;-1:-1:-1;;;;;10435:17:0;;;-1:-1:-1;;;;;;10435:17:0;;;;;;;10468:40;;10418:6;;;10435:17;10418:6;;10468:40;;10399:16;;10468:40;10388:128;10343:173;:::o;29773:315::-;29930:28;29940:4;29946:2;29950:7;29930:9;:28::i;:::-;29977:48;30000:4;30006:2;30010:7;30019:5;29977:22;:48::i;:::-;29969:111;;;;-1:-1:-1;;;29969:111:0;;;;;;;:::i;45205:108::-;45265:13;45298:7;45291:14;;;;;:::i;5814:723::-;5870:13;6091:10;6087:53;;-1:-1:-1;;6118:10:0;;;;;;;;;;;;-1:-1:-1;;;6118:10:0;;;;;5814:723::o;6087:53::-;6165:5;6150:12;6206:78;6213:9;;6206:78;;6239:8;;;;:::i;:::-;;-1:-1:-1;6262:10:0;;-1:-1:-1;6270:2:0;6262:10;;:::i;:::-;;;6206:78;;;6294:19;6326:6;6316:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6316:17:0;;6294:39;;6344:154;6351:10;;6344:154;;6378:11;6388:1;6378:11;;:::i;:::-;;-1:-1:-1;6447:10:0;6455:2;6447:5;:10;:::i;:::-;6434:24;;:2;:24;:::i;:::-;6421:39;;6404:6;6411;6404:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6404:56:0;;;;;;;;-1:-1:-1;6475:11:0;6484:2;6475:11;;:::i;:::-;;;6344:154;;40002:589;-1:-1:-1;;;;;40208:18:0;;40204:187;;40243:40;40275:7;41418:10;:17;;41391:24;;;;:15;:24;;;;;:44;;;41446:24;;;;;;;;;;;;41314:164;40243:40;40204:187;;;40313:2;-1:-1:-1;;;;;40305:10:0;:4;-1:-1:-1;;;;;40305:10:0;;40301:90;;40332:47;40365:4;40371:7;40332:32;:47::i;:::-;-1:-1:-1;;;;;40405:16:0;;40401:183;;40438:45;40475:7;40438:36;:45::i;40401:183::-;40511:4;-1:-1:-1;;;;;40505:10:0;:2;-1:-1:-1;;;;;40505:10:0;;40501:83;;40532:40;40560:2;40564:7;40532:27;:40::i;31722:321::-;31852:18;31858:2;31862:7;31852:5;:18::i;:::-;31903:54;31934:1;31938:2;31942:7;31951:5;31903:22;:54::i;:::-;31881:154;;;;-1:-1:-1;;;31881:154:0;;;;;;;:::i;35122:803::-;35277:4;-1:-1:-1;;;;;35298:13:0;;15615:20;15663:8;35294:624;;35334:72;;-1:-1:-1;;;35334:72:0;;-1:-1:-1;;;;;35334:36:0;;;;;:72;;8197:10;;35385:4;;35391:7;;35400:5;;35334:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35334:72:0;;;;;;;;-1:-1:-1;;35334:72:0;;;;;;;;;;;;:::i;:::-;;;35330:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35580:13:0;;35576:272;;35623:60;;-1:-1:-1;;;35623:60:0;;;;;;;:::i;35576:272::-;35798:6;35792:13;35783:6;35779:2;35775:15;35768:38;35330:533;-1:-1:-1;;;;;;35457:55:0;-1:-1:-1;;;35457:55:0;;-1:-1:-1;35450:62:0;;35294:624;-1:-1:-1;35902:4:0;35122:803;;;;;;:::o;42105:988::-;42371:22;42421:1;42396:22;42413:4;42396:16;:22::i;:::-;:26;;;;:::i;:::-;42433:18;42454:26;;;:17;:26;;;;;;42371:51;;-1:-1:-1;42587:28:0;;;42583:328;;-1:-1:-1;;;;;42654:18:0;;42632:19;42654:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42705:30;;;;;;:44;;;42822:30;;:17;:30;;;;;:43;;;42583:328;-1:-1:-1;43007:26:0;;;;:17;:26;;;;;;;;43000:33;;;-1:-1:-1;;;;;43051:18:0;;;;;:12;:18;;;;;:34;;;;;;;43044:41;42105:988::o;43388:1079::-;43666:10;:17;43641:22;;43666:21;;43686:1;;43666:21;:::i;:::-;43698:18;43719:24;;;:15;:24;;;;;;44092:10;:26;;43641:46;;-1:-1:-1;43719:24:0;;43641:46;;44092:26;;;;;;:::i;:::-;;;;;;;;;44070:48;;44156:11;44131:10;44142;44131:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44236:28;;;:15;:28;;;;;;;:41;;;44408:24;;;;;44401:31;44443:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43459:1008;;;43388:1079;:::o;40892:221::-;40977:14;40994:20;41011:2;40994:16;:20::i;:::-;-1:-1:-1;;;;;41025:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41070:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40892:221:0:o;32379:382::-;-1:-1:-1;;;;;32459:16:0;;32451:61;;;;-1:-1:-1;;;32451:61:0;;10461:2:1;32451:61:0;;;10443:21:1;;;10480:18;;;10473:30;10539:34;10519:18;;;10512:62;10591:18;;32451:61:0;10433:182:1;32451:61:0;30466:4;30490:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30490:16:0;:30;32523:58;;;;-1:-1:-1;;;32523:58:0;;7337:2:1;32523:58:0;;;7319:21:1;7376:2;7356:18;;;7349:30;7415;7395:18;;;7388:58;7463:18;;32523:58:0;7309:178:1;32523:58:0;32594:45;32623:1;32627:2;32631:7;32594:20;:45::i;:::-;-1:-1:-1;;;;;32652:13:0;;;;;;:9;:13;;;;;:18;;32669:1;;32652:13;:18;;32669:1;;32652:18;:::i;:::-;;;;-1:-1:-1;;32681:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32681:21:0;-1:-1:-1;;;;;32681:21:0;;;;;;;;32720:33;;32681:16;;;32720:33;;32681:16;;32720:33;32379:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;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;828:186;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;956:1;953;946:12;908:2;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:2;;;1164:1;1161;1154:12;1116:2;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1106:173;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:2;;;1446:1;1443;1436:12;1398:2;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1388:224;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:2;;;1806:1;1803;1796:12;1757:2;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:2;;;2076:1;2073;2066:12;2030:2;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:2:1;;2181:1;2178;2171:12;2130:2;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1747:536;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:2;;;2430:1;2427;2420:12;2382:2;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:2;;2601:1;2598;2591:12;2545:2;2624:5;2614:15;;;2372:263;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:2;;;2785:1;2782;2775:12;2737:2;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2727:167:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:2;;;3026:1;3023;3016:12;2978:2;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:2;;;3287:1;3284;3277:12;3239:2;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:2;;;3541:1;3538;3531:12;3493:2;3581:9;3568:23;3614:18;3606:6;3603:30;3600:2;;;3646:1;3643;3636:12;3600:2;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:2:1;;3751:1;3748;3741:12;3700:2;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:2;;;3986:1;3983;3976:12;3938:2;-1:-1:-1;4009:23:1;;3928:110;-1:-1:-1;3928:110:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4092:208;-1:-1:-1;;4092:208:1:o;4305:470::-;4484:3;4522:6;4516:13;4538:53;4584:6;4579:3;4572:4;4564:6;4560:17;4538:53;:::i;:::-;4654:13;;4613:16;;;;4676:57;4654:13;4613:16;4710:4;4698:17;;4676:57;:::i;:::-;4749:20;;4492:283;-1:-1:-1;;;;4492:283:1:o;4988:488::-;-1:-1:-1;;;;;5257:15:1;;;5239:34;;5309:15;;5304:2;5289:18;;5282:43;5356:2;5341:18;;5334:34;;;5404:3;5399:2;5384:18;;5377:31;;;5182:4;;5425:45;;5450:19;;5442:6;5425:45;:::i;:::-;5417:53;5191:285;-1:-1:-1;;;;;;5191:285:1:o;5673:219::-;5822:2;5811:9;5804:21;5785:4;5842:44;5882:2;5871:9;5867:18;5859:6;5842:44;:::i;6309:414::-;6511:2;6493:21;;;6550:2;6530:18;;;6523:30;6589:34;6584:2;6569:18;;6562:62;-1:-1:-1;;;6655:2:1;6640:18;;6633:48;6713:3;6698:19;;6483:240::o;11033:356::-;11235:2;11217:21;;;11254:18;;;11247:30;11313:34;11308:2;11293:18;;11286:62;11380:2;11365:18;;11207:182::o;12967:413::-;13169:2;13151:21;;;13208:2;13188:18;;;13181:30;13247:34;13242:2;13227:18;;13220:62;-1:-1:-1;;;13313:2:1;13298:18;;13291:47;13370:3;13355:19;;13141:239::o;13980:128::-;14020:3;14051:1;14047:6;14044:1;14041:13;14038:2;;;14057:18;;:::i;:::-;-1:-1:-1;14093:9:1;;14028:80::o;14113:120::-;14153:1;14179;14169:2;;14184:18;;:::i;:::-;-1:-1:-1;14218:9:1;;14159:74::o;14238:125::-;14278:4;14306:1;14303;14300:8;14297:2;;;14311:18;;:::i;:::-;-1:-1:-1;14348:9:1;;14287:76::o;14368:258::-;14440:1;14450:113;14464:6;14461:1;14458:13;14450:113;;;14540:11;;;14534:18;14521:11;;;14514:39;14486:2;14479:10;14450:113;;;14581:6;14578:1;14575:13;14572:2;;;-1:-1:-1;;14616:1:1;14598:16;;14591:27;14421:205::o;14631:380::-;14710:1;14706:12;;;;14753;;;14774:2;;14828:4;14820:6;14816:17;14806:27;;14774:2;14881;14873:6;14870:14;14850:18;14847:38;14844:2;;;14927:10;14922:3;14918:20;14915:1;14908:31;14962:4;14959:1;14952:15;14990:4;14987:1;14980:15;14844:2;;14686:325;;;:::o;15016:135::-;15055:3;-1:-1:-1;;15076:17:1;;15073:2;;;15096:18;;:::i;:::-;-1:-1:-1;15143:1:1;15132:13;;15063:88::o;15156:112::-;15188:1;15214;15204:2;;15219:18;;:::i;:::-;-1:-1:-1;15253:9:1;;15194:74::o;15273:127::-;15334:10;15329:3;15325:20;15322:1;15315:31;15365:4;15362:1;15355:15;15389:4;15386:1;15379:15;15405:127;15466:10;15461:3;15457:20;15454:1;15447:31;15497:4;15494:1;15487:15;15521:4;15518:1;15511:15;15537:127;15598:10;15593:3;15589:20;15586:1;15579:31;15629:4;15626:1;15619:15;15653:4;15650:1;15643:15;15669:127;15730:10;15725:3;15721:20;15718:1;15711:31;15761:4;15758:1;15751:15;15785:4;15782:1;15775:15;15801:127;15862:10;15857:3;15853:20;15850:1;15843:31;15893:4;15890:1;15883:15;15917:4;15914:1;15907:15;15933:131;-1:-1:-1;;;;;;16007:32:1;;15997:43;;15987:2;;16054:1;16051;16044:12
Swarm Source
ipfs://336dbfc9d744a9079822e7498ae694d9e2d319135c4a8ba9314632589f87689e
Loading...
Loading
Loading...
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.
[ 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.