ERC-721
Overview
Max Total Supply
3,104 SBIRD
Holders
329
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 SBIRDLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
SKYBIRDS
Compiler Version
v0.8.15+commit.e14f2714
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-06-29 */ // 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); } // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) 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; 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); } } } } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 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); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx; address currOwnershipAddr; // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar. unchecked { for (uint256 i; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } } revert('ERC721A: unable to get token of owner by index'); } /** * @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 || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); unchecked { for (uint256 curr = tokenId; curr >= 0; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @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 override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: 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 override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: 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`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); require(quantity != 0, 'ERC721A: quantity must be greater than 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1 // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1 unchecked { _addressData[to].balance += uint128(quantity); _addressData[to].numberMinted += uint128(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; for (uint256 i; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); if (safe) { require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } updatedIndex++; } currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, 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('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * 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`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } pragma solidity ^0.8.4; contract SKYBIRDS is ERC721A, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public PRICE; uint256 public MAX_SUPPLY; string private BASE_URI; uint256 public FREE_MINT_LIMIT_PER_WALLET; uint256 public MAX_MINT_AMOUNT_PER_TX; bool public IS_SALE_ACTIVE; uint256 public FREE_MINT_IS_ALLOWED_UNTIL; // Free mint is allowed until x mint bool public METADATA_FROZEN; mapping(address => uint256) private freeMintCountMap; constructor(uint256 price, uint256 maxSupply, string memory baseUri, uint256 freeMintAllowance, uint256 maxMintPerTx, bool isSaleActive, uint256 freeMintIsAllowedUntil) ERC721A("SKYBIRDS", "SBIRD") { PRICE = price; MAX_SUPPLY = maxSupply; BASE_URI = baseUri; FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance; MAX_MINT_AMOUNT_PER_TX = maxMintPerTx; IS_SALE_ACTIVE = isSaleActive; FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil; } /** FREE MINT **/ function updateFreeMintCount(address minter, uint256 count) private { freeMintCountMap[minter] += count; } /** GETTERS **/ function _baseURI() internal view virtual override returns (string memory) { return BASE_URI; } /** SETTERS **/ function setPrice(uint256 customPrice) external onlyOwner { PRICE = customPrice; } function lowerMaxSupply(uint256 newMaxSupply) external onlyOwner { require(newMaxSupply < MAX_SUPPLY, "Invalid new max supply"); require(newMaxSupply >= currentIndex, "Invalid new max supply"); MAX_SUPPLY = newMaxSupply; } function setBaseURI(string memory customBaseURI_) external onlyOwner { require(!METADATA_FROZEN, "Metadata frozen!"); BASE_URI = customBaseURI_; } function setFreeMintAllowance(uint256 freeMintAllowance) external onlyOwner { FREE_MINT_LIMIT_PER_WALLET = freeMintAllowance; } function setMaxMintPerTx(uint256 maxMintPerTx) external onlyOwner { MAX_MINT_AMOUNT_PER_TX = maxMintPerTx; } function setSaleActive(bool saleIsActive) external onlyOwner { IS_SALE_ACTIVE = saleIsActive; } function setFreeMintAllowedUntil(uint256 freeMintIsAllowedUntil) external onlyOwner { FREE_MINT_IS_ALLOWED_UNTIL = freeMintIsAllowedUntil; } function freezeMetadata() external onlyOwner { METADATA_FROZEN = true; } /** MINT **/ modifier mintCompliance(uint256 _mintAmount) { require(_mintAmount > 0 && _mintAmount <= MAX_MINT_AMOUNT_PER_TX, "Invalid mint amount!"); require(currentIndex + _mintAmount <= MAX_SUPPLY, "Max supply exceeded!"); _; } function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) { require(IS_SALE_ACTIVE, "Sale is not active!"); uint256 price = PRICE * _mintAmount; if (currentIndex < FREE_MINT_IS_ALLOWED_UNTIL) { uint256 remainingFreeMint = FREE_MINT_LIMIT_PER_WALLET - freeMintCountMap[msg.sender]; if (remainingFreeMint > 0) { if (_mintAmount >= remainingFreeMint) { price -= remainingFreeMint * PRICE; updateFreeMintCount(msg.sender, remainingFreeMint); } else { price -= _mintAmount * PRICE; updateFreeMintCount(msg.sender, _mintAmount); } } } require(msg.value >= price, "Insufficient funds!"); _safeMint(msg.sender, _mintAmount); } function mintOwner(address _to, uint256 _mintAmount) public mintCompliance(_mintAmount) onlyOwner { _safeMint(_to, _mintAmount); } /** PAYOUT **/ address private constant payoutAddress = 0xBE4BbfdBbd69c6DAdc5590B62D5B32fd68B0ab47; function withdraw() public onlyOwner nonReentrant { uint256 balance = address(this).balance; Address.sendValue(payable(payoutAddress), balance); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"price","type":"uint256"},{"internalType":"uint256","name":"maxSupply","type":"uint256"},{"internalType":"string","name":"baseUri","type":"string"},{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"},{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"},{"internalType":"bool","name":"isSaleActive","type":"bool"},{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FREE_MINT_IS_ALLOWED_UNTIL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FREE_MINT_LIMIT_PER_WALLET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"IS_SALE_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_AMOUNT_PER_TX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"METADATA_FROZEN","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"freezeMetadata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxSupply","type":"uint256"}],"name":"lowerMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"customBaseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintAllowance","type":"uint256"}],"name":"setFreeMintAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"freeMintIsAllowedUntil","type":"uint256"}],"name":"setFreeMintAllowedUntil","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintPerTx","type":"uint256"}],"name":"setMaxMintPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"customPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleActive","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620028953803806200289583398101604081905262000034916200017a565b60405180604001604052806008815260200167534b59424952445360c01b8152506040518060400160405280600581526020016414d092549160da1b81525081600190816200008491906200032c565b5060026200009382826200032c565b505050620000b0620000aa620000f860201b60201c565b620000fc565b60016008556009879055600a869055600b620000cd86826200032c565b50600c93909355600d91909155600e805460ff1916911515919091179055600f5550620003f8915050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b634e487b7160e01b600052604160045260246000fd5b805180151581146200017557600080fd5b919050565b600080600080600080600060e0888a0312156200019657600080fd5b87516020808a015160408b01519299509750906001600160401b0380821115620001bf57600080fd5b818b0191508b601f830112620001d457600080fd5b815181811115620001e957620001e96200014e565b604051601f8201601f19908116603f011681019083821181831017156200021457620002146200014e565b816040528281528e868487010111156200022d57600080fd5b600093505b8284101562000251578484018601518185018701529285019262000232565b82841115620002635760008684830101525b809a5050505050505060608801519350608088015192506200028860a0890162000164565b915060c0880151905092959891949750929550565b600181811c90821680620002b257607f821691505b602082108103620002d357634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200032757600081815260208120601f850160051c81016020861015620003025750805b601f850160051c820191505b8181101562000323578281556001016200030e565b5050505b505050565b81516001600160401b038111156200034857620003486200014e565b62000360816200035984546200029d565b84620002d9565b602080601f8311600181146200039857600084156200037f5750858301515b600019600386901b1c1916600185901b17855562000323565b600085815260208120601f198616915b82811015620003c957888601518255948401946001909101908401620003a8565b5085821015620003e85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61248d80620004086000396000f3fe60806040526004361061021a5760003560e01c806370a0823111610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146105eb578063d111515d1461060b578063e985e9c514610620578063f2fde38b14610669578063fdb4953a1461068957600080fd5b8063a0712d6814610558578063a22cb4651461056b578063b0551ac41461058b578063b88d4fde146105ab578063c4e9374d146105cb57600080fd5b80638b85e43d116100f25780638b85e43d146104cf5780638d859f3e146104ef5780638da5cb5b1461050557806391b7f5ed1461052357806395d89b411461054357600080fd5b806370a0823114610460578063715018a61461048057806376d02b7114610495578063841718a6146104af57600080fd5b806332cb6b0c116101a657806342842e0e1161017557806342842e0e146103c05780634f6ccce7146103e057806355f804b314610400578063616cdb1e146104205780636352211e1461044057600080fd5b806332cb6b0c1461035f5780633ccfd60b146103755780634065b85f1461038a578063408cbf94146103a057600080fd5b806309ef6527116101ed57806309ef6527146102d057806310b0c052146102f457806318160ddd1461030a57806323b872dd1461031f5780632f745c591461033f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611e16565b6106a3565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610710565b60405161024b9190611e8b565b34801561028257600080fd5b50610296610291366004611e9e565b6107a2565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611ed3565b610832565b005b3480156102dc57600080fd5b506102e6600d5481565b60405190815260200161024b565b34801561030057600080fd5b506102e6600c5481565b34801561031657600080fd5b506000546102e6565b34801561032b57600080fd5b506102ce61033a366004611efd565b610949565b34801561034b57600080fd5b506102e661035a366004611ed3565b610954565b34801561036b57600080fd5b506102e6600a5481565b34801561038157600080fd5b506102ce610aaf565b34801561039657600080fd5b506102e6600f5481565b3480156103ac57600080fd5b506102ce6103bb366004611ed3565b610b57565b3480156103cc57600080fd5b506102ce6103db366004611efd565b610c37565b3480156103ec57600080fd5b506102e66103fb366004611e9e565b610c52565b34801561040c57600080fd5b506102ce61041b366004611fc5565b610cb4565b34801561042c57600080fd5b506102ce61043b366004611e9e565b610d34565b34801561044c57600080fd5b5061029661045b366004611e9e565b610d63565b34801561046c57600080fd5b506102e661047b36600461200e565b610d75565b34801561048c57600080fd5b506102ce610e06565b3480156104a157600080fd5b50600e5461023f9060ff1681565b3480156104bb57600080fd5b506102ce6104ca366004612039565b610e3c565b3480156104db57600080fd5b506102ce6104ea366004611e9e565b610e79565b3480156104fb57600080fd5b506102e660095481565b34801561051157600080fd5b506007546001600160a01b0316610296565b34801561052f57600080fd5b506102ce61053e366004611e9e565b610ea8565b34801561054f57600080fd5b50610269610ed7565b6102ce610566366004611e9e565b610ee6565b34801561057757600080fd5b506102ce610586366004612054565b6110c1565b34801561059757600080fd5b506102ce6105a6366004611e9e565b611185565b3480156105b757600080fd5b506102ce6105c6366004612087565b6111b4565b3480156105d757600080fd5b506102ce6105e6366004611e9e565b6111ed565b3480156105f757600080fd5b50610269610606366004611e9e565b6112b1565b34801561061757600080fd5b506102ce61137e565b34801561062c57600080fd5b5061023f61063b366004612103565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561067557600080fd5b506102ce61068436600461200e565b6113b7565b34801561069557600080fd5b5060105461023f9060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806106d457506001600160e01b03198216635b5e139f60e01b145b806106ef57506001600160e01b0319821663780e9d6360e01b145b8061070a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461071f9061212d565b80601f016020809104026020016040519081016040528092919081815260200182805461074b9061212d565b80156107985780601f1061076d57610100808354040283529160200191610798565b820191906000526020600020905b81548152906001019060200180831161077b57829003601f168201915b5050505050905090565b60006107af826000541190565b6108165760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061083d82610d63565b9050806001600160a01b0316836001600160a01b0316036108ab5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161080d565b336001600160a01b03821614806108c757506108c7813361063b565b6109395760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161080d565b610944838383611452565b505050565b6109448383836114ae565b600061095f83610d75565b82106109b85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161080d565b600080549080805b83811015610a4f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a1357805192505b876001600160a01b0316836001600160a01b031603610a4657868403610a3f5750935061070a92505050565b6001909301925b506001016109c0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161080d565b6007546001600160a01b03163314610ad95760405162461bcd60e51b815260040161080d90612167565b600260085403610b2b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161080d565b600260085547610b4f73be4bbfdbbd69c6dadc5590b62d5b32fd68b0ab4782611793565b506001600855565b80600081118015610b6a5750600d548111155b610bad5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161080d565b600a5481600054610bbe91906121b2565b1115610c035760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161080d565b6007546001600160a01b03163314610c2d5760405162461bcd60e51b815260040161080d90612167565b61094483836118ac565b610944838383604051806020016040528060008152506111b4565b600080548210610cb05760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161080d565b5090565b6007546001600160a01b03163314610cde5760405162461bcd60e51b815260040161080d90612167565b60105460ff1615610d245760405162461bcd60e51b815260206004820152601060248201526f4d657461646174612066726f7a656e2160801b604482015260640161080d565b600b610d308282612218565b5050565b6007546001600160a01b03163314610d5e5760405162461bcd60e51b815260040161080d90612167565b600d55565b6000610d6e826118c6565b5192915050565b60006001600160a01b038216610de15760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161080d565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610e305760405162461bcd60e51b815260040161080d90612167565b610e3a600061199d565b565b6007546001600160a01b03163314610e665760405162461bcd60e51b815260040161080d90612167565b600e805460ff1916911515919091179055565b6007546001600160a01b03163314610ea35760405162461bcd60e51b815260040161080d90612167565b600f55565b6007546001600160a01b03163314610ed25760405162461bcd60e51b815260040161080d90612167565b600955565b60606002805461071f9061212d565b80600081118015610ef95750600d548111155b610f3c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161080d565b600a5481600054610f4d91906121b2565b1115610f925760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161080d565b600e5460ff16610fda5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b604482015260640161080d565b600082600954610fea91906122d8565b9050600f5460005410156110715733600090815260116020526040812054600c5461101591906122f7565b9050801561106f5780841061104c5760095461103190826122d8565b61103b90836122f7565b915061104733826119ef565b61106f565b60095461105990856122d8565b61106390836122f7565b915061106f33856119ef565b505b803410156110b75760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161080d565b61094433846118ac565b336001600160a01b038316036111195760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161080d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146111af5760405162461bcd60e51b815260040161080d90612167565b600c55565b6111bf8484846114ae565b6111cb84848484611a20565b6111e75760405162461bcd60e51b815260040161080d9061230e565b50505050565b6007546001600160a01b031633146112175760405162461bcd60e51b815260040161080d90612167565b600a5481106112615760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b604482015260640161080d565b6000548110156112ac5760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b604482015260640161080d565b600a55565b60606112be826000541190565b6113225760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080d565b600061132c611b22565b9050805160000361134c5760405180602001604052806000815250611377565b8061135684611b31565b604051602001611367929190612361565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146113a85760405162461bcd60e51b815260040161080d90612167565b6010805460ff19166001179055565b6007546001600160a01b031633146113e15760405162461bcd60e51b815260040161080d90612167565b6001600160a01b0381166114465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080d565b61144f8161199d565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114b9826118c6565b80519091506000906001600160a01b0316336001600160a01b031614806114f05750336114e5846107a2565b6001600160a01b0316145b8061150257508151611502903361063b565b90508061156c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161080d565b846001600160a01b031682600001516001600160a01b0316146115e05760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161080d565b6001600160a01b0384166116445760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161080d565b6116546000848460000151611452565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611749576116fc816000541190565b15611749578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156117e35760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161080d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611830576040519150601f19603f3d011682016040523d82523d6000602084013e611835565b606091505b50509050806109445760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161080d565b610d30828260405180602001604052806000815250611c32565b60408051808201909152600080825260208201526118e5826000541190565b6119445760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161080d565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611993579392505050565b5060001901611946565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604081208054839290611a179084906121b2565b90915550505050565b60006001600160a01b0384163b15611b1657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a64903390899088908890600401612390565b6020604051808303816000875af1925050508015611a9f575060408051601f3d908101601f19168201909252611a9c918101906123cd565b60015b611afc573d808015611acd576040519150601f19603f3d011682016040523d82523d6000602084013e611ad2565b606091505b508051600003611af45760405162461bcd60e51b815260040161080d9061230e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b1a565b5060015b949350505050565b6060600b805461071f9061212d565b606081600003611b585750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b825780611b6c816123ea565b9150611b7b9050600a83612419565b9150611b5c565b60008167ffffffffffffffff811115611b9d57611b9d611f39565b6040519080825280601f01601f191660200182016040528015611bc7576020820181803683370190505b5090505b8415611b1a57611bdc6001836122f7565b9150611be9600a8661242d565b611bf49060306121b2565b60f81b818381518110611c0957611c09612441565b60200101906001600160f81b031916908160001a905350611c2b600a86612419565b9450611bcb565b61094483838360016000546001600160a01b038516611c9d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161080d565b83600003611cfe5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161080d565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611df75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611deb57611dcf6000888488611a20565b611deb5760405162461bcd60e51b815260040161080d9061230e565b60019182019101611d7c565b5060005561178c565b6001600160e01b03198116811461144f57600080fd5b600060208284031215611e2857600080fd5b813561137781611e00565b60005b83811015611e4e578181015183820152602001611e36565b838111156111e75750506000910152565b60008151808452611e77816020860160208601611e33565b601f01601f19169290920160200192915050565b6020815260006113776020830184611e5f565b600060208284031215611eb057600080fd5b5035919050565b80356001600160a01b0381168114611ece57600080fd5b919050565b60008060408385031215611ee657600080fd5b611eef83611eb7565b946020939093013593505050565b600080600060608486031215611f1257600080fd5b611f1b84611eb7565b9250611f2960208501611eb7565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f6a57611f6a611f39565b604051601f8501601f19908116603f01168101908282118183101715611f9257611f92611f39565b81604052809350858152868686011115611fab57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fd757600080fd5b813567ffffffffffffffff811115611fee57600080fd5b8201601f81018413611fff57600080fd5b611b1a84823560208401611f4f565b60006020828403121561202057600080fd5b61137782611eb7565b80358015158114611ece57600080fd5b60006020828403121561204b57600080fd5b61137782612029565b6000806040838503121561206757600080fd5b61207083611eb7565b915061207e60208401612029565b90509250929050565b6000806000806080858703121561209d57600080fd5b6120a685611eb7565b93506120b460208601611eb7565b925060408501359150606085013567ffffffffffffffff8111156120d757600080fd5b8501601f810187136120e857600080fd5b6120f787823560208401611f4f565b91505092959194509250565b6000806040838503121561211657600080fd5b61211f83611eb7565b915061207e60208401611eb7565b600181811c9082168061214157607f821691505b60208210810361216157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156121c5576121c561219c565b500190565b601f82111561094457600081815260208120601f850160051c810160208610156121f15750805b601f850160051c820191505b81811015612210578281556001016121fd565b505050505050565b815167ffffffffffffffff81111561223257612232611f39565b61224681612240845461212d565b846121ca565b602080601f83116001811461227b57600084156122635750858301515b600019600386901b1c1916600185901b178555612210565b600085815260208120601f198616915b828110156122aa5788860151825594840194600190910190840161228b565b50858210156122c85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008160001904831182151516156122f2576122f261219c565b500290565b6000828210156123095761230961219c565b500390565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612373818460208801611e33565b835190830190612387818360208801611e33565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123c390830184611e5f565b9695505050505050565b6000602082840312156123df57600080fd5b815161137781611e00565b6000600182016123fc576123fc61219c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261242857612428612403565b500490565b60008261243c5761243c612403565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220af107cbf018e6a04fb638a3cec713ea9697cda88a31621a8bb81201cc1a71bcd64736f6c634300080f0033000000000000000000000000000000000000000000000000001aa535d3d0c000000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f73756e62697264736e66746170692e636f2f6170692f76312f6d657461646174612f6765743f636f6c6c656374696f6e3d363237653665316630303437333766303237333964343638266e6f3d0000000000000000000000
Deployed Bytecode
0x60806040526004361061021a5760003560e01c806370a0823111610123578063a0712d68116100ab578063c87b56dd1161006f578063c87b56dd146105eb578063d111515d1461060b578063e985e9c514610620578063f2fde38b14610669578063fdb4953a1461068957600080fd5b8063a0712d6814610558578063a22cb4651461056b578063b0551ac41461058b578063b88d4fde146105ab578063c4e9374d146105cb57600080fd5b80638b85e43d116100f25780638b85e43d146104cf5780638d859f3e146104ef5780638da5cb5b1461050557806391b7f5ed1461052357806395d89b411461054357600080fd5b806370a0823114610460578063715018a61461048057806376d02b7114610495578063841718a6146104af57600080fd5b806332cb6b0c116101a657806342842e0e1161017557806342842e0e146103c05780634f6ccce7146103e057806355f804b314610400578063616cdb1e146104205780636352211e1461044057600080fd5b806332cb6b0c1461035f5780633ccfd60b146103755780634065b85f1461038a578063408cbf94146103a057600080fd5b806309ef6527116101ed57806309ef6527146102d057806310b0c052146102f457806318160ddd1461030a57806323b872dd1461031f5780632f745c591461033f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc14610276578063095ea7b3146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a366004611e16565b6106a3565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610710565b60405161024b9190611e8b565b34801561028257600080fd5b50610296610291366004611e9e565b6107a2565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b506102ce6102c9366004611ed3565b610832565b005b3480156102dc57600080fd5b506102e6600d5481565b60405190815260200161024b565b34801561030057600080fd5b506102e6600c5481565b34801561031657600080fd5b506000546102e6565b34801561032b57600080fd5b506102ce61033a366004611efd565b610949565b34801561034b57600080fd5b506102e661035a366004611ed3565b610954565b34801561036b57600080fd5b506102e6600a5481565b34801561038157600080fd5b506102ce610aaf565b34801561039657600080fd5b506102e6600f5481565b3480156103ac57600080fd5b506102ce6103bb366004611ed3565b610b57565b3480156103cc57600080fd5b506102ce6103db366004611efd565b610c37565b3480156103ec57600080fd5b506102e66103fb366004611e9e565b610c52565b34801561040c57600080fd5b506102ce61041b366004611fc5565b610cb4565b34801561042c57600080fd5b506102ce61043b366004611e9e565b610d34565b34801561044c57600080fd5b5061029661045b366004611e9e565b610d63565b34801561046c57600080fd5b506102e661047b36600461200e565b610d75565b34801561048c57600080fd5b506102ce610e06565b3480156104a157600080fd5b50600e5461023f9060ff1681565b3480156104bb57600080fd5b506102ce6104ca366004612039565b610e3c565b3480156104db57600080fd5b506102ce6104ea366004611e9e565b610e79565b3480156104fb57600080fd5b506102e660095481565b34801561051157600080fd5b506007546001600160a01b0316610296565b34801561052f57600080fd5b506102ce61053e366004611e9e565b610ea8565b34801561054f57600080fd5b50610269610ed7565b6102ce610566366004611e9e565b610ee6565b34801561057757600080fd5b506102ce610586366004612054565b6110c1565b34801561059757600080fd5b506102ce6105a6366004611e9e565b611185565b3480156105b757600080fd5b506102ce6105c6366004612087565b6111b4565b3480156105d757600080fd5b506102ce6105e6366004611e9e565b6111ed565b3480156105f757600080fd5b50610269610606366004611e9e565b6112b1565b34801561061757600080fd5b506102ce61137e565b34801561062c57600080fd5b5061023f61063b366004612103565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561067557600080fd5b506102ce61068436600461200e565b6113b7565b34801561069557600080fd5b5060105461023f9060ff1681565b60006001600160e01b031982166380ac58cd60e01b14806106d457506001600160e01b03198216635b5e139f60e01b145b806106ef57506001600160e01b0319821663780e9d6360e01b145b8061070a57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461071f9061212d565b80601f016020809104026020016040519081016040528092919081815260200182805461074b9061212d565b80156107985780601f1061076d57610100808354040283529160200191610798565b820191906000526020600020905b81548152906001019060200180831161077b57829003601f168201915b5050505050905090565b60006107af826000541190565b6108165760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061083d82610d63565b9050806001600160a01b0316836001600160a01b0316036108ab5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161080d565b336001600160a01b03821614806108c757506108c7813361063b565b6109395760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161080d565b610944838383611452565b505050565b6109448383836114ae565b600061095f83610d75565b82106109b85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161080d565b600080549080805b83811015610a4f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a1357805192505b876001600160a01b0316836001600160a01b031603610a4657868403610a3f5750935061070a92505050565b6001909301925b506001016109c0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161080d565b6007546001600160a01b03163314610ad95760405162461bcd60e51b815260040161080d90612167565b600260085403610b2b5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161080d565b600260085547610b4f73be4bbfdbbd69c6dadc5590b62d5b32fd68b0ab4782611793565b506001600855565b80600081118015610b6a5750600d548111155b610bad5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161080d565b600a5481600054610bbe91906121b2565b1115610c035760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161080d565b6007546001600160a01b03163314610c2d5760405162461bcd60e51b815260040161080d90612167565b61094483836118ac565b610944838383604051806020016040528060008152506111b4565b600080548210610cb05760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161080d565b5090565b6007546001600160a01b03163314610cde5760405162461bcd60e51b815260040161080d90612167565b60105460ff1615610d245760405162461bcd60e51b815260206004820152601060248201526f4d657461646174612066726f7a656e2160801b604482015260640161080d565b600b610d308282612218565b5050565b6007546001600160a01b03163314610d5e5760405162461bcd60e51b815260040161080d90612167565b600d55565b6000610d6e826118c6565b5192915050565b60006001600160a01b038216610de15760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161080d565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610e305760405162461bcd60e51b815260040161080d90612167565b610e3a600061199d565b565b6007546001600160a01b03163314610e665760405162461bcd60e51b815260040161080d90612167565b600e805460ff1916911515919091179055565b6007546001600160a01b03163314610ea35760405162461bcd60e51b815260040161080d90612167565b600f55565b6007546001600160a01b03163314610ed25760405162461bcd60e51b815260040161080d90612167565b600955565b60606002805461071f9061212d565b80600081118015610ef95750600d548111155b610f3c5760405162461bcd60e51b8152602060048201526014602482015273496e76616c6964206d696e7420616d6f756e742160601b604482015260640161080d565b600a5481600054610f4d91906121b2565b1115610f925760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161080d565b600e5460ff16610fda5760405162461bcd60e51b815260206004820152601360248201527253616c65206973206e6f74206163746976652160681b604482015260640161080d565b600082600954610fea91906122d8565b9050600f5460005410156110715733600090815260116020526040812054600c5461101591906122f7565b9050801561106f5780841061104c5760095461103190826122d8565b61103b90836122f7565b915061104733826119ef565b61106f565b60095461105990856122d8565b61106390836122f7565b915061106f33856119ef565b505b803410156110b75760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b604482015260640161080d565b61094433846118ac565b336001600160a01b038316036111195760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161080d565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6007546001600160a01b031633146111af5760405162461bcd60e51b815260040161080d90612167565b600c55565b6111bf8484846114ae565b6111cb84848484611a20565b6111e75760405162461bcd60e51b815260040161080d9061230e565b50505050565b6007546001600160a01b031633146112175760405162461bcd60e51b815260040161080d90612167565b600a5481106112615760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b604482015260640161080d565b6000548110156112ac5760405162461bcd60e51b8152602060048201526016602482015275496e76616c6964206e6577206d617820737570706c7960501b604482015260640161080d565b600a55565b60606112be826000541190565b6113225760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161080d565b600061132c611b22565b9050805160000361134c5760405180602001604052806000815250611377565b8061135684611b31565b604051602001611367929190612361565b6040516020818303038152906040525b9392505050565b6007546001600160a01b031633146113a85760405162461bcd60e51b815260040161080d90612167565b6010805460ff19166001179055565b6007546001600160a01b031633146113e15760405162461bcd60e51b815260040161080d90612167565b6001600160a01b0381166114465760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161080d565b61144f8161199d565b50565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114b9826118c6565b80519091506000906001600160a01b0316336001600160a01b031614806114f05750336114e5846107a2565b6001600160a01b0316145b8061150257508151611502903361063b565b90508061156c5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161080d565b846001600160a01b031682600001516001600160a01b0316146115e05760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161080d565b6001600160a01b0384166116445760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161080d565b6116546000848460000151611452565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611749576116fc816000541190565b15611749578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b804710156117e35760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604482015260640161080d565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611830576040519150601f19603f3d011682016040523d82523d6000602084013e611835565b606091505b50509050806109445760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161080d565b610d30828260405180602001604052806000815250611c32565b60408051808201909152600080825260208201526118e5826000541190565b6119445760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161080d565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611993579392505050565b5060001901611946565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b03821660009081526011602052604081208054839290611a179084906121b2565b90915550505050565b60006001600160a01b0384163b15611b1657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a64903390899088908890600401612390565b6020604051808303816000875af1925050508015611a9f575060408051601f3d908101601f19168201909252611a9c918101906123cd565b60015b611afc573d808015611acd576040519150601f19603f3d011682016040523d82523d6000602084013e611ad2565b606091505b508051600003611af45760405162461bcd60e51b815260040161080d9061230e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611b1a565b5060015b949350505050565b6060600b805461071f9061212d565b606081600003611b585750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b825780611b6c816123ea565b9150611b7b9050600a83612419565b9150611b5c565b60008167ffffffffffffffff811115611b9d57611b9d611f39565b6040519080825280601f01601f191660200182016040528015611bc7576020820181803683370190505b5090505b8415611b1a57611bdc6001836122f7565b9150611be9600a8661242d565b611bf49060306121b2565b60f81b818381518110611c0957611c09612441565b60200101906001600160f81b031916908160001a905350611c2b600a86612419565b9450611bcb565b61094483838360016000546001600160a01b038516611c9d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161080d565b83600003611cfe5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b606482015260840161080d565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611df75760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611deb57611dcf6000888488611a20565b611deb5760405162461bcd60e51b815260040161080d9061230e565b60019182019101611d7c565b5060005561178c565b6001600160e01b03198116811461144f57600080fd5b600060208284031215611e2857600080fd5b813561137781611e00565b60005b83811015611e4e578181015183820152602001611e36565b838111156111e75750506000910152565b60008151808452611e77816020860160208601611e33565b601f01601f19169290920160200192915050565b6020815260006113776020830184611e5f565b600060208284031215611eb057600080fd5b5035919050565b80356001600160a01b0381168114611ece57600080fd5b919050565b60008060408385031215611ee657600080fd5b611eef83611eb7565b946020939093013593505050565b600080600060608486031215611f1257600080fd5b611f1b84611eb7565b9250611f2960208501611eb7565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611f6a57611f6a611f39565b604051601f8501601f19908116603f01168101908282118183101715611f9257611f92611f39565b81604052809350858152868686011115611fab57600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611fd757600080fd5b813567ffffffffffffffff811115611fee57600080fd5b8201601f81018413611fff57600080fd5b611b1a84823560208401611f4f565b60006020828403121561202057600080fd5b61137782611eb7565b80358015158114611ece57600080fd5b60006020828403121561204b57600080fd5b61137782612029565b6000806040838503121561206757600080fd5b61207083611eb7565b915061207e60208401612029565b90509250929050565b6000806000806080858703121561209d57600080fd5b6120a685611eb7565b93506120b460208601611eb7565b925060408501359150606085013567ffffffffffffffff8111156120d757600080fd5b8501601f810187136120e857600080fd5b6120f787823560208401611f4f565b91505092959194509250565b6000806040838503121561211657600080fd5b61211f83611eb7565b915061207e60208401611eb7565b600181811c9082168061214157607f821691505b60208210810361216157634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156121c5576121c561219c565b500190565b601f82111561094457600081815260208120601f850160051c810160208610156121f15750805b601f850160051c820191505b81811015612210578281556001016121fd565b505050505050565b815167ffffffffffffffff81111561223257612232611f39565b61224681612240845461212d565b846121ca565b602080601f83116001811461227b57600084156122635750858301515b600019600386901b1c1916600185901b178555612210565b600085815260208120601f198616915b828110156122aa5788860151825594840194600190910190840161228b565b50858210156122c85787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60008160001904831182151516156122f2576122f261219c565b500290565b6000828210156123095761230961219c565b500390565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351612373818460208801611e33565b835190830190612387818360208801611e33565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123c390830184611e5f565b9695505050505050565b6000602082840312156123df57600080fd5b815161137781611e00565b6000600182016123fc576123fc61219c565b5060010190565b634e487b7160e01b600052601260045260246000fd5b60008261242857612428612403565b500490565b60008261243c5761243c612403565b500690565b634e487b7160e01b600052603260045260246000fdfea2646970667358221220af107cbf018e6a04fb638a3cec713ea9697cda88a31621a8bb81201cc1a71bcd64736f6c634300080f0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000001aa535d3d0c000000000000000000000000000000000000000000000000000000000000000138800000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000003e8000000000000000000000000000000000000000000000000000000000000005568747470733a2f2f73756e62697264736e66746170692e636f2f6170692f76312f6d657461646174612f6765743f636f6c6c656374696f6e3d363237653665316630303437333766303237333964343638266e6f3d0000000000000000000000
-----Decoded View---------------
Arg [0] : price (uint256): 7500000000000000
Arg [1] : maxSupply (uint256): 5000
Arg [2] : baseUri (string): https://sunbirdsnftapi.co/api/v1/metadata/get?collection=627e6e1f004737f02739d468&no=
Arg [3] : freeMintAllowance (uint256): 10
Arg [4] : maxMintPerTx (uint256): 10
Arg [5] : isSaleActive (bool): True
Arg [6] : freeMintIsAllowedUntil (uint256): 1000
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000001aa535d3d0c000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000055
Arg [8] : 68747470733a2f2f73756e62697264736e66746170692e636f2f6170692f7631
Arg [9] : 2f6d657461646174612f6765743f636f6c6c656374696f6e3d36323765366531
Arg [10] : 6630303437333766303237333964343638266e6f3d0000000000000000000000
Deployed Bytecode Sourcemap
42045:4119:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28892:372;;;;;;;;;;-1:-1:-1;28892:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;28892:372:0;;;;;;;;30778:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;32340:214::-;;;;;;;;;;-1:-1:-1;32340:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;32340:214:0;1528:203:1;31861:413:0;;;;;;;;;;-1:-1:-1;31861:413:0;;;;;:::i;:::-;;:::i;:::-;;42278:37;;;;;;;;;;;;;;;;;;;2319:25:1;;;2307:2;2292:18;42278:37:0;2173:177:1;42230:41:0;;;;;;;;;;;;;;;;27149:100;;;;;;;;;;-1:-1:-1;27202:7:0;27229:12;27149:100;;33216:162;;;;;;;;;;-1:-1:-1;33216:162:0;;;;;:::i;:::-;;:::i;27813:1007::-;;;;;;;;;;-1:-1:-1;27813:1007:0;;;;;:::i;:::-;;:::i;42168:25::-;;;;;;;;;;;;;;;;45990:171;;;;;;;;;;;;;:::i;42355:41::-;;;;;;;;;;;;;;;;45719:144;;;;;;;;;;-1:-1:-1;45719:144:0;;;;;:::i;:::-;;:::i;33449:177::-;;;;;;;;;;-1:-1:-1;33449:177:0;;;;;:::i;:::-;;:::i;27326:187::-;;;;;;;;;;-1:-1:-1;27326:187:0;;;;;:::i;:::-;;:::i;43726:169::-;;;;;;;;;;-1:-1:-1;43726:169:0;;;;;:::i;:::-;;:::i;44052:122::-;;;;;;;;;;-1:-1:-1;44052:122:0;;;;;:::i;:::-;;:::i;30587:124::-;;;;;;;;;;-1:-1:-1;30587:124:0;;;;;:::i;:::-;;:::i;29328:221::-;;;;;;;;;;-1:-1:-1;29328:221:0;;;;;:::i;:::-;;:::i;24597:103::-;;;;;;;;;;;;;:::i;42322:26::-;;;;;;;;;;-1:-1:-1;42322:26:0;;;;;;;;44182:109;;;;;;;;;;-1:-1:-1;44182:109:0;;;;;:::i;:::-;;:::i;44299:154::-;;;;;;;;;;-1:-1:-1;44299:154:0;;;;;:::i;:::-;;:::i;42141:20::-;;;;;;;;;;;;;;;;23946:87;;;;;;;;;;-1:-1:-1;24019:6:0;;-1:-1:-1;;;;;24019:6:0;23946:87;;43360:96;;;;;;;;;;-1:-1:-1;43360:96:0;;;;;:::i;:::-;;:::i;30947:104::-;;;;;;;;;;;;;:::i;44832:879::-;;;;;;:::i;:::-;;:::i;32626:288::-;;;;;;;;;;-1:-1:-1;32626:288:0;;;;;:::i;:::-;;:::i;43903:141::-;;;;;;;;;;-1:-1:-1;43903:141:0;;;;;:::i;:::-;;:::i;33697:355::-;;;;;;;;;;-1:-1:-1;33697:355:0;;;;;:::i;:::-;;:::i;43464:254::-;;;;;;;;;;-1:-1:-1;43464:254:0;;;;;:::i;:::-;;:::i;31122:335::-;;;;;;;;;;-1:-1:-1;31122:335:0;;;;;:::i;:::-;;:::i;44461:86::-;;;;;;;;;;;;;:::i;32985:164::-;;;;;;;;;;-1:-1:-1;32985:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;33106:25:0;;;33082:4;33106:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;32985:164;24855:201;;;;;;;;;;-1:-1:-1;24855:201:0;;;;;:::i;:::-;;:::i;42440:27::-;;;;;;;;;;-1:-1:-1;42440:27:0;;;;;;;;28892:372;28994:4;-1:-1:-1;;;;;;29031:40:0;;-1:-1:-1;;;29031:40:0;;:105;;-1:-1:-1;;;;;;;29088:48:0;;-1:-1:-1;;;29088:48:0;29031:105;:172;;;-1:-1:-1;;;;;;;29153:50:0;;-1:-1:-1;;;29153:50:0;29031:172;:225;;;-1:-1:-1;;;;;;;;;;4403:40:0;;;29220:36;29011:245;28892:372;-1:-1:-1;;28892:372:0:o;30778:100::-;30832:13;30865:5;30858:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30778:100;:::o;32340:214::-;32408:7;32436:16;32444:7;34364:4;34398:12;-1:-1:-1;34388:22:0;34307:111;32436:16;32428:74;;;;-1:-1:-1;;;32428:74:0;;6237:2:1;32428:74:0;;;6219:21:1;6276:2;6256:18;;;6249:30;6315:34;6295:18;;;6288:62;-1:-1:-1;;;6366:18:1;;;6359:43;6419:19;;32428:74:0;;;;;;;;;-1:-1:-1;32522:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;32522:24:0;;32340:214::o;31861:413::-;31934:13;31950:24;31966:7;31950:15;:24::i;:::-;31934:40;;31999:5;-1:-1:-1;;;;;31993:11:0;:2;-1:-1:-1;;;;;31993:11:0;;31985:58;;;;-1:-1:-1;;;31985:58:0;;6651:2:1;31985:58:0;;;6633:21:1;6690:2;6670:18;;;6663:30;6729:34;6709:18;;;6702:62;-1:-1:-1;;;6780:18:1;;;6773:32;6822:19;;31985:58:0;6449:398:1;31985:58:0;22807:10;-1:-1:-1;;;;;32078:21:0;;;;:62;;-1:-1:-1;32103:37:0;32120:5;22807:10;32985:164;:::i;32103:37::-;32056:169;;;;-1:-1:-1;;;32056:169:0;;7054:2:1;32056:169:0;;;7036:21:1;7093:2;7073:18;;;7066:30;7132:34;7112:18;;;7105:62;7203:27;7183:18;;;7176:55;7248:19;;32056:169:0;6852:421:1;32056:169:0;32238:28;32247:2;32251:7;32260:5;32238:8;:28::i;:::-;31923:351;31861:413;;:::o;33216:162::-;33342:28;33352:4;33358:2;33362:7;33342:9;:28::i;27813:1007::-;27902:7;27938:16;27948:5;27938:9;:16::i;:::-;27930:5;:24;27922:71;;;;-1:-1:-1;;;27922:71:0;;7480:2:1;27922:71:0;;;7462:21:1;7519:2;7499:18;;;7492:30;7558:34;7538:18;;;7531:62;-1:-1:-1;;;7609:18:1;;;7602:32;7651:19;;27922:71:0;7278:398:1;27922:71:0;28004:22;27229:12;;;28004:22;;28267:466;28287:14;28283:1;:18;28267:466;;;28327:31;28361:14;;;:11;:14;;;;;;;;;28327:48;;;;;;;;;-1:-1:-1;;;;;28327:48:0;;;;;-1:-1:-1;;;28327:48:0;;;;;;;;;;;;28398:28;28394:111;;28471:14;;;-1:-1:-1;28394:111:0;28548:5;-1:-1:-1;;;;;28527:26:0;:17;-1:-1:-1;;;;;28527:26:0;;28523:195;;28597:5;28582:11;:20;28578:85;;-1:-1:-1;28638:1:0;-1:-1:-1;28631:8:0;;-1:-1:-1;;;28631:8:0;28578:85;28685:13;;;;;28523:195;-1:-1:-1;28303:3:0;;28267:466;;;-1:-1:-1;28756:56:0;;-1:-1:-1;;;28756:56:0;;7883:2:1;28756:56:0;;;7865:21:1;7922:2;7902:18;;;7895:30;7961:34;7941:18;;;7934:62;-1:-1:-1;;;8012:18:1;;;8005:44;8066:19;;28756:56:0;7681:410:1;45990:171:0;24019:6;;-1:-1:-1;;;;;24019:6:0;22807:10;24166:23;24158:68;;;;-1:-1:-1;;;24158:68:0;;;;;;;:::i;:::-;2553:1:::1;3151:7;;:19:::0;3143:63:::1;;;::::0;-1:-1:-1;;;3143:63:0;;8659:2:1;3143:63:0::1;::::0;::::1;8641:21:1::0;8698:2;8678:18;;;8671:30;8737:33;8717:18;;;8710:61;8788:18;;3143:63:0::1;8457:355:1::0;3143:63:0::1;2553:1;3284:7;:18:::0;46069:21:::2;46103:50;45939:42;46069:21:::0;46103:17:::2;:50::i;:::-;-1:-1:-1::0;2509:1:0::1;3463:7;:22:::0;45990:171::o;45719:144::-;45794:11;44653:1;44639:11;:15;:56;;;;;44673:22;;44658:11;:37;;44639:56;44631:89;;;;-1:-1:-1;;;44631:89:0;;9019:2:1;44631:89:0;;;9001:21:1;9058:2;9038:18;;;9031:30;-1:-1:-1;;;9077:18:1;;;9070:50;9137:18;;44631:89:0;8817:344:1;44631:89:0;44769:10;;44754:11;44739:12;;:26;;;;:::i;:::-;:40;;44731:73;;;;-1:-1:-1;;;44731:73:0;;9633:2:1;44731:73:0;;;9615:21:1;9672:2;9652:18;;;9645:30;-1:-1:-1;;;9691:18:1;;;9684:50;9751:18;;44731:73:0;9431:344:1;44731:73:0;24019:6;;-1:-1:-1;;;;;24019:6:0;22807:10;24166:23:::1;24158:68;;;;-1:-1:-1::0;;;24158:68:0::1;;;;;;;:::i;:::-;45828:27:::2;45838:3;45843:11;45828:9;:27::i;33449:177::-:0;33579:39;33596:4;33602:2;33606:7;33579:39;;;;;;;;;;;;:16;:39::i;27326:187::-;27393:7;27229:12;;27421:5;:21;27413:69;;;;-1:-1:-1;;;27413:69:0;;9982:2:1;27413:69:0;;;9964:21:1;10021:2;10001:18;;;9994:30;10060:34;10040:18;;;10033:62;-1:-1:-1;;;10111:18:1;;;10104:33;10154:19;;27413:69:0;9780:399:1;27413:69:0;-1:-1:-1;27500:5:0;27326:187::o;43726:169::-;24019:6;;-1:-1:-1;;;;;24019:6:0;22807:10;24166:23;24158:68;;;;-1:-1:-1;;;24158:68:0;;;;;;;:::i;:::-;43815:15:::1;::::0;::::1;;43814:16;43806:45;;;::::0;-1:-1:-1;;;43806:45:0;;10386:2:1;43806:45:0::1;::::0;::::1;10368:21:1::0;10425:2;10405:18;;;10398:30;-1:-1:-1;;;10444:18:1;;;10437:46;10500:18;;43806:45:0::1;10184:340:1::0;43806:45:0::1;43862:8;:25;43873:14:::0;43862:8;:25:::1;:::i;:::-;;43726:169:::0;:::o;44052:122::-;24019:6;;-1:-1:-1;;;;;24019:6:0;22807:10;24166:23;24158:68;;;;-1:-1:-1;;;24158:68:0;;;;;;;:::i;:::-;44129:22:::1;:37:::0;44052:122::o;30587:124::-;30651:7;30678:20;30690:7;30678:11;:20::i;:::-;:25;;30587:124;-1:-1:-1;;30587:124:0:o;29328:221::-;29392:7;-1:-1:-1;;;;;29420:19:0;;29412:75;;;;-1:-1:-1;;;29412:75:0;;12935:2:1;29412:75:0;;;12917:21:1;12974:2;12954:18;;;12947:30;13013:34;12993:18;;;12986:62;-1:-1:-1;;;13064:18:1;;;13057:41;13115:19;;29412:75:0;12733:407:1;29412:75:0;-1:-1:-1;;;;;;29513:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;29513:27:0;;29328:221::o;24597:103::-;24019:6;;-1:-1:-1;;;;;24019:6:0;22807:10;24166:23;24158:68;;;;-1:-1:-1;;;24158:68:0;;;;;;;:::i;:::-;24662:30:::1;24689:1;24662:18;:30::i;:::-;24597:103::o:0;44182:109::-;24019:6;;-1:-1:-1;;;;;24019:6:0;22807:10;24166:23;24158:68;;;;-1:-1:-1;;;24158:68:0;;;;;;;:::i;:::-;44254:14:::1;:29:::0;;-1:-1:-1;;44254:29:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44182:109::o;44299:154::-;24019:6;;-1:-1:-1;;;;;24019:6:0;22807:10;24166:23;24158:68;;;;-1:-1:-1;;;24158:68:0;;;;;;;:::i;:::-;44394:26:::1;:51:::0;44299:154::o;43360:96::-;24019:6;;-1:-1:-1;;;;;24019:6:0;22807:10;24166:23;24158:68;;;;-1:-1:-1;;;24158:68:0;;;;;;;:::i;:::-;43429:5:::1;:19:::0;43360:96::o;30947:104::-;31003:13;31036:7;31029:14;;;;;:::i;44832:879::-;44897:11;44653:1;44639:11;:15;:56;;;;;44673:22;;44658:11;:37;;44639:56;44631:89;;;;-1:-1:-1;;;44631:89:0;;9019:2:1;44631:89:0;;;9001:21:1;9058:2;9038:18;;;9031:30;-1:-1:-1;;;9077:18:1;;;9070:50;9137:18;;44631:89:0;8817:344:1;44631:89:0;44769:10;;44754:11;44739:12;;:26;;;;:::i;:::-;:40;;44731:73;;;;-1:-1:-1;;;44731:73:0;;9633:2:1;44731:73:0;;;9615:21:1;9672:2;9652:18;;;9645:30;-1:-1:-1;;;9691:18:1;;;9684:50;9751:18;;44731:73:0;9431:344:1;44731:73:0;44929:14:::1;::::0;::::1;;44921:46;;;::::0;-1:-1:-1;;;44921:46:0;;13347:2:1;44921:46:0::1;::::0;::::1;13329:21:1::0;13386:2;13366:18;;;13359:30;-1:-1:-1;;;13405:18:1;;;13398:49;13464:18;;44921:46:0::1;13145:343:1::0;44921:46:0::1;44980:13;45004:11;44996:5;;:19;;;;:::i;:::-;44980:35;;45047:26;;45032:12;;:41;45028:566;;;45164:10;45090:25;45147:28:::0;;;:16:::1;:28;::::0;;;;;45118:26:::1;::::0;:57:::1;::::0;45147:28;45118:57:::1;:::i;:::-;45090:85:::0;-1:-1:-1;45194:21:0;;45190:393:::1;;45255:17;45240:11;:32;45236:332;;45326:5;::::0;45306:25:::1;::::0;:17;:25:::1;:::i;:::-;45297:34;::::0;;::::1;:::i;:::-;;;45354:50;45374:10;45386:17;45354:19;:50::i;:::-;45236:332;;;45476:5;::::0;45462:19:::1;::::0;:11;:19:::1;:::i;:::-;45453:28;::::0;;::::1;:::i;:::-;;;45504:44;45524:10;45536:11;45504:19;:44::i;:::-;45075:519;45028:566;45627:5;45614:9;:18;;45606:50;;;::::0;-1:-1:-1;;;45606:50:0;;13998:2:1;45606:50:0::1;::::0;::::1;13980:21:1::0;14037:2;14017:18;;;14010:30;-1:-1:-1;;;14056:18:1;;;14049:49;14115:18;;45606:50:0::1;13796:343:1::0;45606:50:0::1;45669:34;45679:10;45691:11;45669:9;:34::i;32626:288::-:0;22807:10;-1:-1:-1;;;;;32721:24:0;;;32713:63;;;;-1:-1:-1;;;32713:63:0;;14346:2:1;32713:63:0;;;14328:21:1;14385:2;14365:18;;;14358:30;14424:28;14404:18;;;14397:56;14470:18;;32713:63:0;14144:350:1;32713:63:0;22807:10;32789:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;32789:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;32789:53:0;;;;;;;;;;32858:48;;540:41:1;;;32789:42:0;;22807:10;32858:48;;513:18:1;32858:48:0;;;;;;;32626:288;;:::o;43903:141::-;24019:6;;-1:-1:-1;;;;;24019:6:0;22807:10;24166:23;24158:68;;;;-1:-1:-1;;;24158:68:0;;;;;;;:::i;:::-;43990:26:::1;:46:::0;43903:141::o;33697:355::-;33856:28;33866:4;33872:2;33876:7;33856:9;:28::i;:::-;33917:48;33940:4;33946:2;33950:7;33959:5;33917:22;:48::i;:::-;33895:149;;;;-1:-1:-1;;;33895:149:0;;;;;;;:::i;:::-;33697:355;;;;:::o;43464:254::-;24019:6;;-1:-1:-1;;;;;24019:6:0;22807:10;24166:23;24158:68;;;;-1:-1:-1;;;24158:68:0;;;;;;;:::i;:::-;43563:10:::1;;43548:12;:25;43540:60;;;::::0;-1:-1:-1;;;43540:60:0;;15121:2:1;43540:60:0::1;::::0;::::1;15103:21:1::0;15160:2;15140:18;;;15133:30;-1:-1:-1;;;15179:18:1;;;15172:52;15241:18;;43540:60:0::1;14919:346:1::0;43540:60:0::1;43635:12;;43619;:28;;43611:63;;;::::0;-1:-1:-1;;;43611:63:0;;15121:2:1;43611:63:0::1;::::0;::::1;15103:21:1::0;15160:2;15140:18;;;15133:30;-1:-1:-1;;;15179:18:1;;;15172:52;15241:18;;43611:63:0::1;14919:346:1::0;43611:63:0::1;43685:10;:25:::0;43464:254::o;31122:335::-;31195:13;31229:16;31237:7;34364:4;34398:12;-1:-1:-1;34388:22:0;34307:111;31229:16;31221:76;;;;-1:-1:-1;;;31221:76:0;;15472:2:1;31221:76:0;;;15454:21:1;15511:2;15491:18;;;15484:30;15550:34;15530:18;;;15523:62;-1:-1:-1;;;15601:18:1;;;15594:45;15656:19;;31221:76:0;15270:411:1;31221:76:0;31310:21;31334:10;:8;:10::i;:::-;31310:34;;31368:7;31362:21;31387:1;31362:26;:87;;;;;;;;;;;;;;;;;31415:7;31424:18;:7;:16;:18::i;:::-;31398:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;31362:87;31355:94;31122:335;-1:-1:-1;;;31122:335:0:o;44461:86::-;24019:6;;-1:-1:-1;;;;;24019:6:0;22807:10;24166:23;24158:68;;;;-1:-1:-1;;;24158:68:0;;;;;;;:::i;:::-;44517:15:::1;:22:::0;;-1:-1:-1;;44517:22:0::1;44535:4;44517:22;::::0;;44461:86::o;24855:201::-;24019:6;;-1:-1:-1;;;;;24019:6:0;22807:10;24166:23;24158:68;;;;-1:-1:-1;;;24158:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;24944:22:0;::::1;24936:73;;;::::0;-1:-1:-1;;;24936:73:0;;16363:2:1;24936:73:0::1;::::0;::::1;16345:21:1::0;16402:2;16382:18;;;16375:30;16441:34;16421:18;;;16414:62;-1:-1:-1;;;16492:18:1;;;16485:36;16538:19;;24936:73:0::1;16161:402:1::0;24936:73:0::1;25020:28;25039:8;25020:18;:28::i;:::-;24855:201:::0;:::o;39227:196::-;39342:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39342:29:0;-1:-1:-1;;;;;39342:29:0;;;;;;;;;39387:28;;39342:24;;39387:28;;;;;;;39227:196;;;:::o;37107:2002::-;37222:35;37260:20;37272:7;37260:11;:20::i;:::-;37335:18;;37222:58;;-1:-1:-1;37293:22:0;;-1:-1:-1;;;;;37319:34:0;22807:10;-1:-1:-1;;;;;37319:34:0;;:87;;;-1:-1:-1;22807:10:0;37370:20;37382:7;37370:11;:20::i;:::-;-1:-1:-1;;;;;37370:36:0;;37319:87;:154;;;-1:-1:-1;37440:18:0;;37423:50;;22807:10;32985:164;:::i;37423:50::-;37293:181;;37495:17;37487:80;;;;-1:-1:-1;;;37487:80:0;;16770:2:1;37487:80:0;;;16752:21:1;16809:2;16789:18;;;16782:30;16848:34;16828:18;;;16821:62;-1:-1:-1;;;16899:18:1;;;16892:48;16957:19;;37487:80:0;16568:414:1;37487:80:0;37610:4;-1:-1:-1;;;;;37588:26:0;:13;:18;;;-1:-1:-1;;;;;37588:26:0;;37580:77;;;;-1:-1:-1;;;37580:77:0;;17189:2:1;37580:77:0;;;17171:21:1;17228:2;17208:18;;;17201:30;17267:34;17247:18;;;17240:62;-1:-1:-1;;;17318:18:1;;;17311:36;17364:19;;37580:77:0;16987:402:1;37580:77:0;-1:-1:-1;;;;;37676:16:0;;37668:66;;;;-1:-1:-1;;;37668:66:0;;17596:2:1;37668:66:0;;;17578:21:1;17635:2;17615:18;;;17608:30;17674:34;17654:18;;;17647:62;-1:-1:-1;;;17725:18:1;;;17718:35;17770:19;;37668:66:0;17394:401:1;37668:66:0;37855:49;37872:1;37876:7;37885:13;:18;;;37855:8;:49::i;:::-;-1:-1:-1;;;;;38200:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;38200:31:0;;;-1:-1:-1;;;;;38200:31:0;;;-1:-1:-1;;38200:31:0;;;;;;;38246:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;38246:29:0;;;;;;;;;;;;;38292:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;38337:61:0;;;;-1:-1:-1;;;38382:15:0;38337:61;;;;;;38672:11;;;38702:24;;;;;:29;38672:11;;38702:29;38698:295;;38770:20;38778:11;34364:4;34398:12;-1:-1:-1;34388:22:0;34307:111;38770:20;38766:212;;;38847:18;;;38815:24;;;:11;:24;;;;;;;;:50;;38930:28;;;;38888:70;;-1:-1:-1;;;38888:70:0;-1:-1:-1;;;;;;38888:70:0;;;-1:-1:-1;;;;;38815:50:0;;;38888:70;;;;;;;38766:212;38175:829;39040:7;39036:2;-1:-1:-1;;;;;39021:27:0;39030:4;-1:-1:-1;;;;;39021:27:0;;;;;;;;;;;39059:42;37211:1898;;37107:2002;;;:::o;8614:317::-;8729:6;8704:21;:31;;8696:73;;;;-1:-1:-1;;;8696:73:0;;18002:2:1;8696:73:0;;;17984:21:1;18041:2;18021:18;;;18014:30;18080:31;18060:18;;;18053:59;18129:18;;8696:73:0;17800:353:1;8696:73:0;8783:12;8801:9;-1:-1:-1;;;;;8801:14:0;8823:6;8801:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8782:52;;;8853:7;8845:78;;;;-1:-1:-1;;;8845:78:0;;18570:2:1;8845:78:0;;;18552:21:1;18609:2;18589:18;;;18582:30;18648:34;18628:18;;;18621:62;18719:28;18699:18;;;18692:56;18765:19;;8845:78:0;18368:422:1;34426:104:0;34495:27;34505:2;34509:8;34495:27;;;;;;;;;;;;:9;:27::i;29988:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;30091:16:0;30099:7;34364:4;34398:12;-1:-1:-1;34388:22:0;34307:111;30091:16;30083:71;;;;-1:-1:-1;;;30083:71:0;;18997:2:1;30083:71:0;;;18979:21:1;19036:2;19016:18;;;19009:30;19075:34;19055:18;;;19048:62;-1:-1:-1;;;19126:18:1;;;19119:40;19176:19;;30083:71:0;18795:406:1;30083:71:0;30212:7;30192:245;30259:31;30293:17;;;:11;:17;;;;;;;;;30259:51;;;;;;;;;-1:-1:-1;;;;;30259:51:0;;;;;-1:-1:-1;;;30259:51:0;;;;;;;;;;;;30333:28;30329:93;;30393:9;29988:537;-1:-1:-1;;;29988:537:0:o;30329:93::-;-1:-1:-1;;;30232:6:0;30192:245;;25216:191;25309:6;;;-1:-1:-1;;;;;25326:17:0;;;-1:-1:-1;;;;;;25326:17:0;;;;;;;25359:40;;25309:6;;;25326:17;25309:6;;25359:40;;25290:16;;25359:40;25279:128;25216:191;:::o;43069:120::-;-1:-1:-1;;;;;43148:24:0;;;;;;:16;:24;;;;;:33;;43176:5;;43148:24;:33;;43176:5;;43148:33;:::i;:::-;;;;-1:-1:-1;;;;43069:120:0:o;39988:804::-;40143:4;-1:-1:-1;;;;;40164:13:0;;7615:20;7663:8;40160:625;;40200:72;;-1:-1:-1;;;40200:72:0;;-1:-1:-1;;;;;40200:36:0;;;;;:72;;22807:10;;40251:4;;40257:7;;40266:5;;40200:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40200:72:0;;;;;;;;-1:-1:-1;;40200:72:0;;;;;;;;;;;;:::i;:::-;;;40196:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40446:6;:13;40463:1;40446:18;40442:273;;40489:61;;-1:-1:-1;;;40489:61:0;;;;;;;:::i;40442:273::-;40665:6;40659:13;40650:6;40646:2;40642:15;40635:38;40196:534;-1:-1:-1;;;;;;40323:55:0;-1:-1:-1;;;40323:55:0;;-1:-1:-1;40316:62:0;;40160:625;-1:-1:-1;40769:4:0;40160:625;39988:804;;;;;;:::o;43220:109::-;43280:13;43313:8;43306:15;;;;;:::i;4769:723::-;4825:13;5046:5;5055:1;5046:10;5042:53;;-1:-1:-1;;5073:10:0;;;;;;;;;;;;-1:-1:-1;;;5073:10:0;;;;;4769:723::o;5042:53::-;5120:5;5105:12;5161:78;5168:9;;5161:78;;5194:8;;;;:::i;:::-;;-1:-1:-1;5217:10:0;;-1:-1:-1;5225:2:0;5217:10;;:::i;:::-;;;5161:78;;;5249:19;5281:6;5271:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5271:17:0;;5249:39;;5299:154;5306:10;;5299:154;;5333:11;5343:1;5333:11;;:::i;:::-;;-1:-1:-1;5402:10:0;5410:2;5402:5;:10;:::i;:::-;5389:24;;:2;:24;:::i;:::-;5376:39;;5359:6;5366;5359:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5359:56:0;;;;;;;;-1:-1:-1;5430:11:0;5439:2;5430:11;;:::i;:::-;;;5299:154;;34893:163;35016:32;35022:2;35026:8;35036:5;35043:4;35454:20;35477:12;-1:-1:-1;;;;;35508:16:0;;35500:62;;;;-1:-1:-1;;;35500:62:0;;21218:2:1;35500:62:0;;;21200:21:1;21257:2;21237:18;;;21230:30;21296:34;21276:18;;;21269:62;-1:-1:-1;;;21347:18:1;;;21340:31;21388:19;;35500:62:0;21016:397:1;35500:62:0;35581:8;35593:1;35581:13;35573:66;;;;-1:-1:-1;;;35573:66:0;;21620:2:1;35573:66:0;;;21602:21:1;21659:2;21639:18;;;21632:30;21698:34;21678:18;;;21671:62;-1:-1:-1;;;21749:18:1;;;21742:38;21797:19;;35573:66:0;21418:404:1;35573:66:0;-1:-1:-1;;;;;35991:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;35991:45:0;;-1:-1:-1;;;;;35991:45:0;;;;;;;;;;36051:50;;;;;;;;;;;;;;36118:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;36168:66:0;;;;-1:-1:-1;;;36218:15:0;36168:66;;;;;;;36118:25;;36303:415;36323:8;36319:1;:12;36303:415;;;36362:38;;36387:12;;-1:-1:-1;;;;;36362:38:0;;;36379:1;;36362:38;;36379:1;;36362:38;36423:4;36419:249;;;36486:59;36517:1;36521:2;36525:12;36539:5;36486:22;:59::i;:::-;36452:196;;;;-1:-1:-1;;;36452:196:0;;;;;;;:::i;:::-;36688:14;;;;;36333:3;36303:415;;;-1:-1:-1;36734:12:0;:27;36785:60;33697:355;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:127::-;2749:10;2744:3;2740:20;2737:1;2730:31;2780:4;2777:1;2770:15;2804:4;2801:1;2794:15;2820:632;2885:5;2915:18;2956:2;2948:6;2945:14;2942:40;;;2962:18;;:::i;:::-;3037:2;3031:9;3005:2;3091:15;;-1:-1:-1;;3087:24:1;;;3113:2;3083:33;3079:42;3067:55;;;3137:18;;;3157:22;;;3134:46;3131:72;;;3183:18;;:::i;:::-;3223:10;3219:2;3212:22;3252:6;3243:15;;3282:6;3274;3267:22;3322:3;3313:6;3308:3;3304:16;3301:25;3298:45;;;3339:1;3336;3329:12;3298:45;3389:6;3384:3;3377:4;3369:6;3365:17;3352:44;3444:1;3437:4;3428:6;3420;3416:19;3412:30;3405:41;;;;2820:632;;;;;:::o;3457:451::-;3526:6;3579:2;3567:9;3558:7;3554:23;3550:32;3547:52;;;3595:1;3592;3585:12;3547:52;3635:9;3622:23;3668:18;3660:6;3657:30;3654:50;;;3700:1;3697;3690:12;3654:50;3723:22;;3776:4;3768:13;;3764:27;-1:-1:-1;3754:55:1;;3805:1;3802;3795:12;3754:55;3828:74;3894:7;3889:2;3876:16;3871:2;3867;3863:11;3828:74;:::i;3913:186::-;3972:6;4025:2;4013:9;4004:7;4000:23;3996:32;3993:52;;;4041:1;4038;4031:12;3993:52;4064:29;4083:9;4064:29;:::i;4104:160::-;4169:20;;4225:13;;4218:21;4208:32;;4198:60;;4254:1;4251;4244:12;4269:180;4325:6;4378:2;4366:9;4357:7;4353:23;4349:32;4346:52;;;4394:1;4391;4384:12;4346:52;4417:26;4433:9;4417:26;:::i;4454:254::-;4519:6;4527;4580:2;4568:9;4559:7;4555:23;4551:32;4548:52;;;4596:1;4593;4586:12;4548:52;4619:29;4638:9;4619:29;:::i;:::-;4609:39;;4667:35;4698:2;4687:9;4683:18;4667:35;:::i;:::-;4657:45;;4454:254;;;;;:::o;4713:667::-;4808:6;4816;4824;4832;4885:3;4873:9;4864:7;4860:23;4856:33;4853:53;;;4902:1;4899;4892:12;4853:53;4925:29;4944:9;4925:29;:::i;:::-;4915:39;;4973:38;5007:2;4996:9;4992:18;4973:38;:::i;:::-;4963:48;;5058:2;5047:9;5043:18;5030:32;5020:42;;5113:2;5102:9;5098:18;5085:32;5140:18;5132:6;5129:30;5126:50;;;5172:1;5169;5162:12;5126:50;5195:22;;5248:4;5240:13;;5236:27;-1:-1:-1;5226:55:1;;5277:1;5274;5267:12;5226:55;5300:74;5366:7;5361:2;5348:16;5343:2;5339;5335:11;5300:74;:::i;:::-;5290:84;;;4713:667;;;;;;;:::o;5385:260::-;5453:6;5461;5514:2;5502:9;5493:7;5489:23;5485:32;5482:52;;;5530:1;5527;5520:12;5482:52;5553:29;5572:9;5553:29;:::i;:::-;5543:39;;5601:38;5635:2;5624:9;5620:18;5601:38;:::i;5650:380::-;5729:1;5725:12;;;;5772;;;5793:61;;5847:4;5839:6;5835:17;5825:27;;5793:61;5900:2;5892:6;5889:14;5869:18;5866:38;5863:161;;5946:10;5941:3;5937:20;5934:1;5927:31;5981:4;5978:1;5971:15;6009:4;6006:1;5999:15;5863:161;;5650:380;;;:::o;8096:356::-;8298:2;8280:21;;;8317:18;;;8310:30;8376:34;8371:2;8356:18;;8349:62;8443:2;8428:18;;8096:356::o;9166:127::-;9227:10;9222:3;9218:20;9215:1;9208:31;9258:4;9255:1;9248:15;9282:4;9279:1;9272:15;9298:128;9338:3;9369:1;9365:6;9362:1;9359:13;9356:39;;;9375:18;;:::i;:::-;-1:-1:-1;9411:9:1;;9298:128::o;10655:545::-;10757:2;10752:3;10749:11;10746:448;;;10793:1;10818:5;10814:2;10807:17;10863:4;10859:2;10849:19;10933:2;10921:10;10917:19;10914:1;10910:27;10904:4;10900:38;10969:4;10957:10;10954:20;10951:47;;;-1:-1:-1;10992:4:1;10951:47;11047:2;11042:3;11038:12;11035:1;11031:20;11025:4;11021:31;11011:41;;11102:82;11120:2;11113:5;11110:13;11102:82;;;11165:17;;;11146:1;11135:13;11102:82;;;11106:3;;;10655:545;;;:::o;11376:1352::-;11502:3;11496:10;11529:18;11521:6;11518:30;11515:56;;;11551:18;;:::i;:::-;11580:97;11670:6;11630:38;11662:4;11656:11;11630:38;:::i;:::-;11624:4;11580:97;:::i;:::-;11732:4;;11796:2;11785:14;;11813:1;11808:663;;;;12515:1;12532:6;12529:89;;;-1:-1:-1;12584:19:1;;;12578:26;12529:89;-1:-1:-1;;11333:1:1;11329:11;;;11325:24;11321:29;11311:40;11357:1;11353:11;;;11308:57;12631:81;;11778:944;;11808:663;10602:1;10595:14;;;10639:4;10626:18;;-1:-1:-1;;11844:20:1;;;11962:236;11976:7;11973:1;11970:14;11962:236;;;12065:19;;;12059:26;12044:42;;12157:27;;;;12125:1;12113:14;;;;11992:19;;11962:236;;;11966:3;12226:6;12217:7;12214:19;12211:201;;;12287:19;;;12281:26;-1:-1:-1;;12370:1:1;12366:14;;;12382:3;12362:24;12358:37;12354:42;12339:58;12324:74;;12211:201;-1:-1:-1;;;;;12458:1:1;12442:14;;;12438:22;12425:36;;-1:-1:-1;11376:1352:1:o;13493:168::-;13533:7;13599:1;13595;13591:6;13587:14;13584:1;13581:21;13576:1;13569:9;13562:17;13558:45;13555:71;;;13606:18;;:::i;:::-;-1:-1:-1;13646:9:1;;13493:168::o;13666:125::-;13706:4;13734:1;13731;13728:8;13725:34;;;13739:18;;:::i;:::-;-1:-1:-1;13776:9:1;;13666:125::o;14499:415::-;14701:2;14683:21;;;14740:2;14720:18;;;14713:30;14779:34;14774:2;14759:18;;14752:62;-1:-1:-1;;;14845:2:1;14830:18;;14823:49;14904:3;14889:19;;14499:415::o;15686:470::-;15865:3;15903:6;15897:13;15919:53;15965:6;15960:3;15953:4;15945:6;15941:17;15919:53;:::i;:::-;16035:13;;15994:16;;;;16057:57;16035:13;15994:16;16091:4;16079:17;;16057:57;:::i;:::-;16130:20;;15686:470;-1:-1:-1;;;;15686:470:1:o;19622:489::-;-1:-1:-1;;;;;19891:15:1;;;19873:34;;19943:15;;19938:2;19923:18;;19916:43;19990:2;19975:18;;19968:34;;;20038:3;20033:2;20018:18;;20011:31;;;19816:4;;20059:46;;20085:19;;20077:6;20059:46;:::i;:::-;20051:54;19622:489;-1:-1:-1;;;;;;19622:489:1:o;20116:249::-;20185:6;20238:2;20226:9;20217:7;20213:23;20209:32;20206:52;;;20254:1;20251;20244:12;20206:52;20286:9;20280:16;20305:30;20329:5;20305:30;:::i;20370:135::-;20409:3;20430:17;;;20427:43;;20450:18;;:::i;:::-;-1:-1:-1;20497:1:1;20486:13;;20370:135::o;20510:127::-;20571:10;20566:3;20562:20;20559:1;20552:31;20602:4;20599:1;20592:15;20626:4;20623:1;20616:15;20642:120;20682:1;20708;20698:35;;20713:18;;:::i;:::-;-1:-1:-1;20747:9:1;;20642:120::o;20767:112::-;20799:1;20825;20815:35;;20830:18;;:::i;:::-;-1:-1:-1;20864:9:1;;20767:112::o;20884:127::-;20945:10;20940:3;20936:20;20933:1;20926:31;20976:4;20973:1;20966:15;21000:4;20997:1;20990:15
Swarm Source
ipfs://af107cbf018e6a04fb638a3cec713ea9697cda88a31621a8bb81201cc1a71bcd
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.