Feature Tip: Add private address tag to any address under My Name Tag !
Note: This token's displayed name does not match its contract's Name function.
Overview
Max Total Supply
383 CALAVERA
Holders
161
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 CALAVERALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Calaveras211
Compiler Version
v0.8.6+commit.11564f7e
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "./ERC721.sol"; import "./Ownable.sol"; contract Calaveras211 is ERC721, Ownable { uint public mintPrice = 0.07 ether; uint public maxItems = 10000; uint public totalSupply = 0; uint public maxItemsPerTx = 10; string public _baseTokenURI; bool public publicMintPaused = false; uint public startTimestamp = 1635868800; // Tuesday, 2 November 2021, 12:00pm EST event Mint(address indexed owner, uint indexed tokenId); constructor() ERC721("Calaveras 211", "CALAVERA") {} receive() external payable {} function giveawayMint(address to, uint amount) external onlyOwner { _mintWithoutValidation(to, amount); } function publicMint() external payable { require(block.timestamp >= startTimestamp, "Sell is not opened yet"); require(!publicMintPaused, "Contract is paused"); uint remainder = msg.value % mintPrice; uint amount = msg.value / mintPrice; require(remainder == 0, "Send a divisible amount of eth"); require(amount <= maxItemsPerTx, "Over the maxItemsPerTx"); _mintWithoutValidation(_msgSender(), amount); } function _mintWithoutValidation(address to, uint amount) internal { require(totalSupply + amount <= maxItems, "All items sold"); for(uint i = 0; i < amount; i++) { _mint(to, totalSupply); emit Mint(to, totalSupply); totalSupply += 1; } } function isOpen() external view returns (bool) { return block.timestamp >= startTimestamp && !publicMintPaused && totalSupply < maxItems; } function setStartTimestamp(uint _startTimestamp) external onlyOwner { startTimestamp = _startTimestamp; } function setMintPrice(uint _mintPrice) external onlyOwner { mintPrice = _mintPrice; } function setPublicMintPaused(bool _publicMintPaused) external onlyOwner { publicMintPaused = _publicMintPaused; } function setMaxItemsPerTx(uint _maxItemsPerTx) external onlyOwner { maxItemsPerTx = _maxItemsPerTx; } function setBaseTokenURI(string memory __baseTokenURI) external onlyOwner { _baseTokenURI = __baseTokenURI; } function withdraw() external onlyOwner { (bool success,) = owner().call{value: address(this).balance}(""); require(success, "Failed to withdraw"); } function tokenURI(uint256 _tokenId) public view override returns (string memory) { return string(abi.encodePacked(_baseTokenURI, Strings.toString(_tokenId))); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /* * @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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { 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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /** * @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); }
pragma solidity ^0.8.6; // SPDX-License-Identifier: MIT License import "./Context.sol"; 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 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; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.6; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"owner","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"giveawayMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItems","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxItemsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","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":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicMintPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxItemsPerTx","type":"uint256"}],"name":"setMaxItemsPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_publicMintPaused","type":"bool"}],"name":"setPublicMintPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTimestamp","type":"uint256"}],"name":"setStartTimestamp","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405266f8b0a10e4700006007556127106008556000600955600a8055600c805460ff191690556361816080600d553480156200003d57600080fd5b50604080518082018252600d81526c43616c6176657261732032313160981b60208083019182528351808501909452600884526743414c415645524160c01b908401528151919291620000939160009162000116565b508051620000a990600190602084019062000116565b5050506000620000be6200011260201b60201c565b600680546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620001f9565b3390565b8280546200012490620001bc565b90600052602060002090601f01602090048101928262000148576000855562000193565b82601f106200016357805160ff191683800117855562000193565b8280016001018555821562000193579182015b828111156200019357825182559160200191906001019062000176565b50620001a1929150620001a5565b5090565b5b80821115620001a15760008155600101620001a6565b600181811c90821680620001d157607f821691505b60208210811415620001f357634e487b7160e01b600052602260045260246000fd5b50919050565b611eb080620002096000396000f3fe6080604052600436106101e75760003560e01c80636352211e11610102578063b88d4fde11610095578063e6fd48bc11610064578063e6fd48bc14610533578063e985e9c514610549578063f2fde38b14610592578063f4a0a528146105b257600080fd5b8063b88d4fde146104be578063c44bef75146104de578063c87b56dd146104fe578063cfc86f7b1461051e57600080fd5b80637a4e5715116100d15780637a4e57151461044b5780638da5cb5b1461046b57806395d89b4114610489578063a22cb4651461049e57600080fd5b80636352211e146103e05780636817c76c1461040057806370a0823114610416578063715018a61461043657600080fd5b806330176e131161017a5780633c010a3e116101495780633c010a3e146103805780633ccfd60b1461039657806342842e0e146103ab57806347535d7b146103cb57600080fd5b806330176e131461031057806330666a4d14610330578063339493481461034657806333d9d5fd1461036657600080fd5b8063095ea7b3116101b6578063095ea7b3146102a457806318160ddd146102c457806323b872dd146102e857806326092b831461030857600080fd5b806301ffc9a7146101f3578063048266241461022857806306fdde031461024a578063081812fc1461026c57600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021361020e366004611a80565b6105d2565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611a3b565b610624565b005b34801561025657600080fd5b5061025f610665565b60405161021f9190611c48565b34801561027857600080fd5b5061028c610287366004611b03565b6106f7565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611a3b565b61078c565b3480156102d057600080fd5b506102da60095481565b60405190815260200161021f565b3480156102f457600080fd5b50610248610303366004611959565b6108a2565b6102486108d3565b34801561031c57600080fd5b5061024861032b366004611aba565b610a2d565b34801561033c57600080fd5b506102da600a5481565b34801561035257600080fd5b50610248610361366004611a65565b610a6a565b34801561037257600080fd5b50600c546102139060ff1681565b34801561038c57600080fd5b506102da60085481565b3480156103a257600080fd5b50610248610aa7565b3480156103b757600080fd5b506102486103c6366004611959565b610b7d565b3480156103d757600080fd5b50610213610b98565b3480156103ec57600080fd5b5061028c6103fb366004611b03565b610bc3565b34801561040c57600080fd5b506102da60075481565b34801561042257600080fd5b506102da610431366004611904565b610c3a565b34801561044257600080fd5b50610248610cc1565b34801561045757600080fd5b50610248610466366004611b03565b610d35565b34801561047757600080fd5b506006546001600160a01b031661028c565b34801561049557600080fd5b5061025f610d64565b3480156104aa57600080fd5b506102486104b9366004611a11565b610d73565b3480156104ca57600080fd5b506102486104d9366004611995565b610e38565b3480156104ea57600080fd5b506102486104f9366004611b03565b610e70565b34801561050a57600080fd5b5061025f610519366004611b03565b610e9f565b34801561052a57600080fd5b5061025f610ed3565b34801561053f57600080fd5b506102da600d5481565b34801561055557600080fd5b50610213610564366004611926565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059e57600080fd5b506102486105ad366004611904565b610f61565b3480156105be57600080fd5b506102486105cd366004611b03565b61104c565b60006001600160e01b031982166380ac58cd60e01b148061060357506001600160e01b03198216635b5e139f60e01b145b8061061e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106575760405162461bcd60e51b815260040161064e90611cad565b60405180910390fd5b610661828261107b565b5050565b60606000805461067490611da2565b80601f01602080910402602001604051908101604052809291908181526020018280546106a090611da2565b80156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161064e565b506000908152600460205260409020546001600160a01b031690565b600061079782610bc3565b9050806001600160a01b0316836001600160a01b031614156108055760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161064e565b336001600160a01b038216148061082157506108218133610564565b6108935760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161064e565b61089d8383611144565b505050565b6108ac33826111b2565b6108c85760405162461bcd60e51b815260040161064e90611ce2565b61089d8383836112a9565b600d5442101561091e5760405162461bcd60e51b815260206004820152601660248201527514d95b1b081a5cc81b9bdd081bdc195b9959081e595d60521b604482015260640161064e565b600c5460ff16156109665760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015260640161064e565b6000600754346109769190611df8565b90506000600754346109889190611d4b565b905081156109d85760405162461bcd60e51b815260206004820152601e60248201527f53656e64206120646976697369626c6520616d6f756e74206f66206574680000604482015260640161064e565b600a54811115610a235760405162461bcd60e51b815260206004820152601660248201527509eeccae440e8d0ca40dac2f092e8cadae6a0cae4a8f60531b604482015260640161064e565b610661338261107b565b6006546001600160a01b03163314610a575760405162461bcd60e51b815260040161064e90611cad565b805161066190600b9060208401906117c9565b6006546001600160a01b03163314610a945760405162461bcd60e51b815260040161064e90611cad565b600c805460ff1916911515919091179055565b6006546001600160a01b03163314610ad15760405162461bcd60e51b815260040161064e90611cad565b6000610ae56006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b2f576040519150601f19603f3d011682016040523d82523d6000602084013e610b34565b606091505b5050905080610b7a5760405162461bcd60e51b81526020600482015260126024820152714661696c656420746f20776974686472617760701b604482015260640161064e565b50565b61089d83838360405180602001604052806000815250610e38565b6000600d544210158015610baf5750600c5460ff16155b8015610bbe5750600854600954105b905090565b6000818152600260205260408120546001600160a01b03168061061e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161064e565b60006001600160a01b038216610ca55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161064e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161064e90611cad565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b03163314610d5f5760405162461bcd60e51b815260040161064e90611cad565b600a55565b60606001805461067490611da2565b6001600160a01b038216331415610dcc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161064e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e4233836111b2565b610e5e5760405162461bcd60e51b815260040161064e90611ce2565b610e6a84848484611449565b50505050565b6006546001600160a01b03163314610e9a5760405162461bcd60e51b815260040161064e90611cad565b600d55565b6060600b610eac8361147c565b604051602001610ebd929190611b64565b6040516020818303038152906040529050919050565b600b8054610ee090611da2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0c90611da2565b8015610f595780601f10610f2e57610100808354040283529160200191610f59565b820191906000526020600020905b815481529060010190602001808311610f3c57829003601f168201915b505050505081565b6006546001600160a01b03163314610f8b5760405162461bcd60e51b815260040161064e90611cad565b6001600160a01b038116610ff05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161064e565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146110765760405162461bcd60e51b815260040161064e90611cad565b600755565b6008548160095461108c9190611d33565b11156110cb5760405162461bcd60e51b815260206004820152600e60248201526d105b1b081a5d195b5cc81cdbdb1960921b604482015260640161064e565b60005b8181101561089d576110e28360095461157a565b6009546040516001600160a01b038516907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a360016009600082825461112c9190611d33565b9091555081905061113c81611ddd565b9150506110ce565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061117982610bc3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661122b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161064e565b600061123683610bc3565b9050806001600160a01b0316846001600160a01b031614806112715750836001600160a01b0316611266846106f7565b6001600160a01b0316145b806112a157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112bc82610bc3565b6001600160a01b0316146113245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161064e565b6001600160a01b0382166113865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161064e565b611391600082611144565b6001600160a01b03831660009081526003602052604081208054600192906113ba908490611d5f565b90915550506001600160a01b03821660009081526003602052604081208054600192906113e8908490611d33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6114548484846112a9565b611460848484846116bc565b610e6a5760405162461bcd60e51b815260040161064e90611c5b565b6060816114a05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114ca57806114b481611ddd565b91506114c39050600a83611d4b565b91506114a4565b60008167ffffffffffffffff8111156114e5576114e5611e4e565b6040519080825280601f01601f19166020018201604052801561150f576020820181803683370190505b5090505b84156112a157611524600183611d5f565b9150611531600a86611df8565b61153c906030611d33565b60f81b81838151811061155157611551611e38565b60200101906001600160f81b031916908160001a905350611573600a86611d4b565b9450611513565b6001600160a01b0382166115d05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161064e565b6000818152600260205260409020546001600160a01b0316156116355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161064e565b6001600160a01b038216600090815260036020526040812080546001929061165e908490611d33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156117be57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611700903390899088908890600401611c0b565b602060405180830381600087803b15801561171a57600080fd5b505af192505050801561174a575060408051601f3d908101601f1916820190925261174791810190611a9d565b60015b6117a4573d808015611778576040519150601f19603f3d011682016040523d82523d6000602084013e61177d565b606091505b50805161179c5760405162461bcd60e51b815260040161064e90611c5b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112a1565b506001949350505050565b8280546117d590611da2565b90600052602060002090601f0160209004810192826117f7576000855561183d565b82601f1061181057805160ff191683800117855561183d565b8280016001018555821561183d579182015b8281111561183d578251825591602001919060010190611822565b5061184992915061184d565b5090565b5b80821115611849576000815560010161184e565b600067ffffffffffffffff8084111561187d5761187d611e4e565b604051601f8501601f19908116603f011681019082821181831017156118a5576118a5611e4e565b816040528093508581528686860111156118be57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118ef57600080fd5b919050565b803580151581146118ef57600080fd5b60006020828403121561191657600080fd5b61191f826118d8565b9392505050565b6000806040838503121561193957600080fd5b611942836118d8565b9150611950602084016118d8565b90509250929050565b60008060006060848603121561196e57600080fd5b611977846118d8565b9250611985602085016118d8565b9150604084013590509250925092565b600080600080608085870312156119ab57600080fd5b6119b4856118d8565b93506119c2602086016118d8565b925060408501359150606085013567ffffffffffffffff8111156119e557600080fd5b8501601f810187136119f657600080fd5b611a0587823560208401611862565b91505092959194509250565b60008060408385031215611a2457600080fd5b611a2d836118d8565b9150611950602084016118f4565b60008060408385031215611a4e57600080fd5b611a57836118d8565b946020939093013593505050565b600060208284031215611a7757600080fd5b61191f826118f4565b600060208284031215611a9257600080fd5b813561191f81611e64565b600060208284031215611aaf57600080fd5b815161191f81611e64565b600060208284031215611acc57600080fd5b813567ffffffffffffffff811115611ae357600080fd5b8201601f81018413611af457600080fd5b6112a184823560208401611862565b600060208284031215611b1557600080fd5b5035919050565b60008151808452611b34816020860160208601611d76565b601f01601f19169290920160200192915050565b60008151611b5a818560208601611d76565b9290920192915050565b600080845481600182811c915080831680611b8057607f831692505b6020808410821415611ba057634e487b7160e01b86526022600452602486fd5b818015611bb45760018114611bc557611bf2565b60ff19861689528489019650611bf2565b60008b81526020902060005b86811015611bea5781548b820152908501908301611bd1565b505084890196505b505050505050611c028185611b48565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c3e90830184611b1c565b9695505050505050565b60208152600061191f6020830184611b1c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611d4657611d46611e0c565b500190565b600082611d5a57611d5a611e22565b500490565b600082821015611d7157611d71611e0c565b500390565b60005b83811015611d91578181015183820152602001611d79565b83811115610e6a5750506000910152565b600181811c90821680611db657607f821691505b60208210811415611dd757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611df157611df1611e0c565b5060010190565b600082611e0757611e07611e22565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b7a57600080fdfea26469706673582212208ea1bb634c961a359772a49921380cd20767f32ce8f1480846ec684487fa6eed64736f6c63430008060033
Deployed Bytecode
0x6080604052600436106101e75760003560e01c80636352211e11610102578063b88d4fde11610095578063e6fd48bc11610064578063e6fd48bc14610533578063e985e9c514610549578063f2fde38b14610592578063f4a0a528146105b257600080fd5b8063b88d4fde146104be578063c44bef75146104de578063c87b56dd146104fe578063cfc86f7b1461051e57600080fd5b80637a4e5715116100d15780637a4e57151461044b5780638da5cb5b1461046b57806395d89b4114610489578063a22cb4651461049e57600080fd5b80636352211e146103e05780636817c76c1461040057806370a0823114610416578063715018a61461043657600080fd5b806330176e131161017a5780633c010a3e116101495780633c010a3e146103805780633ccfd60b1461039657806342842e0e146103ab57806347535d7b146103cb57600080fd5b806330176e131461031057806330666a4d14610330578063339493481461034657806333d9d5fd1461036657600080fd5b8063095ea7b3116101b6578063095ea7b3146102a457806318160ddd146102c457806323b872dd146102e857806326092b831461030857600080fd5b806301ffc9a7146101f3578063048266241461022857806306fdde031461024a578063081812fc1461026c57600080fd5b366101ee57005b600080fd5b3480156101ff57600080fd5b5061021361020e366004611a80565b6105d2565b60405190151581526020015b60405180910390f35b34801561023457600080fd5b50610248610243366004611a3b565b610624565b005b34801561025657600080fd5b5061025f610665565b60405161021f9190611c48565b34801561027857600080fd5b5061028c610287366004611b03565b6106f7565b6040516001600160a01b03909116815260200161021f565b3480156102b057600080fd5b506102486102bf366004611a3b565b61078c565b3480156102d057600080fd5b506102da60095481565b60405190815260200161021f565b3480156102f457600080fd5b50610248610303366004611959565b6108a2565b6102486108d3565b34801561031c57600080fd5b5061024861032b366004611aba565b610a2d565b34801561033c57600080fd5b506102da600a5481565b34801561035257600080fd5b50610248610361366004611a65565b610a6a565b34801561037257600080fd5b50600c546102139060ff1681565b34801561038c57600080fd5b506102da60085481565b3480156103a257600080fd5b50610248610aa7565b3480156103b757600080fd5b506102486103c6366004611959565b610b7d565b3480156103d757600080fd5b50610213610b98565b3480156103ec57600080fd5b5061028c6103fb366004611b03565b610bc3565b34801561040c57600080fd5b506102da60075481565b34801561042257600080fd5b506102da610431366004611904565b610c3a565b34801561044257600080fd5b50610248610cc1565b34801561045757600080fd5b50610248610466366004611b03565b610d35565b34801561047757600080fd5b506006546001600160a01b031661028c565b34801561049557600080fd5b5061025f610d64565b3480156104aa57600080fd5b506102486104b9366004611a11565b610d73565b3480156104ca57600080fd5b506102486104d9366004611995565b610e38565b3480156104ea57600080fd5b506102486104f9366004611b03565b610e70565b34801561050a57600080fd5b5061025f610519366004611b03565b610e9f565b34801561052a57600080fd5b5061025f610ed3565b34801561053f57600080fd5b506102da600d5481565b34801561055557600080fd5b50610213610564366004611926565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561059e57600080fd5b506102486105ad366004611904565b610f61565b3480156105be57600080fd5b506102486105cd366004611b03565b61104c565b60006001600160e01b031982166380ac58cd60e01b148061060357506001600160e01b03198216635b5e139f60e01b145b8061061e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6006546001600160a01b031633146106575760405162461bcd60e51b815260040161064e90611cad565b60405180910390fd5b610661828261107b565b5050565b60606000805461067490611da2565b80601f01602080910402602001604051908101604052809291908181526020018280546106a090611da2565b80156106ed5780601f106106c2576101008083540402835291602001916106ed565b820191906000526020600020905b8154815290600101906020018083116106d057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166107705760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161064e565b506000908152600460205260409020546001600160a01b031690565b600061079782610bc3565b9050806001600160a01b0316836001600160a01b031614156108055760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161064e565b336001600160a01b038216148061082157506108218133610564565b6108935760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161064e565b61089d8383611144565b505050565b6108ac33826111b2565b6108c85760405162461bcd60e51b815260040161064e90611ce2565b61089d8383836112a9565b600d5442101561091e5760405162461bcd60e51b815260206004820152601660248201527514d95b1b081a5cc81b9bdd081bdc195b9959081e595d60521b604482015260640161064e565b600c5460ff16156109665760405162461bcd60e51b815260206004820152601260248201527110dbdb9d1c9858dd081a5cc81c185d5cd95960721b604482015260640161064e565b6000600754346109769190611df8565b90506000600754346109889190611d4b565b905081156109d85760405162461bcd60e51b815260206004820152601e60248201527f53656e64206120646976697369626c6520616d6f756e74206f66206574680000604482015260640161064e565b600a54811115610a235760405162461bcd60e51b815260206004820152601660248201527509eeccae440e8d0ca40dac2f092e8cadae6a0cae4a8f60531b604482015260640161064e565b610661338261107b565b6006546001600160a01b03163314610a575760405162461bcd60e51b815260040161064e90611cad565b805161066190600b9060208401906117c9565b6006546001600160a01b03163314610a945760405162461bcd60e51b815260040161064e90611cad565b600c805460ff1916911515919091179055565b6006546001600160a01b03163314610ad15760405162461bcd60e51b815260040161064e90611cad565b6000610ae56006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b2f576040519150601f19603f3d011682016040523d82523d6000602084013e610b34565b606091505b5050905080610b7a5760405162461bcd60e51b81526020600482015260126024820152714661696c656420746f20776974686472617760701b604482015260640161064e565b50565b61089d83838360405180602001604052806000815250610e38565b6000600d544210158015610baf5750600c5460ff16155b8015610bbe5750600854600954105b905090565b6000818152600260205260408120546001600160a01b03168061061e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161064e565b60006001600160a01b038216610ca55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161064e565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610ceb5760405162461bcd60e51b815260040161064e90611cad565b6006546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600680546001600160a01b0319169055565b6006546001600160a01b03163314610d5f5760405162461bcd60e51b815260040161064e90611cad565b600a55565b60606001805461067490611da2565b6001600160a01b038216331415610dcc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161064e565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610e4233836111b2565b610e5e5760405162461bcd60e51b815260040161064e90611ce2565b610e6a84848484611449565b50505050565b6006546001600160a01b03163314610e9a5760405162461bcd60e51b815260040161064e90611cad565b600d55565b6060600b610eac8361147c565b604051602001610ebd929190611b64565b6040516020818303038152906040529050919050565b600b8054610ee090611da2565b80601f0160208091040260200160405190810160405280929190818152602001828054610f0c90611da2565b8015610f595780601f10610f2e57610100808354040283529160200191610f59565b820191906000526020600020905b815481529060010190602001808311610f3c57829003601f168201915b505050505081565b6006546001600160a01b03163314610f8b5760405162461bcd60e51b815260040161064e90611cad565b6001600160a01b038116610ff05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161064e565b6006546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600680546001600160a01b0319166001600160a01b0392909216919091179055565b6006546001600160a01b031633146110765760405162461bcd60e51b815260040161064e90611cad565b600755565b6008548160095461108c9190611d33565b11156110cb5760405162461bcd60e51b815260206004820152600e60248201526d105b1b081a5d195b5cc81cdbdb1960921b604482015260640161064e565b60005b8181101561089d576110e28360095461157a565b6009546040516001600160a01b038516907f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d412139688590600090a360016009600082825461112c9190611d33565b9091555081905061113c81611ddd565b9150506110ce565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061117982610bc3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b031661122b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161064e565b600061123683610bc3565b9050806001600160a01b0316846001600160a01b031614806112715750836001600160a01b0316611266846106f7565b6001600160a01b0316145b806112a157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166112bc82610bc3565b6001600160a01b0316146113245760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161064e565b6001600160a01b0382166113865760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161064e565b611391600082611144565b6001600160a01b03831660009081526003602052604081208054600192906113ba908490611d5f565b90915550506001600160a01b03821660009081526003602052604081208054600192906113e8908490611d33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6114548484846112a9565b611460848484846116bc565b610e6a5760405162461bcd60e51b815260040161064e90611c5b565b6060816114a05750506040805180820190915260018152600360fc1b602082015290565b8160005b81156114ca57806114b481611ddd565b91506114c39050600a83611d4b565b91506114a4565b60008167ffffffffffffffff8111156114e5576114e5611e4e565b6040519080825280601f01601f19166020018201604052801561150f576020820181803683370190505b5090505b84156112a157611524600183611d5f565b9150611531600a86611df8565b61153c906030611d33565b60f81b81838151811061155157611551611e38565b60200101906001600160f81b031916908160001a905350611573600a86611d4b565b9450611513565b6001600160a01b0382166115d05760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161064e565b6000818152600260205260409020546001600160a01b0316156116355760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161064e565b6001600160a01b038216600090815260036020526040812080546001929061165e908490611d33565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b156117be57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611700903390899088908890600401611c0b565b602060405180830381600087803b15801561171a57600080fd5b505af192505050801561174a575060408051601f3d908101601f1916820190925261174791810190611a9d565b60015b6117a4573d808015611778576040519150601f19603f3d011682016040523d82523d6000602084013e61177d565b606091505b50805161179c5760405162461bcd60e51b815260040161064e90611c5b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112a1565b506001949350505050565b8280546117d590611da2565b90600052602060002090601f0160209004810192826117f7576000855561183d565b82601f1061181057805160ff191683800117855561183d565b8280016001018555821561183d579182015b8281111561183d578251825591602001919060010190611822565b5061184992915061184d565b5090565b5b80821115611849576000815560010161184e565b600067ffffffffffffffff8084111561187d5761187d611e4e565b604051601f8501601f19908116603f011681019082821181831017156118a5576118a5611e4e565b816040528093508581528686860111156118be57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146118ef57600080fd5b919050565b803580151581146118ef57600080fd5b60006020828403121561191657600080fd5b61191f826118d8565b9392505050565b6000806040838503121561193957600080fd5b611942836118d8565b9150611950602084016118d8565b90509250929050565b60008060006060848603121561196e57600080fd5b611977846118d8565b9250611985602085016118d8565b9150604084013590509250925092565b600080600080608085870312156119ab57600080fd5b6119b4856118d8565b93506119c2602086016118d8565b925060408501359150606085013567ffffffffffffffff8111156119e557600080fd5b8501601f810187136119f657600080fd5b611a0587823560208401611862565b91505092959194509250565b60008060408385031215611a2457600080fd5b611a2d836118d8565b9150611950602084016118f4565b60008060408385031215611a4e57600080fd5b611a57836118d8565b946020939093013593505050565b600060208284031215611a7757600080fd5b61191f826118f4565b600060208284031215611a9257600080fd5b813561191f81611e64565b600060208284031215611aaf57600080fd5b815161191f81611e64565b600060208284031215611acc57600080fd5b813567ffffffffffffffff811115611ae357600080fd5b8201601f81018413611af457600080fd5b6112a184823560208401611862565b600060208284031215611b1557600080fd5b5035919050565b60008151808452611b34816020860160208601611d76565b601f01601f19169290920160200192915050565b60008151611b5a818560208601611d76565b9290920192915050565b600080845481600182811c915080831680611b8057607f831692505b6020808410821415611ba057634e487b7160e01b86526022600452602486fd5b818015611bb45760018114611bc557611bf2565b60ff19861689528489019650611bf2565b60008b81526020902060005b86811015611bea5781548b820152908501908301611bd1565b505084890196505b505050505050611c028185611b48565b95945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611c3e90830184611b1c565b9695505050505050565b60208152600061191f6020830184611b1c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611d4657611d46611e0c565b500190565b600082611d5a57611d5a611e22565b500490565b600082821015611d7157611d71611e0c565b500390565b60005b83811015611d91578181015183820152602001611d79565b83811115610e6a5750506000910152565b600181811c90821680611db657607f821691505b60208210811415611dd757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611df157611df1611e0c565b5060010190565b600082611e0757611e07611e22565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610b7a57600080fdfea26469706673582212208ea1bb634c961a359772a49921380cd20767f32ce8f1480846ec684487fa6eed64736f6c63430008060033
Deployed Bytecode Sourcemap
113:2587:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1481:305:4;;;;;;;;;;-1:-1:-1;1481:305:4;;;;;:::i;:::-;;:::i;:::-;;;7007:14:11;;7000:22;6982:41;;6970:2;6955:18;1481:305:4;;;;;;;;635:119:1;;;;;;;;;;-1:-1:-1;635:119:1;;;;;:::i;:::-;;:::i;:::-;;2426:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3985:221::-;;;;;;;;;;-1:-1:-1;3985:221:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6305:32:11;;;6287:51;;6275:2;6260:18;3985:221:4;6242:102:11;3508:411:4;;;;;;;;;;-1:-1:-1;3508:411:4;;;;;:::i;:::-;;:::i;237:27:1:-;;;;;;;;;;;;;;;;;;;15468:25:11;;;15456:2;15441:18;237:27:1;15423:76:11;4875:339:4;;;;;;;;;;-1:-1:-1;4875:339:4;;;;;:::i;:::-;;:::i;762:474:1:-;;;:::i;2213:123::-;;;;;;;;;;-1:-1:-1;2213:123:1;;;;;:::i;:::-;;:::i;271:30::-;;;;;;;;;;;;;;;;1955:127;;;;;;;;;;-1:-1:-1;1955:127:1;;;;;:::i;:::-;;:::i;342:36::-;;;;;;;;;;-1:-1:-1;342:36:1;;;;;;;;202:28;;;;;;;;;;;;;;;;2344:171;;;;;;;;;;;;;:::i;5285:185:4:-;;;;;;;;;;-1:-1:-1;5285:185:4;;;;;:::i;:::-;;:::i;1560:153:1:-;;;;;;;;;;;;;:::i;2120:239:4:-;;;;;;;;;;-1:-1:-1;2120:239:4;;;;;:::i;:::-;;:::i;161:34:1:-;;;;;;;;;;;;;;;;1850:208:4;;;;;;;;;;-1:-1:-1;1850:208:4;;;;;:::i;:::-;;:::i;1231:148:9:-;;;;;;;;;;;;;:::i;2090:115:1:-;;;;;;;;;;-1:-1:-1;2090:115:1;;;;;:::i;:::-;;:::i;589:79:9:-;;;;;;;;;;-1:-1:-1;654:6:9;;-1:-1:-1;;;;;654:6:9;589:79;;2595:104:4;;;;;;;;;;;;;:::i;4278:295::-;;;;;;;;;;-1:-1:-1;4278:295:4;;;;;:::i;:::-;;:::i;5541:328::-;;;;;;;;;;-1:-1:-1;5541:328:4;;;;;:::i;:::-;;:::i;1721:119:1:-;;;;;;;;;;-1:-1:-1;1721:119:1;;;;;:::i;:::-;;:::i;2523:174::-;;;;;;;;;;-1:-1:-1;2523:174:1;;;;;:::i;:::-;;:::i;308:27::-;;;;;;;;;;;;;:::i;385:39::-;;;;;;;;;;;;;;;;4644:164:4;;;;;;;;;;-1:-1:-1;4644:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;4765:25:4;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4644:164;1534:244:9;;;;;;;;;;-1:-1:-1;1534:244:9;;;;;:::i;:::-;;:::i;1848:99:1:-;;;;;;;;;;-1:-1:-1;1848:99:1;;;;;:::i;:::-;;:::i;1481:305:4:-;1583:4;-1:-1:-1;;;;;;1620:40:4;;-1:-1:-1;;;1620:40:4;;:105;;-1:-1:-1;;;;;;;1677:48:4;;-1:-1:-1;;;1677:48:4;1620:105;:158;;;-1:-1:-1;;;;;;;;;;896:40:3;;;1742:36:4;1600:178;1481:305;-1:-1:-1;;1481:305:4:o;635:119:1:-;801:6:9;;-1:-1:-1;;;;;801:6:9;681:10:2;801:22:9;793:67;;;;-1:-1:-1;;;793:67:9;;;;;;;:::i;:::-;;;;;;;;;712:34:1::1;735:2;739:6;712:22;:34::i;:::-;635:119:::0;;:::o;2426:100:4:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;4081:73;;;;-1:-1:-1;;;4081:73:4;;13173:2:11;4081:73:4;;;13155:21:11;13212:2;13192:18;;;13185:30;13251:34;13231:18;;;13224:62;-1:-1:-1;;;13302:18:11;;;13295:42;13354:19;;4081:73:4;13145:234:11;4081:73:4;-1:-1:-1;4174:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4174:24:4;;3985:221::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;-1:-1:-1;;;;;3647:11:4;:2;-1:-1:-1;;;;;3647:11:4;;;3639:57;;;;-1:-1:-1;;;3639:57:4;;14357:2:11;3639:57:4;;;14339:21:11;14396:2;14376:18;;;14369:30;14435:34;14415:18;;;14408:62;-1:-1:-1;;;14486:18:11;;;14479:31;14527:19;;3639:57:4;14329:223:11;3639:57:4;681:10:2;-1:-1:-1;;;;;3731:21:4;;;;:62;;-1:-1:-1;3756:37:4;3773:5;681:10:2;4644:164:4;:::i;3756:37::-;3709:168;;;;-1:-1:-1;;;3709:168:4;;10872:2:11;3709:168:4;;;10854:21:11;10911:2;10891:18;;;10884:30;10950:34;10930:18;;;10923:62;11021:26;11001:18;;;10994:54;11065:19;;3709:168:4;10844:246:11;3709:168:4;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;4875:339::-;5070:41;681:10:2;5103:7:4;5070:18;:41::i;:::-;5062:103;;;;-1:-1:-1;;;5062:103:4;;;;;;;:::i;:::-;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;762:474:1:-;839:14;;820:15;:33;;812:68;;;;-1:-1:-1;;;812:68:1;;8633:2:11;812:68:1;;;8615:21:11;8672:2;8652:18;;;8645:30;-1:-1:-1;;;8691:18:11;;;8684:52;8753:18;;812:68:1;8605:172:11;812:68:1;900:16;;;;899:17;891:48;;;;-1:-1:-1;;;891:48:1;;15177:2:11;891:48:1;;;15159:21:11;15216:2;15196:18;;;15189:30;-1:-1:-1;;;15235:18:11;;;15228:48;15293:18;;891:48:1;15149:168:11;891:48:1;950:14;979:9;;967;:21;;;;:::i;:::-;950:38;;999:11;1025:9;;1013;:21;;;;:::i;:::-;999:35;-1:-1:-1;1053:14:1;;1045:57;;;;-1:-1:-1;;;1045:57:1;;10513:2:11;1045:57:1;;;10495:21:11;10552:2;10532:18;;;10525:30;10591:32;10571:18;;;10564:60;10641:18;;1045:57:1;10485:180:11;1045:57:1;1131:13;;1121:6;:23;;1113:58;;;;-1:-1:-1;;;1113:58:1;;12479:2:11;1113:58:1;;;12461:21:11;12518:2;12498:18;;;12491:30;-1:-1:-1;;;12537:18:11;;;12530:52;12599:18;;1113:58:1;12451:172:11;1113:58:1;1184:44;681:10:2;1221:6:1;1184:22;:44::i;2213:123::-;801:6:9;;-1:-1:-1;;;;;801:6:9;681:10:2;801:22:9;793:67;;;;-1:-1:-1;;;793:67:9;;;;;;;:::i;:::-;2298:30:1;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;1955:127::-:0;801:6:9;;-1:-1:-1;;;;;801:6:9;681:10:2;801:22:9;793:67;;;;-1:-1:-1;;;793:67:9;;;;;;;:::i;:::-;2038:16:1::1;:36:::0;;-1:-1:-1;;2038:36:1::1;::::0;::::1;;::::0;;;::::1;::::0;;1955:127::o;2344:171::-;801:6:9;;-1:-1:-1;;;;;801:6:9;681:10:2;801:22:9;793:67;;;;-1:-1:-1;;;793:67:9;;;;;;;:::i;:::-;2395:12:1::1;2412:7;654:6:9::0;;-1:-1:-1;;;;;654:6:9;;589:79;2412:7:1::1;-1:-1:-1::0;;;;;2412:12:1::1;2432:21;2412:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2394:64;;;2477:7;2469:38;;;::::0;-1:-1:-1;;;2469:38:1;;7460:2:11;2469:38:1::1;::::0;::::1;7442:21:11::0;7499:2;7479:18;;;7472:30;-1:-1:-1;;;7518:18:11;;;7511:48;7576:18;;2469:38:1::1;7432:168:11::0;2469:38:1::1;2383:132;2344:171::o:0;5285:185:4:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;1560:153:1:-;1601:4;1644:14;;1625:15;:33;;:54;;;;-1:-1:-1;1663:16:1;;;;1662:17;1625:54;:80;;;;;1697:8;;1683:11;;:22;1625:80;1618:87;;1560:153;:::o;2120:239:4:-;2192:7;2228:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2228:16:4;2263:19;2255:73;;;;-1:-1:-1;;;2255:73:4;;11708:2:11;2255:73:4;;;11690:21:11;11747:2;11727:18;;;11720:30;11786:34;11766:18;;;11759:62;-1:-1:-1;;;11837:18:11;;;11830:39;11886:19;;2255:73:4;11680:231:11;1850:208:4;1922:7;-1:-1:-1;;;;;1950:19:4;;1942:74;;;;-1:-1:-1;;;1942:74:4;;11297:2:11;1942:74:4;;;11279:21:11;11336:2;11316:18;;;11309:30;11375:34;11355:18;;;11348:62;-1:-1:-1;;;11426:18:11;;;11419:40;11476:19;;1942:74:4;11269:232:11;1942:74:4;-1:-1:-1;;;;;;2034:16:4;;;;;:9;:16;;;;;;;1850:208::o;1231:148:9:-;801:6;;-1:-1:-1;;;;;801:6:9;681:10:2;801:22:9;793:67;;;;-1:-1:-1;;;793:67:9;;;;;;;:::i;:::-;1322:6:::1;::::0;1301:40:::1;::::0;1338:1:::1;::::0;-1:-1:-1;;;;;1322:6:9::1;::::0;1301:40:::1;::::0;1338:1;;1301:40:::1;1352:6;:19:::0;;-1:-1:-1;;;;;;1352:19:9::1;::::0;;1231:148::o;2090:115:1:-;801:6:9;;-1:-1:-1;;;;;801:6:9;681:10:2;801:22:9;793:67;;;;-1:-1:-1;;;793:67:9;;;;;;;:::i;:::-;2167:13:1::1;:30:::0;2090:115::o;2595:104:4:-;2651:13;2684:7;2677:14;;;;;:::i;4278:295::-;-1:-1:-1;;;;;4381:24:4;;681:10:2;4381:24:4;;4373:62;;;;-1:-1:-1;;;4373:62:4;;9746:2:11;4373:62:4;;;9728:21:11;9785:2;9765:18;;;9758:30;9824:27;9804:18;;;9797:55;9869:18;;4373:62:4;9718:175:11;4373:62:4;681:10:2;4448:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4448:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4448:53:4;;;;;;;;;;4517:48;;6982:41:11;;;4448:42:4;;681:10:2;4517:48:4;;6955:18:11;4517:48:4;;;;;;;4278:295;;:::o;5541:328::-;5716:41;681:10:2;5749:7:4;5716:18;:41::i;:::-;5708:103;;;;-1:-1:-1;;;5708:103:4;;;;;;;:::i;:::-;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;:::-;5541:328;;;;:::o;1721:119:1:-;801:6:9;;-1:-1:-1;;;;;801:6:9;681:10:2;801:22:9;793:67;;;;-1:-1:-1;;;793:67:9;;;;;;;:::i;:::-;1800:14:1::1;:32:::0;1721:119::o;2523:174::-;2589:13;2646;2661:26;2678:8;2661:16;:26::i;:::-;2629:59;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2615:74;;2523:174;;;:::o;308:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1534:244:9:-;801:6;;-1:-1:-1;;;;;801:6:9;681:10:2;801:22:9;793:67;;;;-1:-1:-1;;;793:67:9;;;;;;;:::i;:::-;-1:-1:-1;;;;;1623:22:9;::::1;1615:73;;;::::0;-1:-1:-1;;;1615:73:9;;8226:2:11;1615:73:9::1;::::0;::::1;8208:21:11::0;8265:2;8245:18;;;8238:30;8304:34;8284:18;;;8277:62;-1:-1:-1;;;8355:18:11;;;8348:36;8401:19;;1615:73:9::1;8198:228:11::0;1615:73:9::1;1725:6;::::0;1704:38:::1;::::0;-1:-1:-1;;;;;1704:38:9;;::::1;::::0;1725:6:::1;::::0;1704:38:::1;::::0;1725:6:::1;::::0;1704:38:::1;1753:6;:17:::0;;-1:-1:-1;;;;;;1753:17:9::1;-1:-1:-1::0;;;;;1753:17:9;;;::::1;::::0;;;::::1;::::0;;1534:244::o;1848:99:1:-;801:6:9;;-1:-1:-1;;;;;801:6:9;681:10:2;801:22:9;793:67;;;;-1:-1:-1;;;793:67:9;;;;;;;:::i;:::-;1917:9:1::1;:22:::0;1848:99::o;1244:308::-;1353:8;;1343:6;1329:11;;:20;;;;:::i;:::-;:32;;1321:59;;;;-1:-1:-1;;;1321:59:1;;12830:2:11;1321:59:1;;;12812:21:11;12869:2;12849:18;;;12842:30;-1:-1:-1;;;12888:18:11;;;12881:44;12942:18;;1321:59:1;12802:164:11;1321:59:1;1395:6;1391:154;1411:6;1407:1;:10;1391:154;;;1439:22;1445:2;1449:11;;1439:5;:22::i;:::-;1490:11;;1481:21;;-1:-1:-1;;;;;1481:21:1;;;;;;;;1532:1;1517:11;;:16;;;;;;;:::i;:::-;;;;-1:-1:-1;1419:3:1;;-1:-1:-1;1419:3:1;;;:::i;:::-;;;;1391:154;;11361:174:4;11436:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11436:29:4;-1:-1:-1;;;;;11436:29:4;;;;;;;;:24;;11490:23;11436:24;11490:14;:23::i;:::-;-1:-1:-1;;;;;11481:46:4;;;;;;;;;;;11361:174;;:::o;7673:348::-;7766:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;7783:73;;;;-1:-1:-1;;;7783:73:4;;10100:2:11;7783:73:4;;;10082:21:11;10139:2;10119:18;;;10112:30;10178:34;10158:18;;;10151:62;-1:-1:-1;;;10229:18:11;;;10222:42;10281:19;;7783:73:4;10072:234:11;7783:73:4;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;-1:-1:-1;;;;;7925:16:4;:7;-1:-1:-1;;;;;7925:16:4;;:51;;;;7969:7;-1:-1:-1;;;;;7945:31:4;:20;7957:7;7945:11;:20::i;:::-;-1:-1:-1;;;;;7945:31:4;;7925:51;:87;;;-1:-1:-1;;;;;;4765:25:4;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7980:32;7917:96;7673:348;-1:-1:-1;;;;7673:348:4:o;10665:578::-;10824:4;-1:-1:-1;;;;;10797:31:4;:23;10812:7;10797:14;:23::i;:::-;-1:-1:-1;;;;;10797:31:4;;10789:85;;;;-1:-1:-1;;;10789:85:4;;13947:2:11;10789:85:4;;;13929:21:11;13986:2;13966:18;;;13959:30;14025:34;14005:18;;;13998:62;-1:-1:-1;;;14076:18:11;;;14069:39;14125:19;;10789:85:4;13919:231:11;10789:85:4;-1:-1:-1;;;;;10893:16:4;;10885:65;;;;-1:-1:-1;;;10885:65:4;;9341:2:11;10885:65:4;;;9323:21:11;9380:2;9360:18;;;9353:30;9419:34;9399:18;;;9392:62;-1:-1:-1;;;9470:18:11;;;9463:34;9514:19;;10885:65:4;9313:226:11;10885:65:4;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;-1:-1:-1;;;;;11109:15:4;;;;;;:9;:15;;;;;:20;;11128:1;;11109:15;:20;;11128:1;;11109:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11140:13:4;;;;;;:9;:13;;;;;:18;;11157:1;;11140:13;:18;;11157:1;;11140:18;:::i;:::-;;;;-1:-1:-1;;11169:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11169:21:4;-1:-1:-1;;;;;11169:21:4;;;;;;;;;11208:27;;11169:16;;11208:27;;;;;;;10665:578;;;:::o;6751:315::-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;-1:-1:-1;;;6947:111:4;;;;;;;:::i;288:723:10:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:10;;;;;;;;;;;;-1:-1:-1;;;592:10:10;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:10;;-1:-1:-1;744:2:10;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:10;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:10;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:10;;;;;;;;-1:-1:-1;949:11:10;958:2;949:11;;:::i;:::-;;;818:154;;9357:382:4;-1:-1:-1;;;;;9437:16:4;;9429:61;;;;-1:-1:-1;;;9429:61:4;;12118:2:11;9429:61:4;;;12100:21:11;;;12137:18;;;12130:30;12196:34;12176:18;;;12169:62;12248:18;;9429:61:4;12090:182:11;9429:61:4;7444:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;:30;9501:58;;;;-1:-1:-1;;;9501:58:4;;8984:2:11;9501:58:4;;;8966:21:11;9023:2;9003:18;;;8996:30;9062;9042:18;;;9035:58;9110:18;;9501:58:4;8956:178:11;9501:58:4;-1:-1:-1;;;;;9630:13:4;;;;;;:9;:13;;;;;:18;;9647:1;;9630:13;:18;;9647:1;;9630:18;:::i;:::-;;;;-1:-1:-1;;9659:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9659:21:4;-1:-1:-1;;;;;9659:21:4;;;;;;;;9698:33;;9659:16;;;9698:33;;9659:16;;9698:33;9357:382;;:::o;12100:799::-;12255:4;-1:-1:-1;;;;;12276:13:4;;1066:20:0;1114:8;12272:620:4;;12312:72;;-1:-1:-1;;;12312:72:4;;-1:-1:-1;;;;;12312:36:4;;;;;:72;;681:10:2;;12363:4:4;;12369:7;;12378:5;;12312:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12312:72:4;;;;;;;;-1:-1:-1;;12312:72:4;;;;;;;;;;;;:::i;:::-;;;12308:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12554:13:4;;12550:272;;12597:60;;-1:-1:-1;;;12597:60:4;;;;;;;:::i;12550:272::-;12772:6;12766:13;12757:6;12753:2;12749:15;12742:38;12308:529;-1:-1:-1;;;;;;12435:51:4;-1:-1:-1;;;12435:51:4;;-1:-1:-1;12428:58:4;;12272:620;-1:-1:-1;12876:4:4;12100:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:11;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:11;;;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:11;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:2;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:2;;;1121:1;1118;1111:12;1073:2;1144:29;1163:9;1144:29;:::i;:::-;1134:39;1063:116;-1:-1:-1;;;1063:116:11:o;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:2;;;1329:1;1326;1319:12;1281:2;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1271:173;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:2;;;1611:1;1608;1601:12;1563:2;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1553:224;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:2;;;1971:1;1968;1961:12;1922:2;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:2;;;2241:1;2238;2231:12;2195:2;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:2:11;;2346:1;2343;2336:12;2295:2;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1912:536;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:2;;;2595:1;2592;2585:12;2547:2;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:2;;;2857:1;2854;2847:12;2809:2;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2799:167:11:o;2971:180::-;3027:6;3080:2;3068:9;3059:7;3055:23;3051:32;3048:2;;;3096:1;3093;3086:12;3048:2;3119:26;3135:9;3119:26;:::i;3156:245::-;3214:6;3267:2;3255:9;3246:7;3242:23;3238:32;3235:2;;;3283:1;3280;3273:12;3235:2;3322:9;3309:23;3341:30;3365:5;3341:30;:::i;3406:249::-;3475:6;3528:2;3516:9;3507:7;3503:23;3499:32;3496:2;;;3544:1;3541;3534:12;3496:2;3576:9;3570:16;3595:30;3619:5;3595:30;:::i;3660:450::-;3729:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:2;;;3798:1;3795;3788:12;3750:2;3838:9;3825:23;3871:18;3863:6;3860:30;3857:2;;;3903:1;3900;3893:12;3857:2;3926:22;;3979:4;3971:13;;3967:27;-1:-1:-1;3957:2:11;;4008:1;4005;3998:12;3957:2;4031:73;4096:7;4091:2;4078:16;4073:2;4069;4065:11;4031:73;:::i;4115:180::-;4174:6;4227:2;4215:9;4206:7;4202:23;4198:32;4195:2;;;4243:1;4240;4233:12;4195:2;-1:-1:-1;4266:23:11;;4185:110;-1:-1:-1;4185:110:11:o;4300:257::-;4341:3;4379:5;4373:12;4406:6;4401:3;4394:19;4422:63;4478:6;4471:4;4466:3;4462:14;4455:4;4448:5;4444:16;4422:63;:::i;:::-;4539:2;4518:15;-1:-1:-1;;4514:29:11;4505:39;;;;4546:4;4501:50;;4349:208;-1:-1:-1;;4349:208:11:o;4562:185::-;4604:3;4642:5;4636:12;4657:52;4702:6;4697:3;4690:4;4683:5;4679:16;4657:52;:::i;:::-;4725:16;;;;;4612:135;-1:-1:-1;;4612:135:11:o;4752:1174::-;4928:3;4957:1;4990:6;4984:13;5020:3;5042:1;5070:9;5066:2;5062:18;5052:28;;5130:2;5119:9;5115:18;5152;5142:2;;5196:4;5188:6;5184:17;5174:27;;5142:2;5222;5270;5262:6;5259:14;5239:18;5236:38;5233:2;;;-1:-1:-1;;;5297:33:11;;5353:4;5350:1;5343:15;5383:4;5304:3;5371:17;5233:2;5414:18;5441:104;;;;5559:1;5554:320;;;;5407:467;;5441:104;-1:-1:-1;;5474:24:11;;5462:37;;5519:16;;;;-1:-1:-1;5441:104:11;;5554:320;15577:1;15570:14;;;15614:4;15601:18;;5649:1;5663:165;5677:6;5674:1;5671:13;5663:165;;;5755:14;;5742:11;;;5735:35;5798:16;;;;5692:10;;5663:165;;;5667:3;;5857:6;5852:3;5848:16;5841:23;;5407:467;;;;;;;5890:30;5916:3;5908:6;5890:30;:::i;:::-;5883:37;4936:990;-1:-1:-1;;;;;4936:990:11:o;6349:488::-;-1:-1:-1;;;;;6618:15:11;;;6600:34;;6670:15;;6665:2;6650:18;;6643:43;6717:2;6702:18;;6695:34;;;6765:3;6760:2;6745:18;;6738:31;;;6543:4;;6786:45;;6811:19;;6803:6;6786:45;:::i;:::-;6778:53;6552:285;-1:-1:-1;;;;;;6552:285:11:o;7034:219::-;7183:2;7172:9;7165:21;7146:4;7203:44;7243:2;7232:9;7228:18;7220:6;7203:44;:::i;7605:414::-;7807:2;7789:21;;;7846:2;7826:18;;;7819:30;7885:34;7880:2;7865:18;;7858:62;-1:-1:-1;;;7951:2:11;7936:18;;7929:48;8009:3;7994:19;;7779:240::o;13384:356::-;13586:2;13568:21;;;13605:18;;;13598:30;13664:34;13659:2;13644:18;;13637:62;13731:2;13716:18;;13558:182::o;14557:413::-;14759:2;14741:21;;;14798:2;14778:18;;;14771:30;14837:34;14832:2;14817:18;;14810:62;-1:-1:-1;;;14903:2:11;14888:18;;14881:47;14960:3;14945:19;;14731:239::o;15630:128::-;15670:3;15701:1;15697:6;15694:1;15691:13;15688:2;;;15707:18;;:::i;:::-;-1:-1:-1;15743:9:11;;15678:80::o;15763:120::-;15803:1;15829;15819:2;;15834:18;;:::i;:::-;-1:-1:-1;15868:9:11;;15809:74::o;15888:125::-;15928:4;15956:1;15953;15950:8;15947:2;;;15961:18;;:::i;:::-;-1:-1:-1;15998:9:11;;15937:76::o;16018:258::-;16090:1;16100:113;16114:6;16111:1;16108:13;16100:113;;;16190:11;;;16184:18;16171:11;;;16164:39;16136:2;16129:10;16100:113;;;16231:6;16228:1;16225:13;16222:2;;;-1:-1:-1;;16266:1:11;16248:16;;16241:27;16071:205::o;16281:380::-;16360:1;16356:12;;;;16403;;;16424:2;;16478:4;16470:6;16466:17;16456:27;;16424:2;16531;16523:6;16520:14;16500:18;16497:38;16494:2;;;16577:10;16572:3;16568:20;16565:1;16558:31;16612:4;16609:1;16602:15;16640:4;16637:1;16630:15;16494:2;;16336:325;;;:::o;16666:135::-;16705:3;-1:-1:-1;;16726:17:11;;16723:2;;;16746:18;;:::i;:::-;-1:-1:-1;16793:1:11;16782:13;;16713:88::o;16806:112::-;16838:1;16864;16854:2;;16869:18;;:::i;:::-;-1:-1:-1;16903:9:11;;16844:74::o;16923:127::-;16984:10;16979:3;16975:20;16972:1;16965:31;17015:4;17012:1;17005:15;17039:4;17036:1;17029:15;17055:127;17116:10;17111:3;17107:20;17104:1;17097:31;17147:4;17144:1;17137:15;17171:4;17168:1;17161:15;17187:127;17248:10;17243:3;17239:20;17236:1;17229:31;17279:4;17276:1;17269:15;17303:4;17300:1;17293:15;17319:127;17380:10;17375:3;17371:20;17368:1;17361:31;17411:4;17408:1;17401:15;17435:4;17432:1;17425:15;17451:131;-1:-1:-1;;;;;;17525:32:11;;17515:43;;17505:2;;17572:1;17569;17562:12
Swarm Source
ipfs://8ea1bb634c961a359772a49921380cd20767f32ce8f1480846ec684487fa6eed
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.