ERC-721
Overview
Max Total Supply
146 FME
Holders
62
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Balance
0 FMELoading...
Loading
Loading...
Loading
Loading...
Loading
Contract Name:
FuckMikeEther
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity)
/** *Submitted for verification at ftmscan.com on 2021-08-07 */ // Sources flattened with hardhat v2.3.0 https://hardhat.org // File @openzeppelin/contracts/utils/introspection/[email protected] // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly 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" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. 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 { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` 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 {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require( index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds" ); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require( index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds" ); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721URIStorage: URI query for nonexistent token" ); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require( _exists(tokenId), "ERC721URIStorage: URI set of nonexistent token" ); _tokenURIs[tokenId] = _tokenURI; } /** * @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 override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File @openzeppelin/contracts/security/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved" ); _burn(tokenId); } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } } // File contracts/FuckMikeEther.sol pragma solidity ^0.8.6; contract FuckMikeEther is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, Ownable, ERC721Burnable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; string baseURI = "http://localhost:3000/api/metadata?id="; uint256 public maxSupply = 1000; constructor() ERC721("FuckMikeEther", "FME") {} function internalMint(address to) internal { require(totalSupply() < maxSupply, "supply depleted"); _safeMint(to, _tokenIdCounter.current()); _tokenIdCounter.increment(); } function safeMint(address to) public onlyOwner { internalMint(to); } function buy(uint256 amount) public payable whenNotPaused returns (uint256) { require(msg.value >= (69 * 1 ether) * amount, "not enough was paid"); for (uint256 i = 0; i < amount; i++) { internalMint(msg.sender); } return _tokenIdCounter.current(); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function withdraw() public onlyOwner { address payable sender = payable(msg.sender); uint256 balance = address(this).balance; sender.transfer(balance); } function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } function setMaxSupply(uint256 newMaxSupply) public onlyOwner { maxSupply = newMaxSupply; } function _baseURI() internal view override returns (string memory) { return baseURI; } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) whenNotPaused { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","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":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"buy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","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":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"setMaxSupply","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e060405260266080818152906200269e60a03980516200002991600d91602090910190620000f8565b506103e8600e553480156200003d57600080fd5b50604080518082018252600d81526c233ab1b5a6b4b5b2a2ba3432b960991b602080830191825283518085019094526003845262464d4560e81b9084015281519192916200008e91600091620000f8565b508051620000a4906001906020840190620000f8565b5050600b80546001600160a81b0319163361010081029190911790915560405190915081906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001db565b82805462000106906200019e565b90600052602060002090601f0160209004810192826200012a576000855562000175565b82601f106200014557805160ff191683800117855562000175565b8280016001018555821562000175579182015b828111156200017557825182559160200191906001019062000158565b506200018392915062000187565b5090565b5b8082111562000183576000815560010162000188565b600181811c90821680620001b357607f821691505b60208210811415620001d557634e487b7160e01b600052602260045260246000fd5b50919050565b6124b380620001eb6000396000f3fe6080604052600436106101c25760003560e01c80635c975abb116100f757806395d89b4111610095578063d5abeb0111610064578063d5abeb01146104db578063d96a094a146104f1578063e985e9c514610504578063f2fde38b1461054d57600080fd5b806395d89b4114610466578063a22cb4651461047b578063b88d4fde1461049b578063c87b56dd146104bb57600080fd5b806370a08231116100d157806370a08231146103f9578063715018a6146104195780638456cb591461042e5780638da5cb5b1461044357600080fd5b80635c975abb146103a15780636352211e146103b95780636f8b44b0146103d957600080fd5b80633ccfd60b1161016457806342842e0e1161013e57806342842e0e1461032157806342966c68146103415780634f6ccce71461036157806355f804b31461038157600080fd5b80633ccfd60b146102d75780633f4ba83a146102ec57806340d097c31461030157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd146102975780632f745c59146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046120b8565b61056d565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161057e565b6040516101f391906121ec565b34801561022a57600080fd5b5061023e61023936600461213b565b610610565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b5061027661027136600461208e565b6106aa565b005b34801561028457600080fd5b506008545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b2366004611f9a565b6107c0565b3480156102c357600080fd5b506102896102d236600461208e565b6107f2565b3480156102e357600080fd5b50610276610888565b3480156102f857600080fd5b506102766108e9565b34801561030d57600080fd5b5061027661031c366004611f4c565b610923565b34801561032d57600080fd5b5061027661033c366004611f9a565b61095f565b34801561034d57600080fd5b5061027661035c36600461213b565b61097a565b34801561036d57600080fd5b5061028961037c36600461213b565b6109f1565b34801561038d57600080fd5b5061027661039c3660046120f2565b610a84565b3480156103ad57600080fd5b50600b5460ff166101e7565b3480156103c557600080fd5b5061023e6103d436600461213b565b610acb565b3480156103e557600080fd5b506102766103f436600461213b565b610b42565b34801561040557600080fd5b50610289610414366004611f4c565b610b77565b34801561042557600080fd5b50610276610bfe565b34801561043a57600080fd5b50610276610c7e565b34801561044f57600080fd5b50600b5461010090046001600160a01b031661023e565b34801561047257600080fd5b50610211610cb6565b34801561048757600080fd5b50610276610496366004612052565b610cc5565b3480156104a757600080fd5b506102766104b6366004611fd6565b610d8a565b3480156104c757600080fd5b506102116104d636600461213b565b610dc2565b3480156104e757600080fd5b50610289600e5481565b6102896104ff36600461213b565b610dcd565b34801561051057600080fd5b506101e761051f366004611f67565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055957600080fd5b50610276610568366004611f4c565b610e84565b600061057882610f80565b92915050565b60606000805461058d9061238f565b80601f01602080910402602001604051908101604052809291908181526020018280546105b99061238f565b80156106065780601f106105db57610100808354040283529160200191610606565b820191906000526020600020905b8154815290600101906020018083116105e957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661068e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b582610acb565b9050806001600160a01b0316836001600160a01b031614156107235760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610685565b336001600160a01b038216148061073f575061073f813361051f565b6107b15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610685565b6107bb8383610fa5565b505050565b6107cb335b82611013565b6107e75760405162461bcd60e51b8152600401610685906122b0565b6107bb83838361110a565b60006107fd83610b77565b821061085f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610685565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b036101009091041633146108b85760405162461bcd60e51b81526004016106859061227b565b60405133904790829082156108fc029083906000818181858888f193505050501580156107bb573d6000803e3d6000fd5b600b546001600160a01b036101009091041633146109195760405162461bcd60e51b81526004016106859061227b565b6109216112b5565b565b600b546001600160a01b036101009091041633146109535760405162461bcd60e51b81526004016106859061227b565b61095c81611348565b50565b6107bb83838360405180602001604052806000815250610d8a565b610983336107c5565b6109e85760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610685565b61095c816113ad565b60006109fc60085490565b8210610a5f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610685565b60088281548110610a7257610a7261243b565b90600052602060002001549050919050565b600b546001600160a01b03610100909104163314610ab45760405162461bcd60e51b81526004016106859061227b565b8051610ac790600d906020840190611df0565b5050565b6000818152600260205260408120546001600160a01b0316806105785760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610685565b600b546001600160a01b03610100909104163314610b725760405162461bcd60e51b81526004016106859061227b565b600e55565b60006001600160a01b038216610be25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610685565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03610100909104163314610c2e5760405162461bcd60e51b81526004016106859061227b565b600b5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b8054610100600160a81b0319169055565b600b546001600160a01b03610100909104163314610cae5760405162461bcd60e51b81526004016106859061227b565b6109216113b6565b60606001805461058d9061238f565b6001600160a01b038216331415610d1e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610685565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d943383611013565b610db05760405162461bcd60e51b8152600401610685906122b0565b610dbc8484848461140e565b50505050565b606061057882611441565b6000610ddb600b5460ff1690565b15610df85760405162461bcd60e51b815260040161068590612251565b610e0b826803bd913e6c1df4000061232d565b341015610e505760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da081dd85cc81c185a59606a1b6044820152606401610685565b60005b82811015610e7657610e6433611348565b80610e6e816123ca565b915050610e53565b50600c54610578565b919050565b600b546001600160a01b03610100909104163314610eb45760405162461bcd60e51b81526004016106859061227b565b6001600160a01b038116610f195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610685565b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60006001600160e01b0319821663780e9d6360e01b14806105785750610578826115b3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fda82610acb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661108c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610685565b600061109783610acb565b9050806001600160a01b0316846001600160a01b031614806110d25750836001600160a01b03166110c784610610565b6001600160a01b0316145b8061110257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661111d82610acb565b6001600160a01b0316146111855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610685565b6001600160a01b0382166111e75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610685565b6111f2838383611603565b6111fd600082610fa5565b6001600160a01b038316600090815260036020526040812080546001929061122690849061234c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611254908490612301565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff166112fe5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610685565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600e546008541061138d5760405162461bcd60e51b815260206004820152600f60248201526e1cdd5c1c1b1e4819195c1b195d1959608a1b6044820152606401610685565b61139f8161139a600c5490565b611631565b61095c600c80546001019055565b61095c8161164b565b600b5460ff16156113d95760405162461bcd60e51b815260040161068590612251565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861132b3390565b61141984848461110a565b6114258484848461168b565b610dbc5760405162461bcd60e51b8152600401610685906121ff565b6000818152600260205260409020546060906001600160a01b03166114c25760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610685565b6000828152600a6020526040812080546114db9061238f565b80601f01602080910402602001604051908101604052809291908181526020018280546115079061238f565b80156115545780601f1061152957610100808354040283529160200191611554565b820191906000526020600020905b81548152906001019060200180831161153757829003601f168201915b505050505090506000611565611798565b9050805160001415611578575092915050565b8151156115aa578082604051602001611592929190612180565b60405160208183030381529060405292505050919050565b611102846117a7565b60006001600160e01b031982166380ac58cd60e01b14806115e457506001600160e01b03198216635b5e139f60e01b145b8061057857506301ffc9a760e01b6001600160e01b0319831614610578565b600b5460ff16156116265760405162461bcd60e51b815260040161068590612251565b6107bb838383611882565b610ac782826040518060200160405280600081525061193a565b6116548161196d565b6000818152600a60205260409020805461166d9061238f565b15905061095c576000818152600a6020526040812061095c91611e74565b60006001600160a01b0384163b1561178d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116cf9033908990889088906004016121af565b602060405180830381600087803b1580156116e957600080fd5b505af1925050508015611719575060408051601f3d908101601f19168201909252611716918101906120d5565b60015b611773573d808015611747576040519150601f19603f3d011682016040523d82523d6000602084013e61174c565b606091505b50805161176b5760405162461bcd60e51b8152600401610685906121ff565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611102565b506001949350505050565b6060600d805461058d9061238f565b6000818152600260205260409020546060906001600160a01b03166118265760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610685565b6000611830611798565b90506000815111611850576040518060200160405280600081525061187b565b8061185a84611a14565b60405160200161186b929190612180565b6040516020818303038152906040525b9392505050565b6001600160a01b0383166118dd576118d881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611900565b816001600160a01b0316836001600160a01b031614611900576119008382611b12565b6001600160a01b038216611917576107bb81611baf565b826001600160a01b0316826001600160a01b0316146107bb576107bb8282611c5e565b6119448383611ca2565b611951600084848461168b565b6107bb5760405162461bcd60e51b8152600401610685906121ff565b600061197882610acb565b905061198681600084611603565b611991600083610fa5565b6001600160a01b03811660009081526003602052604081208054600192906119ba90849061234c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081611a385750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a625780611a4c816123ca565b9150611a5b9050600a83612319565b9150611a3c565b60008167ffffffffffffffff811115611a7d57611a7d612451565b6040519080825280601f01601f191660200182016040528015611aa7576020820181803683370190505b5090505b841561110257611abc60018361234c565b9150611ac9600a866123e5565b611ad4906030612301565b60f81b818381518110611ae957611ae961243b565b60200101906001600160f81b031916908160001a905350611b0b600a86612319565b9450611aab565b60006001611b1f84610b77565b611b29919061234c565b600083815260076020526040902054909150808214611b7c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611bc19060019061234c565b60008381526009602052604081205460088054939450909284908110611be957611be961243b565b906000526020600020015490508060088381548110611c0a57611c0a61243b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c4257611c42612425565b6001900381819060005260206000200160009055905550505050565b6000611c6983610b77565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611cf85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610685565b6000818152600260205260409020546001600160a01b031615611d5d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610685565b611d6960008383611603565b6001600160a01b0382166000908152600360205260408120805460019290611d92908490612301565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611dfc9061238f565b90600052602060002090601f016020900481019282611e1e5760008555611e64565b82601f10611e3757805160ff1916838001178555611e64565b82800160010185558215611e64579182015b82811115611e64578251825591602001919060010190611e49565b50611e70929150611eaa565b5090565b508054611e809061238f565b6000825580601f10611e90575050565b601f01602090049060005260206000209081019061095c91905b5b80821115611e705760008155600101611eab565b600067ffffffffffffffff80841115611eda57611eda612451565b604051601f8501601f19908116603f01168101908282118183101715611f0257611f02612451565b81604052809350858152868686011115611f1b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610e7f57600080fd5b600060208284031215611f5e57600080fd5b61187b82611f35565b60008060408385031215611f7a57600080fd5b611f8383611f35565b9150611f9160208401611f35565b90509250929050565b600080600060608486031215611faf57600080fd5b611fb884611f35565b9250611fc660208501611f35565b9150604084013590509250925092565b60008060008060808587031215611fec57600080fd5b611ff585611f35565b935061200360208601611f35565b925060408501359150606085013567ffffffffffffffff81111561202657600080fd5b8501601f8101871361203757600080fd5b61204687823560208401611ebf565b91505092959194509250565b6000806040838503121561206557600080fd5b61206e83611f35565b91506020830135801515811461208357600080fd5b809150509250929050565b600080604083850312156120a157600080fd5b6120aa83611f35565b946020939093013593505050565b6000602082840312156120ca57600080fd5b813561187b81612467565b6000602082840312156120e757600080fd5b815161187b81612467565b60006020828403121561210457600080fd5b813567ffffffffffffffff81111561211b57600080fd5b8201601f8101841361212c57600080fd5b61110284823560208401611ebf565b60006020828403121561214d57600080fd5b5035919050565b6000815180845261216c816020860160208601612363565b601f01601f19169290920160200192915050565b60008351612192818460208801612363565b8351908301906121a6818360208801612363565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121e290830184612154565b9695505050505050565b60208152600061187b6020830184612154565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612314576123146123f9565b500190565b6000826123285761232861240f565b500490565b6000816000190483118215151615612347576123476123f9565b500290565b60008282101561235e5761235e6123f9565b500390565b60005b8381101561237e578181015183820152602001612366565b83811115610dbc5750506000910152565b600181811c908216806123a357607f821691505b602082108114156123c457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123de576123de6123f9565b5060010190565b6000826123f4576123f461240f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461095c57600080fdfea2646970667358221220a55656c1bfad47e602a1f4cb71c29dfe7a24925ae7619524d996c54be9588e6d64736f6c63430008060033687474703a2f2f6c6f63616c686f73743a333030302f6170692f6d657461646174613f69643d
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80635c975abb116100f757806395d89b4111610095578063d5abeb0111610064578063d5abeb01146104db578063d96a094a146104f1578063e985e9c514610504578063f2fde38b1461054d57600080fd5b806395d89b4114610466578063a22cb4651461047b578063b88d4fde1461049b578063c87b56dd146104bb57600080fd5b806370a08231116100d157806370a08231146103f9578063715018a6146104195780638456cb591461042e5780638da5cb5b1461044357600080fd5b80635c975abb146103a15780636352211e146103b95780636f8b44b0146103d957600080fd5b80633ccfd60b1161016457806342842e0e1161013e57806342842e0e1461032157806342966c68146103415780634f6ccce71461036157806355f804b31461038157600080fd5b80633ccfd60b146102d75780633f4ba83a146102ec57806340d097c31461030157600080fd5b8063095ea7b3116101a0578063095ea7b31461025657806318160ddd1461027857806323b872dd146102975780632f745c59146102b757600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e23660046120b8565b61056d565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b5061021161057e565b6040516101f391906121ec565b34801561022a57600080fd5b5061023e61023936600461213b565b610610565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b5061027661027136600461208e565b6106aa565b005b34801561028457600080fd5b506008545b6040519081526020016101f3565b3480156102a357600080fd5b506102766102b2366004611f9a565b6107c0565b3480156102c357600080fd5b506102896102d236600461208e565b6107f2565b3480156102e357600080fd5b50610276610888565b3480156102f857600080fd5b506102766108e9565b34801561030d57600080fd5b5061027661031c366004611f4c565b610923565b34801561032d57600080fd5b5061027661033c366004611f9a565b61095f565b34801561034d57600080fd5b5061027661035c36600461213b565b61097a565b34801561036d57600080fd5b5061028961037c36600461213b565b6109f1565b34801561038d57600080fd5b5061027661039c3660046120f2565b610a84565b3480156103ad57600080fd5b50600b5460ff166101e7565b3480156103c557600080fd5b5061023e6103d436600461213b565b610acb565b3480156103e557600080fd5b506102766103f436600461213b565b610b42565b34801561040557600080fd5b50610289610414366004611f4c565b610b77565b34801561042557600080fd5b50610276610bfe565b34801561043a57600080fd5b50610276610c7e565b34801561044f57600080fd5b50600b5461010090046001600160a01b031661023e565b34801561047257600080fd5b50610211610cb6565b34801561048757600080fd5b50610276610496366004612052565b610cc5565b3480156104a757600080fd5b506102766104b6366004611fd6565b610d8a565b3480156104c757600080fd5b506102116104d636600461213b565b610dc2565b3480156104e757600080fd5b50610289600e5481565b6102896104ff36600461213b565b610dcd565b34801561051057600080fd5b506101e761051f366004611f67565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055957600080fd5b50610276610568366004611f4c565b610e84565b600061057882610f80565b92915050565b60606000805461058d9061238f565b80601f01602080910402602001604051908101604052809291908181526020018280546105b99061238f565b80156106065780601f106105db57610100808354040283529160200191610606565b820191906000526020600020905b8154815290600101906020018083116105e957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b031661068e5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b582610acb565b9050806001600160a01b0316836001600160a01b031614156107235760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610685565b336001600160a01b038216148061073f575061073f813361051f565b6107b15760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610685565b6107bb8383610fa5565b505050565b6107cb335b82611013565b6107e75760405162461bcd60e51b8152600401610685906122b0565b6107bb83838361110a565b60006107fd83610b77565b821061085f5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610685565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b036101009091041633146108b85760405162461bcd60e51b81526004016106859061227b565b60405133904790829082156108fc029083906000818181858888f193505050501580156107bb573d6000803e3d6000fd5b600b546001600160a01b036101009091041633146109195760405162461bcd60e51b81526004016106859061227b565b6109216112b5565b565b600b546001600160a01b036101009091041633146109535760405162461bcd60e51b81526004016106859061227b565b61095c81611348565b50565b6107bb83838360405180602001604052806000815250610d8a565b610983336107c5565b6109e85760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610685565b61095c816113ad565b60006109fc60085490565b8210610a5f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610685565b60088281548110610a7257610a7261243b565b90600052602060002001549050919050565b600b546001600160a01b03610100909104163314610ab45760405162461bcd60e51b81526004016106859061227b565b8051610ac790600d906020840190611df0565b5050565b6000818152600260205260408120546001600160a01b0316806105785760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610685565b600b546001600160a01b03610100909104163314610b725760405162461bcd60e51b81526004016106859061227b565b600e55565b60006001600160a01b038216610be25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610685565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03610100909104163314610c2e5760405162461bcd60e51b81526004016106859061227b565b600b5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b8054610100600160a81b0319169055565b600b546001600160a01b03610100909104163314610cae5760405162461bcd60e51b81526004016106859061227b565b6109216113b6565b60606001805461058d9061238f565b6001600160a01b038216331415610d1e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610685565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d943383611013565b610db05760405162461bcd60e51b8152600401610685906122b0565b610dbc8484848461140e565b50505050565b606061057882611441565b6000610ddb600b5460ff1690565b15610df85760405162461bcd60e51b815260040161068590612251565b610e0b826803bd913e6c1df4000061232d565b341015610e505760405162461bcd60e51b81526020600482015260136024820152721b9bdd08195b9bdd59da081dd85cc81c185a59606a1b6044820152606401610685565b60005b82811015610e7657610e6433611348565b80610e6e816123ca565b915050610e53565b50600c54610578565b919050565b600b546001600160a01b03610100909104163314610eb45760405162461bcd60e51b81526004016106859061227b565b6001600160a01b038116610f195760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610685565b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b60006001600160e01b0319821663780e9d6360e01b14806105785750610578826115b3565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610fda82610acb565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661108c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610685565b600061109783610acb565b9050806001600160a01b0316846001600160a01b031614806110d25750836001600160a01b03166110c784610610565b6001600160a01b0316145b8061110257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661111d82610acb565b6001600160a01b0316146111855760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610685565b6001600160a01b0382166111e75760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610685565b6111f2838383611603565b6111fd600082610fa5565b6001600160a01b038316600090815260036020526040812080546001929061122690849061234c565b90915550506001600160a01b0382166000908152600360205260408120805460019290611254908490612301565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff166112fe5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610685565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600e546008541061138d5760405162461bcd60e51b815260206004820152600f60248201526e1cdd5c1c1b1e4819195c1b195d1959608a1b6044820152606401610685565b61139f8161139a600c5490565b611631565b61095c600c80546001019055565b61095c8161164b565b600b5460ff16156113d95760405162461bcd60e51b815260040161068590612251565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861132b3390565b61141984848461110a565b6114258484848461168b565b610dbc5760405162461bcd60e51b8152600401610685906121ff565b6000818152600260205260409020546060906001600160a01b03166114c25760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610685565b6000828152600a6020526040812080546114db9061238f565b80601f01602080910402602001604051908101604052809291908181526020018280546115079061238f565b80156115545780601f1061152957610100808354040283529160200191611554565b820191906000526020600020905b81548152906001019060200180831161153757829003601f168201915b505050505090506000611565611798565b9050805160001415611578575092915050565b8151156115aa578082604051602001611592929190612180565b60405160208183030381529060405292505050919050565b611102846117a7565b60006001600160e01b031982166380ac58cd60e01b14806115e457506001600160e01b03198216635b5e139f60e01b145b8061057857506301ffc9a760e01b6001600160e01b0319831614610578565b600b5460ff16156116265760405162461bcd60e51b815260040161068590612251565b6107bb838383611882565b610ac782826040518060200160405280600081525061193a565b6116548161196d565b6000818152600a60205260409020805461166d9061238f565b15905061095c576000818152600a6020526040812061095c91611e74565b60006001600160a01b0384163b1561178d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116cf9033908990889088906004016121af565b602060405180830381600087803b1580156116e957600080fd5b505af1925050508015611719575060408051601f3d908101601f19168201909252611716918101906120d5565b60015b611773573d808015611747576040519150601f19603f3d011682016040523d82523d6000602084013e61174c565b606091505b50805161176b5760405162461bcd60e51b8152600401610685906121ff565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611102565b506001949350505050565b6060600d805461058d9061238f565b6000818152600260205260409020546060906001600160a01b03166118265760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610685565b6000611830611798565b90506000815111611850576040518060200160405280600081525061187b565b8061185a84611a14565b60405160200161186b929190612180565b6040516020818303038152906040525b9392505050565b6001600160a01b0383166118dd576118d881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611900565b816001600160a01b0316836001600160a01b031614611900576119008382611b12565b6001600160a01b038216611917576107bb81611baf565b826001600160a01b0316826001600160a01b0316146107bb576107bb8282611c5e565b6119448383611ca2565b611951600084848461168b565b6107bb5760405162461bcd60e51b8152600401610685906121ff565b600061197882610acb565b905061198681600084611603565b611991600083610fa5565b6001600160a01b03811660009081526003602052604081208054600192906119ba90849061234c565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b606081611a385750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a625780611a4c816123ca565b9150611a5b9050600a83612319565b9150611a3c565b60008167ffffffffffffffff811115611a7d57611a7d612451565b6040519080825280601f01601f191660200182016040528015611aa7576020820181803683370190505b5090505b841561110257611abc60018361234c565b9150611ac9600a866123e5565b611ad4906030612301565b60f81b818381518110611ae957611ae961243b565b60200101906001600160f81b031916908160001a905350611b0b600a86612319565b9450611aab565b60006001611b1f84610b77565b611b29919061234c565b600083815260076020526040902054909150808214611b7c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611bc19060019061234c565b60008381526009602052604081205460088054939450909284908110611be957611be961243b565b906000526020600020015490508060088381548110611c0a57611c0a61243b565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611c4257611c42612425565b6001900381819060005260206000200160009055905550505050565b6000611c6983610b77565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611cf85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610685565b6000818152600260205260409020546001600160a01b031615611d5d5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610685565b611d6960008383611603565b6001600160a01b0382166000908152600360205260408120805460019290611d92908490612301565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611dfc9061238f565b90600052602060002090601f016020900481019282611e1e5760008555611e64565b82601f10611e3757805160ff1916838001178555611e64565b82800160010185558215611e64579182015b82811115611e64578251825591602001919060010190611e49565b50611e70929150611eaa565b5090565b508054611e809061238f565b6000825580601f10611e90575050565b601f01602090049060005260206000209081019061095c91905b5b80821115611e705760008155600101611eab565b600067ffffffffffffffff80841115611eda57611eda612451565b604051601f8501601f19908116603f01168101908282118183101715611f0257611f02612451565b81604052809350858152868686011115611f1b57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610e7f57600080fd5b600060208284031215611f5e57600080fd5b61187b82611f35565b60008060408385031215611f7a57600080fd5b611f8383611f35565b9150611f9160208401611f35565b90509250929050565b600080600060608486031215611faf57600080fd5b611fb884611f35565b9250611fc660208501611f35565b9150604084013590509250925092565b60008060008060808587031215611fec57600080fd5b611ff585611f35565b935061200360208601611f35565b925060408501359150606085013567ffffffffffffffff81111561202657600080fd5b8501601f8101871361203757600080fd5b61204687823560208401611ebf565b91505092959194509250565b6000806040838503121561206557600080fd5b61206e83611f35565b91506020830135801515811461208357600080fd5b809150509250929050565b600080604083850312156120a157600080fd5b6120aa83611f35565b946020939093013593505050565b6000602082840312156120ca57600080fd5b813561187b81612467565b6000602082840312156120e757600080fd5b815161187b81612467565b60006020828403121561210457600080fd5b813567ffffffffffffffff81111561211b57600080fd5b8201601f8101841361212c57600080fd5b61110284823560208401611ebf565b60006020828403121561214d57600080fd5b5035919050565b6000815180845261216c816020860160208601612363565b601f01601f19169290920160200192915050565b60008351612192818460208801612363565b8351908301906121a6818360208801612363565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121e290830184612154565b9695505050505050565b60208152600061187b6020830184612154565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612314576123146123f9565b500190565b6000826123285761232861240f565b500490565b6000816000190483118215151615612347576123476123f9565b500290565b60008282101561235e5761235e6123f9565b500390565b60005b8381101561237e578181015183820152602001612366565b83811115610dbc5750506000910152565b600181811c908216806123a357607f821691505b602082108114156123c457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123de576123de6123f9565b5060010190565b6000826123f4576123f461240f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461095c57600080fdfea2646970667358221220a55656c1bfad47e602a1f4cb71c29dfe7a24925ae7619524d996c54be9588e6d64736f6c63430008060033
Deployed Bytecode Sourcemap
51997:2520:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54302:212;;;;;;;;;;-1:-1:-1;54302:212:0;;;;;:::i;:::-;;:::i;:::-;;;5646:14:1;;5639:22;5621:41;;5609:2;5594:18;54302:212:0;;;;;;;;22903:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24485:308::-;;;;;;;;;;-1:-1:-1;24485:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;24485:308:0;4881:102:1;24008:411:0;;;;;;;;;;-1:-1:-1;24008:411:0;;;;;:::i;:::-;;:::i;:::-;;37569:113;;;;;;;;;;-1:-1:-1;37657:10:0;:17;37569:113;;;15471:25:1;;;15459:2;15444:18;37569:113:0;15426:76:1;25544:376:0;;;;;;;;;;-1:-1:-1;25544:376:0;;;;;:::i;:::-;;:::i;37150:343::-;;;;;;;;;;-1:-1:-1;37150:343:0;;;;;:::i;:::-;;:::i;53192:185::-;;;;;;;;;;;;;:::i;53119:65::-;;;;;;;;;;;;;:::i;52603:82::-;;;;;;;;;;-1:-1:-1;52603:82:0;;;;;:::i;:::-;;:::i;25991:185::-;;;;;;;;;;-1:-1:-1;25991:185:0;;;;;:::i;:::-;;:::i;50326:282::-;;;;;;;;;;-1:-1:-1;50326:282:0;;;;;:::i;:::-;;:::i;37759:320::-;;;;;;;;;;-1:-1:-1;37759:320:0;;;;;:::i;:::-;;:::i;53385:102::-;;;;;;;;;;-1:-1:-1;53385:102:0;;;;;:::i;:::-;;:::i;46323:86::-;;;;;;;;;;-1:-1:-1;46394:7:0;;;;46323:86;;22510:326;;;;;;;;;;-1:-1:-1;22510:326:0;;;;;:::i;:::-;;:::i;53495:104::-;;;;;;;;;;-1:-1:-1;53495:104:0;;;;;:::i;:::-;;:::i;22153:295::-;;;;;;;;;;-1:-1:-1;22153:295:0;;;;;:::i;:::-;;:::i;49280:148::-;;;;;;;;;;;;;:::i;53050:61::-;;;;;;;;;;;;;:::i;48629:87::-;;;;;;;;;;-1:-1:-1;48702:6:0;;;;;-1:-1:-1;;;;;48702:6:0;48629:87;;23072:104;;;;;;;;;;;;;:::i;24865:327::-;;;;;;;;;;-1:-1:-1;24865:327:0;;;;;:::i;:::-;;:::i;26247:365::-;;;;;;;;;;-1:-1:-1;26247:365:0;;;;;:::i;:::-;;:::i;54098:196::-;;;;;;;;;;-1:-1:-1;54098:196:0;;;;;:::i;:::-;;:::i;52296:31::-;;;;;;;;;;;;;;;;52693:349;;;;;;:::i;:::-;;:::i;25263:214::-;;;;;;;;;;-1:-1:-1;25263:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;25434:25:0;;;25405:4;25434:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25263:214;49583:281;;;;;;;;;;-1:-1:-1;49583:281:0;;;;;:::i;:::-;;:::i;54302:212::-;54441:4;54470:36;54494:11;54470:23;:36::i;:::-;54463:43;54302:212;-1:-1:-1;;54302:212:0:o;22903:100::-;22957:13;22990:5;22983:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22903:100;:::o;24485:308::-;24606:7;28248:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28248:16:0;24631:110;;;;-1:-1:-1;;;24631:110:0;;11929:2:1;24631:110:0;;;11911:21:1;11968:2;11948:18;;;11941:30;12007:34;11987:18;;;11980:62;-1:-1:-1;;;12058:18:1;;;12051:42;12110:19;;24631:110:0;;;;;;;;;-1:-1:-1;24761:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24761:24:0;;24485:308::o;24008:411::-;24089:13;24105:23;24120:7;24105:14;:23::i;:::-;24089:39;;24153:5;-1:-1:-1;;;;;24147:11:0;:2;-1:-1:-1;;;;;24147:11:0;;;24139:57;;;;-1:-1:-1;;;24139:57:0;;13529:2:1;24139:57:0;;;13511:21:1;13568:2;13548:18;;;13541:30;13607:34;13587:18;;;13580:62;-1:-1:-1;;;13658:18:1;;;13651:31;13699:19;;24139:57:0;13501:223:1;24139:57:0;17038:10;-1:-1:-1;;;;;24231:21:0;;;;:62;;-1:-1:-1;24256:37:0;24273:5;17038:10;25263:214;:::i;24256:37::-;24209:168;;;;-1:-1:-1;;;24209:168:0;;9904:2:1;24209:168:0;;;9886:21:1;9943:2;9923:18;;;9916:30;9982:34;9962:18;;;9955:62;10053:26;10033:18;;;10026:54;10097:19;;24209:168:0;9876:246:1;24209:168:0;24390:21;24399:2;24403:7;24390:8;:21::i;:::-;24078:341;24008:411;;:::o;25544:376::-;25753:41;17038:10;25772:12;25786:7;25753:18;:41::i;:::-;25731:140;;;;-1:-1:-1;;;25731:140:0;;;;;;;:::i;:::-;25884:28;25894:4;25900:2;25904:7;25884:9;:28::i;37150:343::-;37292:7;37347:23;37364:5;37347:16;:23::i;:::-;37339:5;:31;37317:124;;;;-1:-1:-1;;;37317:124:0;;6792:2:1;37317:124:0;;;6774:21:1;6831:2;6811:18;;;6804:30;6870:34;6850:18;;;6843:62;-1:-1:-1;;;6921:18:1;;;6914:41;6972:19;;37317:124:0;6764:233:1;37317:124:0;-1:-1:-1;;;;;;37459:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37150:343::o;53192:185::-;48702:6;;-1:-1:-1;;;;;48702:6:0;;;;;17038:10;48849:23;48841:68;;;;-1:-1:-1;;;48841:68:0;;;;;;;:::i;:::-;53345:24:::1;::::0;53273:10:::1;::::0;53313:21:::1;::::0;53273:10;;53345:24;::::1;;;::::0;53313:21;;53240:22:::1;53345:24:::0;53240:22;53345:24;53313:21;53273:10;53345:24;::::1;;;;;;;;;;;;;::::0;::::1;;;;53119:65:::0;48702:6;;-1:-1:-1;;;;;48702:6:0;;;;;17038:10;48849:23;48841:68;;;;-1:-1:-1;;;48841:68:0;;;;;;;:::i;:::-;53166:10:::1;:8;:10::i;:::-;53119:65::o:0;52603:82::-;48702:6;;-1:-1:-1;;;;;48702:6:0;;;;;17038:10;48849:23;48841:68;;;;-1:-1:-1;;;48841:68:0;;;;;;;:::i;:::-;52661:16:::1;52674:2;52661:12;:16::i;:::-;52603:82:::0;:::o;25991:185::-;26129:39;26146:4;26152:2;26156:7;26129:39;;;;;;;;;;;;:16;:39::i;50326:282::-;50458:41;17038:10;50477:12;16958:98;50458:41;50436:139;;;;-1:-1:-1;;;50436:139:0;;15110:2:1;50436:139:0;;;15092:21:1;15149:2;15129:18;;;15122:30;15188:34;15168:18;;;15161:62;-1:-1:-1;;;15239:18:1;;;15232:46;15295:19;;50436:139:0;15082:238:1;50436:139:0;50586:14;50592:7;50586:5;:14::i;37759:320::-;37879:7;37934:30;37657:10;:17;;37569:113;37934:30;37926:5;:38;37904:132;;;;-1:-1:-1;;;37904:132:0;;14697:2:1;37904:132:0;;;14679:21:1;14736:2;14716:18;;;14709:30;14775:34;14755:18;;;14748:62;-1:-1:-1;;;14826:18:1;;;14819:42;14878:19;;37904:132:0;14669:234:1;37904:132:0;38054:10;38065:5;38054:17;;;;;;;;:::i;:::-;;;;;;;;;38047:24;;37759:320;;;:::o;53385:102::-;48702:6;;-1:-1:-1;;;;;48702:6:0;;;;;17038:10;48849:23;48841:68;;;;-1:-1:-1;;;48841:68:0;;;;;;;:::i;:::-;53459:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;53385:102:::0;:::o;22510:326::-;22627:7;22668:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22668:16:0;22717:19;22695:110;;;;-1:-1:-1;;;22695:110:0;;10740:2:1;22695:110:0;;;10722:21:1;10779:2;10759:18;;;10752:30;10818:34;10798:18;;;10791:62;-1:-1:-1;;;10869:18:1;;;10862:39;10918:19;;22695:110:0;10712:231:1;53495:104:0;48702:6;;-1:-1:-1;;;;;48702:6:0;;;;;17038:10;48849:23;48841:68;;;;-1:-1:-1;;;48841:68:0;;;;;;;:::i;:::-;53567:9:::1;:24:::0;53495:104::o;22153:295::-;22270:7;-1:-1:-1;;;;;22317:19:0;;22295:111;;;;-1:-1:-1;;;22295:111:0;;10329:2:1;22295:111:0;;;10311:21:1;10368:2;10348:18;;;10341:30;10407:34;10387:18;;;10380:62;-1:-1:-1;;;10458:18:1;;;10451:40;10508:19;;22295:111:0;10301:232:1;22295:111:0;-1:-1:-1;;;;;;22424:16:0;;;;;:9;:16;;;;;;;22153:295::o;49280:148::-;48702:6;;-1:-1:-1;;;;;48702:6:0;;;;;17038:10;48849:23;48841:68;;;;-1:-1:-1;;;48841:68:0;;;;;;;:::i;:::-;49371:6:::1;::::0;49350:40:::1;::::0;49387:1:::1;::::0;49371:6:::1;::::0;::::1;-1:-1:-1::0;;;;;49371:6:0::1;::::0;49350:40:::1;::::0;49387:1;;49350:40:::1;49401:6;:19:::0;;-1:-1:-1;;;;;;49401:19:0::1;::::0;;49280:148::o;53050:61::-;48702:6;;-1:-1:-1;;;;;48702:6:0;;;;;17038:10;48849:23;48841:68;;;;-1:-1:-1;;;48841:68:0;;;;;;;:::i;:::-;53095:8:::1;:6;:8::i;23072:104::-:0;23128:13;23161:7;23154:14;;;;;:::i;24865:327::-;-1:-1:-1;;;;;25000:24:0;;17038:10;25000:24;;24992:62;;;;-1:-1:-1;;;24992:62:0;;8792:2:1;24992:62:0;;;8774:21:1;8831:2;8811:18;;;8804:30;8870:27;8850:18;;;8843:55;8915:18;;24992:62:0;8764:175:1;24992:62:0;17038:10;25067:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25067:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25067:53:0;;;;;;;;;;25136:48;;5621:41:1;;;25067:42:0;;17038:10;25136:48;;5594:18:1;25136:48:0;;;;;;;24865:327;;:::o;26247:365::-;26436:41;17038:10;26469:7;26436:18;:41::i;:::-;26414:140;;;;-1:-1:-1;;;26414:140:0;;;;;;;:::i;:::-;26565:39;26579:4;26585:2;26589:7;26598:5;26565:13;:39::i;:::-;26247:365;;;;:::o;54098:196::-;54225:13;54263:23;54278:7;54263:14;:23::i;52693:349::-;52796:7;46649:8;46394:7;;;;;46323:86;46649:8;46648:9;46640:38;;;;-1:-1:-1;;;46640:38:0;;;;;;;:::i;:::-;52842:23:::1;52859:6:::0;52843:12:::1;52842:23;:::i;:::-;52829:9;:36;;52821:68;;;::::0;-1:-1:-1;;;52821:68:0;;13931:2:1;52821:68:0::1;::::0;::::1;13913:21:1::0;13970:2;13950:18;;;13943:30;-1:-1:-1;;;13989:18:1;;;13982:49;14048:18;;52821:68:0::1;13903:169:1::0;52821:68:0::1;52907:9;52902:88;52926:6;52922:1;:10;52902:88;;;52954:24;52967:10;52954:12;:24::i;:::-;52934:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52902:88;;;-1:-1:-1::0;53009:15:0::1;51526:14:::0;53009:25:::1;51434:114:::0;46689:1:::1;52693:349:::0;;;:::o;49583:281::-;48702:6;;-1:-1:-1;;;;;48702:6:0;;;;;17038:10;48849:23;48841:68;;;;-1:-1:-1;;;48841:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;49686:22:0;::::1;49664:110;;;::::0;-1:-1:-1;;;49664:110:0;;7623:2:1;49664:110:0::1;::::0;::::1;7605:21:1::0;7662:2;7642:18;;;7635:30;7701:34;7681:18;;;7674:62;-1:-1:-1;;;7752:18:1;;;7745:36;7798:19;;49664:110:0::1;7595:228:1::0;49664:110:0::1;49811:6;::::0;49790:38:::1;::::0;-1:-1:-1;;;;;49790:38:0;;::::1;::::0;49811:6:::1;::::0;::::1;;::::0;49790:38:::1;::::0;;;::::1;49839:6;:17:::0;;-1:-1:-1;;;;;49839:17:0;;::::1;;;-1:-1:-1::0;;;;;;49839:17:0;;::::1;::::0;;;::::1;::::0;;49583:281::o;36766:300::-;36913:4;-1:-1:-1;;;;;;36955:50:0;;-1:-1:-1;;;36955:50:0;;:103;;;37022:36;37046:11;37022:23;:36::i;32282:174::-;32357:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32357:29:0;-1:-1:-1;;;;;32357:29:0;;;;;;;;:24;;32411:23;32357:24;32411:14;:23::i;:::-;-1:-1:-1;;;;;32402:46:0;;;;;;;;;;;32282:174;;:::o;28453:452::-;28582:4;28248:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28248:16:0;28604:110;;;;-1:-1:-1;;;28604:110:0;;9146:2:1;28604:110:0;;;9128:21:1;9185:2;9165:18;;;9158:30;9224:34;9204:18;;;9197:62;-1:-1:-1;;;9275:18:1;;;9268:42;9327:19;;28604:110:0;9118:234:1;28604:110:0;28725:13;28741:23;28756:7;28741:14;:23::i;:::-;28725:39;;28794:5;-1:-1:-1;;;;;28783:16:0;:7;-1:-1:-1;;;;;28783:16:0;;:64;;;;28840:7;-1:-1:-1;;;;;28816:31:0;:20;28828:7;28816:11;:20::i;:::-;-1:-1:-1;;;;;28816:31:0;;28783:64;:113;;;-1:-1:-1;;;;;;25434:25:0;;;25405:4;25434:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28864:32;28775:122;28453:452;-1:-1:-1;;;;28453:452:0:o;31549:615::-;31722:4;-1:-1:-1;;;;;31695:31:0;:23;31710:7;31695:14;:23::i;:::-;-1:-1:-1;;;;;31695:31:0;;31673:122;;;;-1:-1:-1;;;31673:122:0;;12703:2:1;31673:122:0;;;12685:21:1;12742:2;12722:18;;;12715:30;12781:34;12761:18;;;12754:62;-1:-1:-1;;;12832:18:1;;;12825:39;12881:19;;31673:122:0;12675:231:1;31673:122:0;-1:-1:-1;;;;;31814:16:0;;31806:65;;;;-1:-1:-1;;;31806:65:0;;8387:2:1;31806:65:0;;;8369:21:1;8426:2;8406:18;;;8399:30;8465:34;8445:18;;;8438:62;-1:-1:-1;;;8516:18:1;;;8509:34;8560:19;;31806:65:0;8359:226:1;31806:65:0;31884:39;31905:4;31911:2;31915:7;31884:20;:39::i;:::-;31988:29;32005:1;32009:7;31988:8;:29::i;:::-;-1:-1:-1;;;;;32030:15:0;;;;;;:9;:15;;;;;:20;;32049:1;;32030:15;:20;;32049:1;;32030:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32061:13:0;;;;;;:9;:13;;;;;:18;;32078:1;;32061:13;:18;;32078:1;;32061:18;:::i;:::-;;;;-1:-1:-1;;32090:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32090:21:0;-1:-1:-1;;;;;32090:21:0;;;;;;;;;32129:27;;32090:16;;32129:27;;;;;;;31549:615;;;:::o;47382:120::-;46394:7;;;;46918:41;;;;-1:-1:-1;;;46918:41:0;;6099:2:1;46918:41:0;;;6081:21:1;6138:2;6118:18;;;6111:30;-1:-1:-1;;;6157:18:1;;;6150:50;6217:18;;46918:41:0;6071:170:1;46918:41:0;47441:7:::1;:15:::0;;-1:-1:-1;;47441:15:0::1;::::0;;47472:22:::1;17038:10:::0;47481:12:::1;47472:22;::::0;-1:-1:-1;;;;;4944:32:1;;;4926:51;;4914:2;4899:18;47472:22:0::1;;;;;;;47382:120::o:0;52391:204::-;52469:9;;37657:10;:17;52453:25;52445:53;;;;-1:-1:-1;;;52445:53:0;;6448:2:1;52445:53:0;;;6430:21:1;6487:2;6467:18;;;6460:30;-1:-1:-1;;;6506:18:1;;;6499:45;6561:18;;52445:53:0;6420:165:1;52445:53:0;52509:40;52519:2;52523:25;:15;51526:14;;51434:114;52523:25;52509:9;:40::i;:::-;52560:27;:15;51645:19;;51663:1;51645:19;;;51556:127;53952:138;54062:20;54074:7;54062:11;:20::i;47123:118::-;46394:7;;;;46648:9;46640:38;;;;-1:-1:-1;;;46640:38:0;;;;;;;:::i;:::-;47183:7:::1;:14:::0;;-1:-1:-1;;47183:14:0::1;47193:4;47183:14;::::0;;47213:20:::1;47220:12;17038:10:::0;;16958:98;27494:352;27651:28;27661:4;27667:2;27671:7;27651:9;:28::i;:::-;27712:48;27735:4;27741:2;27745:7;27754:5;27712:22;:48::i;:::-;27690:148;;;;-1:-1:-1;;;27690:148:0;;;;;;;:::i;43608:766::-;28224:4;28248:16;;;:7;:16;;;;;;43726:13;;-1:-1:-1;;;;;28248:16:0;43757:115;;;;-1:-1:-1;;;43757:115:0;;11511:2:1;43757:115:0;;;11493:21:1;11550:2;11530:18;;;11523:30;11589:34;11569:18;;;11562:62;-1:-1:-1;;;11640:18:1;;;11633:47;11697:19;;43757:115:0;11483:239:1;43757:115:0;43885:23;43911:19;;;:10;:19;;;;;43885:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43941:18;43962:10;:8;:10::i;:::-;43941:31;;44054:4;44048:18;44070:1;44048:23;44044:72;;;-1:-1:-1;44095:9:0;43608:766;-1:-1:-1;;43608:766:0:o;44044:72::-;44220:23;;:27;44216:108;;44295:4;44301:9;44278:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;44264:48;;;;43608:766;;;:::o;44216:108::-;44343:23;44358:7;44343:14;:23::i;21734:355::-;21881:4;-1:-1:-1;;;;;;21923:40:0;;-1:-1:-1;;;21923:40:0;;:105;;-1:-1:-1;;;;;;;21980:48:0;;-1:-1:-1;;;21980:48:0;21923:105;:158;;;-1:-1:-1;;;;;;;;;;20359:40:0;;;22045:36;20200:207;53715:229;46394:7;;;;46648:9;46640:38;;;;-1:-1:-1;;;46640:38:0;;;;;;;:::i;:::-;53891:45:::1;53918:4;53924:2;53928:7;53891:26;:45::i;29247:110::-:0;29323:26;29333:2;29337:7;29323:26;;;;;;;;;;;;:9;:26::i;45036:206::-;45105:20;45117:7;45105:11;:20::i;:::-;45148:19;;;;:10;:19;;;;;45142:33;;;;;:::i;:::-;:38;;-1:-1:-1;45138:97:0;;45204:19;;;;:10;:19;;;;;45197:26;;;:::i;33021:1053::-;33176:4;-1:-1:-1;;;;;33197:13:0;;8752:20;8800:8;33193:874;;33250:175;;-1:-1:-1;;;33250:175:0;;-1:-1:-1;;;;;33250:36:0;;;;;:175;;17038:10;;33344:4;;33371:7;;33401:5;;33250:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33250:175:0;;;;;;;;-1:-1:-1;;33250:175:0;;;;;;;;;;;;:::i;:::-;;;33229:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33612:13:0;;33608:389;;33655:108;;-1:-1:-1;;;33655:108:0;;;;;;;:::i;33608:389::-;33947:6;33941:13;33932:6;33928:2;33924:15;33917:38;33229:783;-1:-1:-1;;;;;;33489:55:0;-1:-1:-1;;;33489:55:0;;-1:-1:-1;33482:62:0;;33193:874;-1:-1:-1;34051:4:0;33021:1053;;;;;;:::o;53607:100::-;53659:13;53692:7;53685:14;;;;;:::i;23247:468::-;28224:4;28248:16;;;:7;:16;;;;;;23365:13;;-1:-1:-1;;;;;28248:16:0;23396:113;;;;-1:-1:-1;;;23396:113:0;;13113:2:1;23396:113:0;;;13095:21:1;13152:2;13132:18;;;13125:30;13191:34;13171:18;;;13164:62;-1:-1:-1;;;13242:18:1;;;13235:45;13297:19;;23396:113:0;13085:237:1;23396:113:0;23522:21;23546:10;:8;:10::i;:::-;23522:34;;23611:1;23593:7;23587:21;:25;:120;;;;;;;;;;;;;;;;;23656:7;23665:18;:7;:16;:18::i;:::-;23639:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;23587:120;23567:140;23247:468;-1:-1:-1;;;23247:468:0:o;38692:589::-;-1:-1:-1;;;;;38898:18:0;;38894:187;;38933:40;38965:7;40108:10;:17;;40081:24;;;;:15;:24;;;;;:44;;;40136:24;;;;;;;;;;;;40004:164;38933:40;38894:187;;;39003:2;-1:-1:-1;;;;;38995:10:0;:4;-1:-1:-1;;;;;38995:10:0;;38991:90;;39022:47;39055:4;39061:7;39022:32;:47::i;:::-;-1:-1:-1;;;;;39095:16:0;;39091:183;;39128:45;39165:7;39128:36;:45::i;39091:183::-;39201:4;-1:-1:-1;;;;;39195:10:0;:2;-1:-1:-1;;;;;39195:10:0;;39191:83;;39222:40;39250:2;39254:7;39222:27;:40::i;29584:321::-;29714:18;29720:2;29724:7;29714:5;:18::i;:::-;29765:54;29796:1;29800:2;29804:7;29813:5;29765:22;:54::i;:::-;29743:154;;;;-1:-1:-1;;;29743:154:0;;;;;;;:::i;30852:360::-;30912:13;30928:23;30943:7;30928:14;:23::i;:::-;30912:39;;30964:48;30985:5;31000:1;31004:7;30964:20;:48::i;:::-;31053:29;31070:1;31074:7;31053:8;:29::i;:::-;-1:-1:-1;;;;;31095:16:0;;;;;;:9;:16;;;;;:21;;31115:1;;31095:16;:21;;31115:1;;31095:21;:::i;:::-;;;;-1:-1:-1;;31134:16:0;;;;:7;:16;;;;;;31127:23;;-1:-1:-1;;;;;;31127:23:0;;;31168:36;31142:7;;31134:16;-1:-1:-1;;;;;31168:36:0;;;;;31134:16;;31168:36;30901:311;30852:360;:::o;17615:723::-;17671:13;17892:10;17888:53;;-1:-1:-1;;17919:10:0;;;;;;;;;;;;-1:-1:-1;;;17919:10:0;;;;;17615:723::o;17888:53::-;17966:5;17951:12;18007:78;18014:9;;18007:78;;18040:8;;;;:::i;:::-;;-1:-1:-1;18063:10:0;;-1:-1:-1;18071:2:0;18063:10;;:::i;:::-;;;18007:78;;;18095:19;18127:6;18117:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;18117:17:0;;18095:39;;18145:154;18152:10;;18145:154;;18179:11;18189:1;18179:11;;:::i;:::-;;-1:-1:-1;18248:10:0;18256:2;18248:5;:10;:::i;:::-;18235:24;;:2;:24;:::i;:::-;18222:39;;18205:6;18212;18205:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;18205:56:0;;;;;;;;-1:-1:-1;18276:11:0;18285:2;18276:11;;:::i;:::-;;;18145:154;;40795:1002;41075:22;41125:1;41100:22;41117:4;41100:16;:22::i;:::-;:26;;;;:::i;:::-;41137:18;41158:26;;;:17;:26;;;;;;41075:51;;-1:-1:-1;41291:28:0;;;41287:328;;-1:-1:-1;;;;;41358:18:0;;41336:19;41358:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41409:30;;;;;;:44;;;41526:30;;:17;:30;;;;;:43;;;41287:328;-1:-1:-1;41711:26:0;;;;:17;:26;;;;;;;;41704:33;;;-1:-1:-1;;;;;41755:18:0;;;;;:12;:18;;;;;:34;;;;;;;41748:41;40795:1002::o;42092:1079::-;42370:10;:17;42345:22;;42370:21;;42390:1;;42370:21;:::i;:::-;42402:18;42423:24;;;:15;:24;;;;;;42796:10;:26;;42345:46;;-1:-1:-1;42423:24:0;;42345:46;;42796:26;;;;;;:::i;:::-;;;;;;;;;42774:48;;42860:11;42835:10;42846;42835:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42940:28;;;:15;:28;;;;;;;:41;;;43112:24;;;;;43105:31;43147:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42163:1008;;;42092:1079;:::o;39582:221::-;39667:14;39684:20;39701:2;39684:16;:20::i;:::-;-1:-1:-1;;;;;39715:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39760:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39582:221:0:o;30241:382::-;-1:-1:-1;;;;;30321:16:0;;30313:61;;;;-1:-1:-1;;;30313:61:0;;11150:2:1;30313:61:0;;;11132:21:1;;;11169:18;;;11162:30;11228:34;11208:18;;;11201:62;11280:18;;30313:61:0;11122:182:1;30313:61:0;28224:4;28248:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28248:16:0;:30;30385:58;;;;-1:-1:-1;;;30385:58:0;;8030:2:1;30385:58:0;;;8012:21:1;8069:2;8049:18;;;8042:30;8108;8088:18;;;8081:58;8156:18;;30385:58:0;8002:178:1;30385:58:0;30456:45;30485:1;30489:2;30493:7;30456:20;:45::i;:::-;-1:-1:-1;;;;;30514:13:0;;;;;;:9;:13;;;;;:18;;30531:1;;30514:13;:18;;30531:1;;30514:18;:::i;:::-;;;;-1:-1:-1;;30543:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30543:21:0;-1:-1:-1;;;;;30543:21:0;;;;;;;;30582:33;;30543:16;;;30582:33;;30543:16;;30582:33;30241:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::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;7002:414::-;7204:2;7186:21;;;7243:2;7223:18;;;7216:30;7282:34;7277:2;7262:18;;7255:62;-1:-1:-1;;;7348:2:1;7333:18;;7326:48;7406:3;7391:19;;7176:240::o;9357:340::-;9559:2;9541:21;;;9598:2;9578:18;;;9571:30;-1:-1:-1;;;9632:2:1;9617:18;;9610:46;9688:2;9673:18;;9531:166::o;12140:356::-;12342:2;12324:21;;;12361:18;;;12354:30;12420:34;12415:2;12400:18;;12393:62;12487:2;12472:18;;12314:182::o;14077:413::-;14279:2;14261:21;;;14318:2;14298:18;;;14291:30;14357:34;14352:2;14337:18;;14330:62;-1:-1:-1;;;14423:2:1;14408:18;;14401:47;14480:3;14465:19;;14251:239::o;15507:128::-;15547:3;15578:1;15574:6;15571:1;15568:13;15565:2;;;15584:18;;:::i;:::-;-1:-1:-1;15620:9:1;;15555:80::o;15640:120::-;15680:1;15706;15696:2;;15711:18;;:::i;:::-;-1:-1:-1;15745:9:1;;15686:74::o;15765:168::-;15805:7;15871:1;15867;15863:6;15859:14;15856:1;15853:21;15848:1;15841:9;15834:17;15830:45;15827:2;;;15878:18;;:::i;:::-;-1:-1:-1;15918:9:1;;15817:116::o;15938:125::-;15978:4;16006:1;16003;16000:8;15997:2;;;16011:18;;:::i;:::-;-1:-1:-1;16048:9:1;;15987:76::o;16068:258::-;16140:1;16150:113;16164:6;16161:1;16158:13;16150:113;;;16240:11;;;16234:18;16221:11;;;16214:39;16186:2;16179:10;16150:113;;;16281:6;16278:1;16275:13;16272:2;;;-1:-1:-1;;16316:1:1;16298:16;;16291:27;16121:205::o;16331:380::-;16410:1;16406:12;;;;16453;;;16474:2;;16528:4;16520:6;16516:17;16506:27;;16474:2;16581;16573:6;16570:14;16550:18;16547:38;16544:2;;;16627:10;16622:3;16618:20;16615:1;16608:31;16662:4;16659:1;16652:15;16690:4;16687:1;16680:15;16544:2;;16386:325;;;:::o;16716:135::-;16755:3;-1:-1:-1;;16776:17:1;;16773:2;;;16796:18;;:::i;:::-;-1:-1:-1;16843:1:1;16832:13;;16763:88::o;16856:112::-;16888:1;16914;16904:2;;16919:18;;:::i;:::-;-1:-1:-1;16953:9:1;;16894:74::o;16973:127::-;17034:10;17029:3;17025:20;17022:1;17015:31;17065:4;17062:1;17055:15;17089:4;17086:1;17079:15;17105:127;17166:10;17161:3;17157:20;17154:1;17147:31;17197:4;17194:1;17187:15;17221:4;17218:1;17211:15;17237:127;17298:10;17293:3;17289:20;17286:1;17279:31;17329:4;17326:1;17319:15;17353:4;17350:1;17343:15;17369:127;17430:10;17425:3;17421:20;17418:1;17411:31;17461:4;17458:1;17451:15;17485:4;17482:1;17475:15;17501:127;17562:10;17557:3;17553:20;17550:1;17543:31;17593:4;17590:1;17583:15;17617:4;17614:1;17607:15;17633:131;-1:-1:-1;;;;;;17707:32:1;;17697:43;;17687:2;;17754:1;17751;17744:12
Swarm Source
ipfs://a55656c1bfad47e602a1f4cb71c29dfe7a24925ae7619524d996c54be9588e6d
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.