ERC-721
Overview
Max Total Supply
1,032 JOWEYS
Holders
220
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 JOWEYSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Joweys
Compiler Version
v0.8.11+commit.d7f03943
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-16 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.11; // (((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( // (((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( // (((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((( // (((((((((((((((((((((((((((((((@@@@@@@@%@%(((%%%@((((((((((((((((((((((((((((((( // (((((((((((((((((((((@@@@@@@@@@@@@@@@@@@@@@@@@,@@@@@@@@@@@@@@@(((((((((((((((((( // ((((((((((((((((((@((@(@@@@@@@@@@@@@@@@@,@@@@@@@@@@@@@@#%(@@(@@@@@%((((((((((((( // (((((((((((((((((((@@@@@@,@@,@@@.@@.@@@@@@@,(@@@@@@@@@@@@@@@@@@@@@@@(((((((((((( // (((((((((((((((((@@%@@@@@@@@@@@@@,,@@@@,(@@@#.@@,@@@@@@@@@@#@@@@@@@@@((((((((((( // (((((((((((((((((@@@@@@@@@@@@.,@@@@@@@@.@,@.,@@,@,@@@.@@@@,@@@@@@@.@@((((((((((( // ((((((((((((((((((@@#,@@@@@@@@,(##(,,,,,,,,,@@@@/,,,,,,,,,,,,,,,,,,@@((((((((((( // (((((((((((((((((@@@,,,,,.@@@,,,.@@@,,,,,,,,,,,.@@@@@@@@,,,,,,,,,,,,@((((((((((( // ((((((((((((((((@@,,@@,,@%,,,,,,,,,.@,,,,,,,,,@@(,,,,,,,,@,,,,,,,@@@@((((((((((( // (((((((((((((((@@.,,,.@@@.,,,,,,,,,,,@,@@@@@@@,,,,,,,,,,,@,,,@@@,,,@@((((((((((( // (((((((((((((((@,,,,,,,,@,,@ ### @,,@@,,,,,,@,,@( ## (@,@@,,,,,,,,@@((((((((((( // ((((((((((((((@@,,,,,,,..@,,.,,,,,.,@.,,,,,,,.@.,,,@*,,,@.,,,,,,,,@@(((((((((((( // ((((((((((((((@@,,,,,,,,,,,@@@@@@@%,,,@,,,,,@,,@@&(,,(@@,,,,,,,,,,@@(((((((((((( // ((((((((((((((@,,,,,,,,,,,,,,,,,,,,,.@@,,,,@@,,,,,,,,,,,,,,,,,,,,,@@(((((((((((( // ((((((((((((((@,,,,,,,,,,,,,,,,,,,,,@@,,,,,,@,,,,,,,,,,,,,,,,,,,,,@@(((((((((((( // ((((((((((((((@,,,,,,,,,,,,,,,,,,,,,@@.,,,,@@,,,,,,,,,,,,,,,,,,,,,@((((((((((((( // (((((((((((((@@,,,,,,,,,,,,,,,,,,/((@(((#(#((///,,,,,,,,,,,,,,,,,@@((((((((((((( // ((((((((((((((@,,,,,,,,,,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@.,.,,,.@@#((((((((((((( // ((((((((((((((@,,,,,,,,.@@@@,.,,%#%%#%%%%%%%%%##@%%%,,@@@@@#,,,@@((((((((((((((( // ((((((((((((((@@,,,,,,,,,,,,,,,,..*##%%%%%%%%%*,,,,,,,,,,.,,,,@@(((((((((((((((( // (((((((((((((((@@,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,@@((((((((((((((((( // ((((((((((((((((((@@@@.,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,.@@@((((((((((((((((((( // ((((((((((((((((((((((((%@@@@@@@@@@@@@%((,,,,,,,,,.%@@@@%((((((((((((((((((((((( // ((((((((((((((((((((((((((((@@,,,,,,,,,,,.,,.,,,,.@@(((((((((((((((((((((((((((( // ((((((((((((((((((((((((((((@@,,,,,,,,.,,,,,,.,,,,@@(((((((((((((((((((((((((((( // ((((((((((((((((((((((((@@@@@@@@@@@@,,,,,,...,.@@@@@@@@@@((((((((((((((((((((((( // (((((((((((((((@@@@@(,,,,,,,,.,.,,,,............,,,,.,,,,,*@@@(((((((((((((((((( // (((((((((((@@,.,...........................................,,,.@@((((((((((((((( // ((((((((@@.,,...................................................,.@@(((((((((((( // https://twitter.com/joweynft /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @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); } /** * @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); } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @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); } } /** * @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 virtual override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public 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 {} } /** * @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); } } // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } contract Joweys is ERC721A, Ownable { using Address for address; using SafeMath for uint256; using Strings for uint256; string private constant baseURI = "https://storage.googleapis.com/joweys/metadata/"; uint256 public constant mintPrice = 0.0169 ether; uint256 public constant maxSupply = 5555; uint256 public constant freeMintAmount = 1000; uint256 public constant maxMintPerTxn = 20; uint256 public constant maxFreeMintPerWallet = 5; uint256 public numMintedFree = 0; mapping(address => uint256) public addressMintedFree; bool public saleActive = false; address private constant dev0address = 0xF13484c3E25253e1c67d9D5E20C09dC65BE565A8; address private constant dev1address = 0x3672CE47a3CE8Fc9E65d9bcf4F6fD768470f5484; constructor() ERC721A("Joweys", "JOWEYS") { _safeMint(dev0address, 1); addressMintedFree[dev0address] += 1; numMintedFree += 1; _safeMint(dev1address, 1); addressMintedFree[dev1address] += 1; numMintedFree += 1; } function setSale(bool value) external onlyOwner { saleActive = value; } function mint(uint256 amount) external payable { require(saleActive == true, "Sale is not active"); require(amount <= maxMintPerTxn, "Transaction will exceed maximum mint amount per txn"); require(amount > 0, "Amount to mint was 0"); require(totalSupply() + amount <= maxSupply, "Exceeds maximum supply"); // check if we're still in free mint for this wallet if ((numMintedFree + amount <= freeMintAmount) && (addressMintedFree[msg.sender] + amount <= maxFreeMintPerWallet)) { require(msg.value == 0, "Do not send ETH with free mint"); addressMintedFree[msg.sender] += amount; numMintedFree += amount; // public sale } else { require(msg.value == mintPrice.mul(amount), "Must provide exact required ETH"); } _safeMint(msg.sender, amount); } function withdraw() external onlyOwner { uint balance = address(this).balance; require(balance > 0, "Balance should be more then zero"); // payout for dev0 (60%) (bool success1, ) = (dev0address).call{value: balance * 3 / 5}(""); require(success1, "Failed to send ether"); // payout for dev1 (40%) (bool success2, ) = (dev1address).call{value: balance * 2 / 5}(""); require(success2, "Failed to send ether"); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); return string(abi.encodePacked(baseURI, tokenId.toString(), ".json")); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedFree","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":"freeMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxFreeMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerTxn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numMintedFree","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"value","type":"bool"}],"name":"setSale","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
60806040526000600855600a805460ff191690553480156200002057600080fd5b50604051806040016040528060068152602001654a6f7765797360d01b815250604051806040016040528060068152602001654a4f5745595360d01b815250816001908051906020019062000077929190620005e3565b5080516200008d906002906020840190620005e3565b505050620000aa620000a4620001dc60201b60201c565b620001e0565b620000cb73f13484c3e25253e1c67d9d5e20c09dc65be565a8600162000232565b73f13484c3e25253e1c67d9d5e20c09dc65be565a8600090815260096020527f8ad9ebcd776f866a0e4d82c5fcbddbef17410eec42fa3766d5fbf98bcc1e1f4a8054600192906200011e90849062000689565b925050819055506001600860008282546200013a919062000689565b90915550620001619050733672ce47a3ce8fc9e65d9bcf4f6fd768470f5484600162000232565b733672ce47a3ce8fc9e65d9bcf4f6fd768470f5484600090815260096020527fdd3afa946cb02f5d45a72f51c6e9f8f68d217548e228bc32c5806901552f039b805460019290620001b490849062000689565b92505081905550600160086000828254620001d0919062000689565b909155506200079b9050565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620002548282604051806020016040528060008152506200025860201b60201c565b5050565b6200026783838360016200026c565b505050565b6000546001600160a01b038516620002d55760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084015b60405180910390fd5b83620003355760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b6064820152608401620002cc565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b426001600160401b0316021790915581905b858110156200046f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4831562000462576200040960008884886200047a565b620004625760405162461bcd60e51b815260206004820152603360248201526000805160206200278a83398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401620002cc565b60019182019101620003b2565b506000555050505050565b60006200049b846001600160a01b0316620005d460201b6200120b1760201c565b15620005c857604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290620004d5903390899088908890600401620006b0565b6020604051808303816000875af192505050801562000513575060408051601f3d908101601f1916820190925262000510918101906200072b565b60015b620005ad573d80801562000544576040519150601f19603f3d011682016040523d82523d6000602084013e62000549565b606091505b508051620005a55760405162461bcd60e51b815260206004820152603360248201526000805160206200278a83398151915260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b6064820152608401620002cc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050620005cc565b5060015b949350505050565b6001600160a01b03163b151590565b828054620005f1906200075e565b90600052602060002090601f01602090048101928262000615576000855562000660565b82601f106200063057805160ff191683800117855562000660565b8280016001018555821562000660579182015b828111156200066057825182559160200191906001019062000643565b506200066e92915062000672565b5090565b5b808211156200066e576000815560010162000673565b60008219821115620006ab57634e487b7160e01b600052601160045260246000fd5b500190565b600060018060a01b038087168352602081871681850152856040850152608060608501528451915081608085015260005b82811015620006ff5785810182015185820160a001528101620006e1565b828111156200071257600060a084870101525b5050601f01601f19169190910160a00195945050505050565b6000602082840312156200073e57600080fd5b81516001600160e01b0319811681146200075757600080fd5b9392505050565b600181811c908216806200077357607f821691505b602082108114156200079557634e487b7160e01b600052602260045260246000fd5b50919050565b611fdf80620007ab6000396000f3fe6080604052600436106101cd5760003560e01c806368428a1b116100f7578063a0712d6811610095578063caa8078f11610064578063caa8078f146104f5578063d5abeb011461050a578063e985e9c514610520578063f2fde38b1461056957600080fd5b8063a0712d6814610482578063a22cb46514610495578063b88d4fde146104b5578063c87b56dd146104d557600080fd5b806377b9d46c116100d157806377b9d46c14610424578063845bb3bb1461043a5780638da5cb5b1461044f57806395d89b411461046d57600080fd5b806368428a1b146103d557806370a08231146103ef578063715018a61461040f57600080fd5b80632f745c591161016f57806342842e0e1161013e57806342842e0e1461035a5780634f6ccce71461037a5780636352211e1461039a5780636817c76c146103ba57600080fd5b80632f745c59146102e25780633a467e3d146103025780633ccfd60b1461031857806342066ee71461032d57600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd146102835780631d2e5a3a146102a257806323b872dd146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611a93565b610589565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105f6565b6040516101fe9190611b08565b34801561023557600080fd5b50610249610244366004611b1b565b610688565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611b50565b610718565b005b34801561028f57600080fd5b506000545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611b8a565b610830565b3480156102ce57600080fd5b506102816102dd366004611ba5565b61086d565b3480156102ee57600080fd5b506102946102fd366004611b50565b610878565b34801561030e57600080fd5b506102946103e881565b34801561032457600080fd5b506102816109d5565b34801561033957600080fd5b50610294610348366004611be1565b60096020526000908152604090205481565b34801561036657600080fd5b50610281610375366004611ba5565b610bbb565b34801561038657600080fd5b50610294610395366004611b1b565b610bd6565b3480156103a657600080fd5b506102496103b5366004611b1b565b610c38565b3480156103c657600080fd5b50610294663c0a75e0b4400081565b3480156103e157600080fd5b50600a546101f29060ff1681565b3480156103fb57600080fd5b5061029461040a366004611be1565b610c4a565b34801561041b57600080fd5b50610281610cdb565b34801561043057600080fd5b5061029460085481565b34801561044657600080fd5b50610294600581565b34801561045b57600080fd5b506007546001600160a01b0316610249565b34801561047957600080fd5b5061021c610d11565b610281610490366004611b1b565b610d20565b3480156104a157600080fd5b506102816104b0366004611bfc565b610fbb565b3480156104c157600080fd5b506102816104d0366004611c45565b611080565b3480156104e157600080fd5b5061021c6104f0366004611b1b565b6110b9565b34801561050157600080fd5b50610294601481565b34801561051657600080fd5b506102946115b381565b34801561052c57600080fd5b506101f261053b366004611d21565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561057557600080fd5b50610281610584366004611be1565b611173565b60006001600160e01b031982166380ac58cd60e01b14806105ba57506001600160e01b03198216635b5e139f60e01b145b806105d557506001600160e01b0319821663780e9d6360e01b145b806105f057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461060590611d4b565b80601f016020809104026020016040519081016040528092919081815260200182805461063190611d4b565b801561067e5780601f106106535761010080835404028352916020019161067e565b820191906000526020600020905b81548152906001019060200180831161066157829003601f168201915b5050505050905090565b6000610695826000541190565b6106fc5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061072382610c38565b9050806001600160a01b0316836001600160a01b031614156107925760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106f3565b336001600160a01b03821614806107ae57506107ae813361053b565b6108205760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106f3565b61082b83838361121a565b505050565b6007546001600160a01b0316331461085a5760405162461bcd60e51b81526004016106f390611d86565b600a805460ff1916911515919091179055565b61082b838383611276565b600061088383610c4a565b82106108dc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106f3565b600080549080805b83811015610975576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561093757805192505b876001600160a01b0316836001600160a01b0316141561096c5786841415610965575093506105f092505050565b6001909301925b506001016108e4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106f3565b6007546001600160a01b031633146109ff5760405162461bcd60e51b81526004016106f390611d86565b4780610a4d5760405162461bcd60e51b815260206004820181905260248201527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f60448201526064016106f3565b600073f13484c3e25253e1c67d9d5e20c09dc65be565a86005610a71846003611dd1565b610a7b9190611e06565b604051600081818185875af1925050503d8060008114610ab7576040519150601f19603f3d011682016040523d82523d6000602084013e610abc565b606091505b5050905080610b045760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321032ba3432b960611b60448201526064016106f3565b6000733672ce47a3ce8fc9e65d9bcf4f6fd768470f54846005610b28856002611dd1565b610b329190611e06565b604051600081818185875af1925050503d8060008114610b6e576040519150601f19603f3d011682016040523d82523d6000602084013e610b73565b606091505b505090508061082b5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321032ba3432b960611b60448201526064016106f3565b61082b83838360405180602001604052806000815250611080565b600080548210610c345760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106f3565b5090565b6000610c438261155b565b5192915050565b60006001600160a01b038216610cb65760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106f3565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d055760405162461bcd60e51b81526004016106f390611d86565b610d0f6000611632565b565b60606002805461060590611d4b565b600a5460ff161515600114610d6c5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016106f3565b6014811115610dd95760405162461bcd60e51b815260206004820152603360248201527f5472616e73616374696f6e2077696c6c20657863656564206d6178696d756d2060448201527236b4b73a1030b6b7bab73a103832b9103a3c3760691b60648201526084016106f3565b60008111610e205760405162461bcd60e51b81526020600482015260146024820152730416d6f756e7420746f206d696e742077617320360641b60448201526064016106f3565b6115b381610e2d60005490565b610e379190611e1a565b1115610e7e5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016106f3565b6103e881600854610e8f9190611e1a565b11158015610eb9575033600090815260096020526040902054600590610eb6908390611e1a565b11155b15610f4f573415610f0c5760405162461bcd60e51b815260206004820152601e60248201527f446f206e6f742073656e642045544820776974682066726565206d696e74000060448201526064016106f3565b3360009081526009602052604081208054839290610f2b908490611e1a565b925050819055508060086000828254610f449190611e1a565b90915550610fae9050565b610f60663c0a75e0b4400082611684565b3414610fae5760405162461bcd60e51b815260206004820152601f60248201527f4d7573742070726f76696465206578616374207265717569726564204554480060448201526064016106f3565b610fb83382611697565b50565b6001600160a01b0382163314156110145760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106f3565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61108b848484611276565b611097848484846116b5565b6110b35760405162461bcd60e51b81526004016106f390611e32565b50505050565b60606110c6826000541190565b61112a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f3565b6040518060600160405280602f8152602001611f7b602f913961114c836117b4565b60405160200161115d929190611e85565b6040516020818303038152906040529050919050565b6007546001600160a01b0316331461119d5760405162461bcd60e51b81526004016106f390611d86565b6001600160a01b0381166112025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f3565b610fb881611632565b6001600160a01b03163b151590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112818261155b565b80519091506000906001600160a01b0316336001600160a01b031614806112b85750336112ad84610688565b6001600160a01b0316145b806112ca575081516112ca903361053b565b9050806113345760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106f3565b846001600160a01b031682600001516001600160a01b0316146113a85760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106f3565b6001600160a01b03841661140c5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106f3565b61141c600084846000015161121a565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611511576114c4816000541190565b15611511578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261157a826000541190565b6115d95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106f3565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611628579392505050565b50600019016115db565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006116908284611dd1565b9392505050565b6116b18282604051806020016040528060008152506118b2565b5050565b60006001600160a01b0384163b156117a857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116f9903390899088908890600401611ec4565b6020604051808303816000875af1925050508015611734575060408051601f3d908101601f1916820190925261173191810190611f01565b60015b61178e573d808015611762576040519150601f19603f3d011682016040523d82523d6000602084013e611767565b606091505b5080516117865760405162461bcd60e51b81526004016106f390611e32565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117ac565b5060015b949350505050565b6060816117d85750506040805180820190915260018152600360fc1b602082015290565b8160005b811561180257806117ec81611f1e565b91506117fb9050600a83611e06565b91506117dc565b60008167ffffffffffffffff81111561181d5761181d611c2f565b6040519080825280601f01601f191660200182016040528015611847576020820181803683370190505b5090505b84156117ac5761185c600183611f39565b9150611869600a86611f50565b611874906030611e1a565b60f81b81838151811061188957611889611f64565b60200101906001600160f81b031916908160001a9053506118ab600a86611e06565b945061184b565b61082b83838360016000546001600160a01b03851661191d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106f3565b8361197b5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106f3565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611a745760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611a6857611a4c60008884886116b5565b611a685760405162461bcd60e51b81526004016106f390611e32565b600191820191016119f9565b50600055611554565b6001600160e01b031981168114610fb857600080fd5b600060208284031215611aa557600080fd5b813561169081611a7d565b60005b83811015611acb578181015183820152602001611ab3565b838111156110b35750506000910152565b60008151808452611af4816020860160208601611ab0565b601f01601f19169290920160200192915050565b6020815260006116906020830184611adc565b600060208284031215611b2d57600080fd5b5035919050565b80356001600160a01b0381168114611b4b57600080fd5b919050565b60008060408385031215611b6357600080fd5b611b6c83611b34565b946020939093013593505050565b80358015158114611b4b57600080fd5b600060208284031215611b9c57600080fd5b61169082611b7a565b600080600060608486031215611bba57600080fd5b611bc384611b34565b9250611bd160208501611b34565b9150604084013590509250925092565b600060208284031215611bf357600080fd5b61169082611b34565b60008060408385031215611c0f57600080fd5b611c1883611b34565b9150611c2660208401611b7a565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611c5b57600080fd5b611c6485611b34565b9350611c7260208601611b34565b925060408501359150606085013567ffffffffffffffff80821115611c9657600080fd5b818701915087601f830112611caa57600080fd5b813581811115611cbc57611cbc611c2f565b604051601f8201601f19908116603f01168101908382118183101715611ce457611ce4611c2f565b816040528281528a6020848701011115611cfd57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611d3457600080fd5b611d3d83611b34565b9150611c2660208401611b34565b600181811c90821680611d5f57607f821691505b60208210811415611d8057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611deb57611deb611dbb565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e1557611e15611df0565b500490565b60008219821115611e2d57611e2d611dbb565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351611e97818460208801611ab0565b835190830190611eab818360208801611ab0565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ef790830184611adc565b9695505050505050565b600060208284031215611f1357600080fd5b815161169081611a7d565b6000600019821415611f3257611f32611dbb565b5060010190565b600082821015611f4b57611f4b611dbb565b500390565b600082611f5f57611f5f611df0565b500690565b634e487b7160e01b600052603260045260246000fdfe68747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f6a6f776579732f6d657461646174612fa2646970667358221220d6946e5b7c3728d40f731bc0d88b71aec03659d625d35a7977e667a1a368ac7164736f6c634300080b0033455243373231413a207472616e7366657220746f206e6f6e2045524337323152
Deployed Bytecode
0x6080604052600436106101cd5760003560e01c806368428a1b116100f7578063a0712d6811610095578063caa8078f11610064578063caa8078f146104f5578063d5abeb011461050a578063e985e9c514610520578063f2fde38b1461056957600080fd5b8063a0712d6814610482578063a22cb46514610495578063b88d4fde146104b5578063c87b56dd146104d557600080fd5b806377b9d46c116100d157806377b9d46c14610424578063845bb3bb1461043a5780638da5cb5b1461044f57806395d89b411461046d57600080fd5b806368428a1b146103d557806370a08231146103ef578063715018a61461040f57600080fd5b80632f745c591161016f57806342842e0e1161013e57806342842e0e1461035a5780634f6ccce71461037a5780636352211e1461039a5780636817c76c146103ba57600080fd5b80632f745c59146102e25780633a467e3d146103025780633ccfd60b1461031857806342066ee71461032d57600080fd5b8063095ea7b3116101ab578063095ea7b31461026157806318160ddd146102835780631d2e5a3a146102a257806323b872dd146102c257600080fd5b806301ffc9a7146101d257806306fdde0314610207578063081812fc14610229575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611a93565b610589565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b5061021c6105f6565b6040516101fe9190611b08565b34801561023557600080fd5b50610249610244366004611b1b565b610688565b6040516001600160a01b0390911681526020016101fe565b34801561026d57600080fd5b5061028161027c366004611b50565b610718565b005b34801561028f57600080fd5b506000545b6040519081526020016101fe565b3480156102ae57600080fd5b506102816102bd366004611b8a565b610830565b3480156102ce57600080fd5b506102816102dd366004611ba5565b61086d565b3480156102ee57600080fd5b506102946102fd366004611b50565b610878565b34801561030e57600080fd5b506102946103e881565b34801561032457600080fd5b506102816109d5565b34801561033957600080fd5b50610294610348366004611be1565b60096020526000908152604090205481565b34801561036657600080fd5b50610281610375366004611ba5565b610bbb565b34801561038657600080fd5b50610294610395366004611b1b565b610bd6565b3480156103a657600080fd5b506102496103b5366004611b1b565b610c38565b3480156103c657600080fd5b50610294663c0a75e0b4400081565b3480156103e157600080fd5b50600a546101f29060ff1681565b3480156103fb57600080fd5b5061029461040a366004611be1565b610c4a565b34801561041b57600080fd5b50610281610cdb565b34801561043057600080fd5b5061029460085481565b34801561044657600080fd5b50610294600581565b34801561045b57600080fd5b506007546001600160a01b0316610249565b34801561047957600080fd5b5061021c610d11565b610281610490366004611b1b565b610d20565b3480156104a157600080fd5b506102816104b0366004611bfc565b610fbb565b3480156104c157600080fd5b506102816104d0366004611c45565b611080565b3480156104e157600080fd5b5061021c6104f0366004611b1b565b6110b9565b34801561050157600080fd5b50610294601481565b34801561051657600080fd5b506102946115b381565b34801561052c57600080fd5b506101f261053b366004611d21565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561057557600080fd5b50610281610584366004611be1565b611173565b60006001600160e01b031982166380ac58cd60e01b14806105ba57506001600160e01b03198216635b5e139f60e01b145b806105d557506001600160e01b0319821663780e9d6360e01b145b806105f057506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461060590611d4b565b80601f016020809104026020016040519081016040528092919081815260200182805461063190611d4b565b801561067e5780601f106106535761010080835404028352916020019161067e565b820191906000526020600020905b81548152906001019060200180831161066157829003601f168201915b5050505050905090565b6000610695826000541190565b6106fc5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061072382610c38565b9050806001600160a01b0316836001600160a01b031614156107925760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016106f3565b336001600160a01b03821614806107ae57506107ae813361053b565b6108205760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016106f3565b61082b83838361121a565b505050565b6007546001600160a01b0316331461085a5760405162461bcd60e51b81526004016106f390611d86565b600a805460ff1916911515919091179055565b61082b838383611276565b600061088383610c4a565b82106108dc5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016106f3565b600080549080805b83811015610975576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561093757805192505b876001600160a01b0316836001600160a01b0316141561096c5786841415610965575093506105f092505050565b6001909301925b506001016108e4565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b60648201526084016106f3565b6007546001600160a01b031633146109ff5760405162461bcd60e51b81526004016106f390611d86565b4780610a4d5760405162461bcd60e51b815260206004820181905260248201527f42616c616e63652073686f756c64206265206d6f7265207468656e207a65726f60448201526064016106f3565b600073f13484c3e25253e1c67d9d5e20c09dc65be565a86005610a71846003611dd1565b610a7b9190611e06565b604051600081818185875af1925050503d8060008114610ab7576040519150601f19603f3d011682016040523d82523d6000602084013e610abc565b606091505b5050905080610b045760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321032ba3432b960611b60448201526064016106f3565b6000733672ce47a3ce8fc9e65d9bcf4f6fd768470f54846005610b28856002611dd1565b610b329190611e06565b604051600081818185875af1925050503d8060008114610b6e576040519150601f19603f3d011682016040523d82523d6000602084013e610b73565b606091505b505090508061082b5760405162461bcd60e51b81526020600482015260146024820152732330b4b632b2103a379039b2b7321032ba3432b960611b60448201526064016106f3565b61082b83838360405180602001604052806000815250611080565b600080548210610c345760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016106f3565b5090565b6000610c438261155b565b5192915050565b60006001600160a01b038216610cb65760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016106f3565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b03163314610d055760405162461bcd60e51b81526004016106f390611d86565b610d0f6000611632565b565b60606002805461060590611d4b565b600a5460ff161515600114610d6c5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b60448201526064016106f3565b6014811115610dd95760405162461bcd60e51b815260206004820152603360248201527f5472616e73616374696f6e2077696c6c20657863656564206d6178696d756d2060448201527236b4b73a1030b6b7bab73a103832b9103a3c3760691b60648201526084016106f3565b60008111610e205760405162461bcd60e51b81526020600482015260146024820152730416d6f756e7420746f206d696e742077617320360641b60448201526064016106f3565b6115b381610e2d60005490565b610e379190611e1a565b1115610e7e5760405162461bcd60e51b815260206004820152601660248201527545786365656473206d6178696d756d20737570706c7960501b60448201526064016106f3565b6103e881600854610e8f9190611e1a565b11158015610eb9575033600090815260096020526040902054600590610eb6908390611e1a565b11155b15610f4f573415610f0c5760405162461bcd60e51b815260206004820152601e60248201527f446f206e6f742073656e642045544820776974682066726565206d696e74000060448201526064016106f3565b3360009081526009602052604081208054839290610f2b908490611e1a565b925050819055508060086000828254610f449190611e1a565b90915550610fae9050565b610f60663c0a75e0b4400082611684565b3414610fae5760405162461bcd60e51b815260206004820152601f60248201527f4d7573742070726f76696465206578616374207265717569726564204554480060448201526064016106f3565b610fb83382611697565b50565b6001600160a01b0382163314156110145760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016106f3565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61108b848484611276565b611097848484846116b5565b6110b35760405162461bcd60e51b81526004016106f390611e32565b50505050565b60606110c6826000541190565b61112a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106f3565b6040518060600160405280602f8152602001611f7b602f913961114c836117b4565b60405160200161115d929190611e85565b6040516020818303038152906040529050919050565b6007546001600160a01b0316331461119d5760405162461bcd60e51b81526004016106f390611d86565b6001600160a01b0381166112025760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106f3565b610fb881611632565b6001600160a01b03163b151590565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112818261155b565b80519091506000906001600160a01b0316336001600160a01b031614806112b85750336112ad84610688565b6001600160a01b0316145b806112ca575081516112ca903361053b565b9050806113345760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b60648201526084016106f3565b846001600160a01b031682600001516001600160a01b0316146113a85760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016106f3565b6001600160a01b03841661140c5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016106f3565b61141c600084846000015161121a565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160e01b031916909117600160a01b4267ffffffffffffffff1602179055908601808352912054909116611511576114c4816000541190565b15611511578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b604080518082019091526000808252602082015261157a826000541190565b6115d95760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016106f3565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611628579392505050565b50600019016115db565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60006116908284611dd1565b9392505050565b6116b18282604051806020016040528060008152506118b2565b5050565b60006001600160a01b0384163b156117a857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906116f9903390899088908890600401611ec4565b6020604051808303816000875af1925050508015611734575060408051601f3d908101601f1916820190925261173191810190611f01565b60015b61178e573d808015611762576040519150601f19603f3d011682016040523d82523d6000602084013e611767565b606091505b5080516117865760405162461bcd60e51b81526004016106f390611e32565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117ac565b5060015b949350505050565b6060816117d85750506040805180820190915260018152600360fc1b602082015290565b8160005b811561180257806117ec81611f1e565b91506117fb9050600a83611e06565b91506117dc565b60008167ffffffffffffffff81111561181d5761181d611c2f565b6040519080825280601f01601f191660200182016040528015611847576020820181803683370190505b5090505b84156117ac5761185c600183611f39565b9150611869600a86611f50565b611874906030611e1a565b60f81b81838151811061188957611889611f64565b60200101906001600160f81b031916908160001a9053506118ab600a86611e06565b945061184b565b61082b83838360016000546001600160a01b03851661191d5760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016106f3565b8361197b5760405162461bcd60e51b815260206004820152602860248201527f455243373231413a207175616e74697479206d75737420626520677265617465604482015267072207468616e20360c41b60648201526084016106f3565b6001600160a01b03851660008181526004602090815260408083208054600160801b6001600160801b031982166001600160801b039283168c01831690811782900483168c01909216021790558483526003909152812080546001600160e01b031916909217600160a01b4267ffffffffffffffff16021790915581905b85811015611a745760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611a6857611a4c60008884886116b5565b611a685760405162461bcd60e51b81526004016106f390611e32565b600191820191016119f9565b50600055611554565b6001600160e01b031981168114610fb857600080fd5b600060208284031215611aa557600080fd5b813561169081611a7d565b60005b83811015611acb578181015183820152602001611ab3565b838111156110b35750506000910152565b60008151808452611af4816020860160208601611ab0565b601f01601f19169290920160200192915050565b6020815260006116906020830184611adc565b600060208284031215611b2d57600080fd5b5035919050565b80356001600160a01b0381168114611b4b57600080fd5b919050565b60008060408385031215611b6357600080fd5b611b6c83611b34565b946020939093013593505050565b80358015158114611b4b57600080fd5b600060208284031215611b9c57600080fd5b61169082611b7a565b600080600060608486031215611bba57600080fd5b611bc384611b34565b9250611bd160208501611b34565b9150604084013590509250925092565b600060208284031215611bf357600080fd5b61169082611b34565b60008060408385031215611c0f57600080fd5b611c1883611b34565b9150611c2660208401611b7a565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215611c5b57600080fd5b611c6485611b34565b9350611c7260208601611b34565b925060408501359150606085013567ffffffffffffffff80821115611c9657600080fd5b818701915087601f830112611caa57600080fd5b813581811115611cbc57611cbc611c2f565b604051601f8201601f19908116603f01168101908382118183101715611ce457611ce4611c2f565b816040528281528a6020848701011115611cfd57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611d3457600080fd5b611d3d83611b34565b9150611c2660208401611b34565b600181811c90821680611d5f57607f821691505b60208210811415611d8057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000816000190483118215151615611deb57611deb611dbb565b500290565b634e487b7160e01b600052601260045260246000fd5b600082611e1557611e15611df0565b500490565b60008219821115611e2d57611e2d611dbb565b500190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351611e97818460208801611ab0565b835190830190611eab818360208801611ab0565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611ef790830184611adc565b9695505050505050565b600060208284031215611f1357600080fd5b815161169081611a7d565b6000600019821415611f3257611f32611dbb565b5060010190565b600082821015611f4b57611f4b611dbb565b500390565b600082611f5f57611f5f611df0565b500690565b634e487b7160e01b600052603260045260246000fdfe68747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f6a6f776579732f6d657461646174612fa2646970667358221220d6946e5b7c3728d40f731bc0d88b71aec03659d625d35a7977e667a1a368ac7164736f6c634300080b0033
Deployed Bytecode Sourcemap
48431:2859:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26430:372;;;;;;;;;;-1:-1:-1;26430:372:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;26430:372:0;;;;;;;;28316:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29878:214::-;;;;;;;;;;-1:-1:-1;29878:214:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;29878:214:0;1528:203:1;29399:413:0;;;;;;;;;;-1:-1:-1;29399:413:0;;;;;:::i;:::-;;:::i;:::-;;24687:100;;;;;;;;;;-1:-1:-1;24740:7:0;24767:12;24687:100;;;2319:25:1;;;2307:2;2292:18;24687:100:0;2173:177:1;49517:85:0;;;;;;;;;;-1:-1:-1;49517:85:0;;;;;:::i;:::-;;:::i;30754:170::-;;;;;;;;;;-1:-1:-1;30754:170:0;;;;;:::i;:::-;;:::i;25351:1007::-;;;;;;;;;;-1:-1:-1;25351:1007:0;;;;;:::i;:::-;;:::i;48765:45::-;;;;;;;;;;;;48806:4;48765:45;;50521:491;;;;;;;;;;;;;:::i;48961:52::-;;;;;;;;;;-1:-1:-1;48961:52:0;;;;;:::i;:::-;;;;;;;;;;;;;;30995:185;;;;;;;;;;-1:-1:-1;30995:185:0;;;;;:::i;:::-;;:::i;24864:187::-;;;;;;;;;;-1:-1:-1;24864:187:0;;;;;:::i;:::-;;:::i;28125:124::-;;;;;;;;;;-1:-1:-1;28125:124:0;;;;;:::i;:::-;;:::i;48663:48::-;;;;;;;;;;;;48699:12;48663:48;;49020:30;;;;;;;;;;-1:-1:-1;49020:30:0;;;;;;;;26866:221;;;;;;;;;;-1:-1:-1;26866:221:0;;;;;:::i;:::-;;:::i;22162:103::-;;;;;;;;;;;;;:::i;48922:32::-;;;;;;;;;;;;;;;;48867:48;;;;;;;;;;;;48914:1;48867:48;;21511:87;;;;;;;;;;-1:-1:-1;21584:6:0;;-1:-1:-1;;;;;21584:6:0;21511:87;;28485:104;;;;;;;;;;;;;:::i;49610:903::-;;;;;;:::i;:::-;;:::i;30164:288::-;;;;;;;;;;-1:-1:-1;30164:288:0;;;;;:::i;:::-;;:::i;31251:355::-;;;;;;;;;;-1:-1:-1;31251:355:0;;;;;:::i;:::-;;:::i;51024:263::-;;;;;;;;;;-1:-1:-1;51024:263:0;;;;;:::i;:::-;;:::i;48818:42::-;;;;;;;;;;;;48858:2;48818:42;;48718:40;;;;;;;;;;;;48754:4;48718:40;;30523:164;;;;;;;;;;-1:-1:-1;30523:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;30644:25:0;;;30620:4;30644:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30523:164;22420:201;;;;;;;;;;-1:-1:-1;22420:201:0;;;;;:::i;:::-;;:::i;26430:372::-;26532:4;-1:-1:-1;;;;;;26569:40:0;;-1:-1:-1;;;26569:40:0;;:105;;-1:-1:-1;;;;;;;26626:48:0;;-1:-1:-1;;;26626:48:0;26569:105;:172;;;-1:-1:-1;;;;;;;26691:50:0;;-1:-1:-1;;;26691:50:0;26569:172;:225;;;-1:-1:-1;;;;;;;;;;11434:40:0;;;26758:36;26549:245;26430:372;-1:-1:-1;;26430:372:0:o;28316:100::-;28370:13;28403:5;28396:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28316:100;:::o;29878:214::-;29946:7;29974:16;29982:7;31918:4;31952:12;-1:-1:-1;31942:22:0;31861:111;29974:16;29966:74;;;;-1:-1:-1;;;29966:74:0;;5615:2:1;29966:74:0;;;5597:21:1;5654:2;5634:18;;;5627:30;5693:34;5673:18;;;5666:62;-1:-1:-1;;;5744:18:1;;;5737:43;5797:19;;29966:74:0;;;;;;;;;-1:-1:-1;30060:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30060:24:0;;29878:214::o;29399:413::-;29472:13;29488:24;29504:7;29488:15;:24::i;:::-;29472:40;;29537:5;-1:-1:-1;;;;;29531:11:0;:2;-1:-1:-1;;;;;29531:11:0;;;29523:58;;;;-1:-1:-1;;;29523:58:0;;6029:2:1;29523:58:0;;;6011:21:1;6068:2;6048:18;;;6041:30;6107:34;6087:18;;;6080:62;-1:-1:-1;;;6158:18:1;;;6151:32;6200:19;;29523:58:0;5827:398:1;29523:58:0;12109:10;-1:-1:-1;;;;;29616:21:0;;;;:62;;-1:-1:-1;29641:37:0;29658:5;12109:10;30523:164;:::i;29641:37::-;29594:169;;;;-1:-1:-1;;;29594:169:0;;6432:2:1;29594:169:0;;;6414:21:1;6471:2;6451:18;;;6444:30;6510:34;6490:18;;;6483:62;6581:27;6561:18;;;6554:55;6626:19;;29594:169:0;6230:421:1;29594:169:0;29776:28;29785:2;29789:7;29798:5;29776:8;:28::i;:::-;29461:351;29399:413;;:::o;49517:85::-;21584:6;;-1:-1:-1;;;;;21584:6:0;12109:10;21731:23;21723:68;;;;-1:-1:-1;;;21723:68:0;;;;;;;:::i;:::-;49576:10:::1;:18:::0;;-1:-1:-1;;49576:18:0::1;::::0;::::1;;::::0;;;::::1;::::0;;49517:85::o;30754:170::-;30888:28;30898:4;30904:2;30908:7;30888:9;:28::i;25351:1007::-;25440:7;25476:16;25486:5;25476:9;:16::i;:::-;25468:5;:24;25460:71;;;;-1:-1:-1;;;25460:71:0;;7219:2:1;25460:71:0;;;7201:21:1;7258:2;7238:18;;;7231:30;7297:34;7277:18;;;7270:62;-1:-1:-1;;;7348:18:1;;;7341:32;7390:19;;25460:71:0;7017:398:1;25460:71:0;25542:22;24767:12;;;25542:22;;25805:466;25825:14;25821:1;:18;25805:466;;;25865:31;25899:14;;;:11;:14;;;;;;;;;25865:48;;;;;;;;;-1:-1:-1;;;;;25865:48:0;;;;;-1:-1:-1;;;25865:48:0;;;;;;;;;;;;25936:28;25932:111;;26009:14;;;-1:-1:-1;25932:111:0;26086:5;-1:-1:-1;;;;;26065:26:0;:17;-1:-1:-1;;;;;26065:26:0;;26061:195;;;26135:5;26120:11;:20;26116:85;;;-1:-1:-1;26176:1:0;-1:-1:-1;26169:8:0;;-1:-1:-1;;;26169:8:0;26116:85;26223:13;;;;;26061:195;-1:-1:-1;25841:3:0;;25805:466;;;-1:-1:-1;26294:56:0;;-1:-1:-1;;;26294:56:0;;7622:2:1;26294:56:0;;;7604:21:1;7661:2;7641:18;;;7634:30;7700:34;7680:18;;;7673:62;-1:-1:-1;;;7751:18:1;;;7744:44;7805:19;;26294:56:0;7420:410:1;50521:491:0;21584:6;;-1:-1:-1;;;;;21584:6:0;12109:10;21731:23;21723:68;;;;-1:-1:-1;;;21723:68:0;;;;;;;:::i;:::-;50586:21:::1;50626:11:::0;50618:56:::1;;;::::0;-1:-1:-1;;;50618:56:0;;8037:2:1;50618:56:0::1;::::0;::::1;8019:21:1::0;;;8056:18;;;8049:30;8115:34;8095:18;;;8088:62;8167:18;;50618:56:0::1;7835:356:1::0;50618:56:0::1;50722:13;49098:42;50781:1;50767:11;:7:::0;50777:1:::1;50767:11;:::i;:::-;:15;;;;:::i;:::-;50741:46;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50721:66;;;50806:8;50798:41;;;::::0;-1:-1:-1;;;50798:41:0;;9170:2:1;50798:41:0::1;::::0;::::1;9152:21:1::0;9209:2;9189:18;;;9182:30;-1:-1:-1;;;9228:18:1;;;9221:50;9288:18;;50798:41:0::1;8968:344:1::0;50798:41:0::1;50887:13;49186:42;50946:1;50932:11;:7:::0;50942:1:::1;50932:11;:::i;:::-;:15;;;;:::i;:::-;50906:46;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50886:66;;;50971:8;50963:41;;;::::0;-1:-1:-1;;;50963:41:0;;9170:2:1;50963:41:0::1;::::0;::::1;9152:21:1::0;9209:2;9189:18;;;9182:30;-1:-1:-1;;;9228:18:1;;;9221:50;9288:18;;50963:41:0::1;8968:344:1::0;30995:185:0;31133:39;31150:4;31156:2;31160:7;31133:39;;;;;;;;;;;;:16;:39::i;24864:187::-;24931:7;24767:12;;24959:5;:21;24951:69;;;;-1:-1:-1;;;24951:69:0;;9519:2:1;24951:69:0;;;9501:21:1;9558:2;9538:18;;;9531:30;9597:34;9577:18;;;9570:62;-1:-1:-1;;;9648:18:1;;;9641:33;9691:19;;24951:69:0;9317:399:1;24951:69:0;-1:-1:-1;25038:5:0;24864:187::o;28125:124::-;28189:7;28216:20;28228:7;28216:11;:20::i;:::-;:25;;28125:124;-1:-1:-1;;28125:124:0:o;26866:221::-;26930:7;-1:-1:-1;;;;;26958:19:0;;26950:75;;;;-1:-1:-1;;;26950:75:0;;9923:2:1;26950:75:0;;;9905:21:1;9962:2;9942:18;;;9935:30;10001:34;9981:18;;;9974:62;-1:-1:-1;;;10052:18:1;;;10045:41;10103:19;;26950:75:0;9721:407:1;26950:75:0;-1:-1:-1;;;;;;27051:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;27051:27:0;;26866:221::o;22162:103::-;21584:6;;-1:-1:-1;;;;;21584:6:0;12109:10;21731:23;21723:68;;;;-1:-1:-1;;;21723:68:0;;;;;;;:::i;:::-;22227:30:::1;22254:1;22227:18;:30::i;:::-;22162:103::o:0;28485:104::-;28541:13;28574:7;28567:14;;;;;:::i;49610:903::-;49676:10;;;;:18;;:10;:18;49668:49;;;;-1:-1:-1;;;49668:49:0;;10335:2:1;49668:49:0;;;10317:21:1;10374:2;10354:18;;;10347:30;-1:-1:-1;;;10393:18:1;;;10386:48;10451:18;;49668:49:0;10133:342:1;49668:49:0;48858:2;49736:6;:23;;49728:87;;;;-1:-1:-1;;;49728:87:0;;10682:2:1;49728:87:0;;;10664:21:1;10721:2;10701:18;;;10694:30;10760:34;10740:18;;;10733:62;-1:-1:-1;;;10811:18:1;;;10804:49;10870:19;;49728:87:0;10480:415:1;49728:87:0;49843:1;49834:6;:10;49826:43;;;;-1:-1:-1;;;49826:43:0;;11102:2:1;49826:43:0;;;11084:21:1;11141:2;11121:18;;;11114:30;-1:-1:-1;;;11160:18:1;;;11153:50;11220:18;;49826:43:0;10900:344:1;49826:43:0;48754:4;49904:6;49888:13;24740:7;24767:12;;24687:100;49888:13;:22;;;;:::i;:::-;:35;;49880:70;;;;-1:-1:-1;;;49880:70:0;;11584:2:1;49880:70:0;;;11566:21:1;11623:2;11603:18;;;11596:30;-1:-1:-1;;;11642:18:1;;;11635:52;11704:18;;49880:70:0;11382:346:1;49880:70:0;48806:4;50046:6;50030:13;;:22;;;;:::i;:::-;:40;;50029:110;;;;-1:-1:-1;50094:10:0;50076:29;;;;:17;:29;;;;;;48914:1;;50076:38;;50108:6;;50076:38;:::i;:::-;:62;;50029:110;50025:439;;;50164:9;:14;50156:57;;;;-1:-1:-1;;;50156:57:0;;11935:2:1;50156:57:0;;;11917:21:1;11974:2;11954:18;;;11947:30;12013:32;11993:18;;;11986:60;12063:18;;50156:57:0;11733:354:1;50156:57:0;50248:10;50230:29;;;;:17;:29;;;;;:39;;50263:6;;50230:29;:39;;50263:6;;50230:39;:::i;:::-;;;;;;;;50301:6;50284:13;;:23;;;;;;;:::i;:::-;;;;-1:-1:-1;50025:439:0;;-1:-1:-1;50025:439:0;;50395:21;48699:12;50409:6;50395:13;:21::i;:::-;50382:9;:34;50374:78;;;;-1:-1:-1;;;50374:78:0;;12294:2:1;50374:78:0;;;12276:21:1;12333:2;12313:18;;;12306:30;12372:33;12352:18;;;12345:61;12423:18;;50374:78:0;12092:355:1;50374:78:0;50476:29;50486:10;50498:6;50476:9;:29::i;:::-;49610:903;:::o;30164:288::-;-1:-1:-1;;;;;30259:24:0;;12109:10;30259:24;;30251:63;;;;-1:-1:-1;;;30251:63:0;;12654:2:1;30251:63:0;;;12636:21:1;12693:2;12673:18;;;12666:30;12732:28;12712:18;;;12705:56;12778:18;;30251:63:0;12452:350:1;30251:63:0;12109:10;30327:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;30327:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;30327:53:0;;;;;;;;;;30396:48;;540:41:1;;;30327:42:0;;12109:10;30396:48;;513:18:1;30396:48:0;;;;;;;30164:288;;:::o;31251:355::-;31410:28;31420:4;31426:2;31430:7;31410:9;:28::i;:::-;31471:48;31494:4;31500:2;31504:7;31513:5;31471:22;:48::i;:::-;31449:149;;;;-1:-1:-1;;;31449:149:0;;;;;;;:::i;:::-;31251:355;;;;:::o;51024:263::-;51097:13;51131:16;51139:7;31918:4;31952:12;-1:-1:-1;31942:22:0;31861:111;51131:16;51123:76;;;;-1:-1:-1;;;51123:76:0;;13429:2:1;51123:76:0;;;13411:21:1;13468:2;13448:18;;;13441:30;13507:34;13487:18;;;13480:62;-1:-1:-1;;;13558:18:1;;;13551:45;13613:19;;51123:76:0;13227:411:1;51123:76:0;51241:7;;;;;;;;;;;;;;;;;51250:18;:7;:16;:18::i;:::-;51224:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51210:69;;51024:263;;;:::o;22420:201::-;21584:6;;-1:-1:-1;;;;;21584:6:0;12109:10;21731:23;21723:68;;;;-1:-1:-1;;;21723:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;22509:22:0;::::1;22501:73;;;::::0;-1:-1:-1;;;22501:73:0;;14487:2:1;22501:73:0::1;::::0;::::1;14469:21:1::0;14526:2;14506:18;;;14499:30;14565:34;14545:18;;;14538:62;-1:-1:-1;;;14616:18:1;;;14609:36;14662:19;;22501:73:0::1;14285:402:1::0;22501:73:0::1;22585:28;22604:8;22585:18;:28::i;13322:326::-:0;-1:-1:-1;;;;;13617:19:0;;:23;;;13322:326::o;36781:196::-;36896:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;36896:29:0;-1:-1:-1;;;;;36896:29:0;;;;;;;;;36941:28;;36896:24;;36941:28;;;;;;;36781:196;;;:::o;34661:2002::-;34776:35;34814:20;34826:7;34814:11;:20::i;:::-;34889:18;;34776:58;;-1:-1:-1;34847:22:0;;-1:-1:-1;;;;;34873:34:0;12109:10;-1:-1:-1;;;;;34873:34:0;;:87;;;-1:-1:-1;12109:10:0;34924:20;34936:7;34924:11;:20::i;:::-;-1:-1:-1;;;;;34924:36:0;;34873:87;:154;;;-1:-1:-1;34994:18:0;;34977:50;;12109:10;30523:164;:::i;34977:50::-;34847:181;;35049:17;35041:80;;;;-1:-1:-1;;;35041:80:0;;14894:2:1;35041:80:0;;;14876:21:1;14933:2;14913:18;;;14906:30;14972:34;14952:18;;;14945:62;-1:-1:-1;;;15023:18:1;;;15016:48;15081:19;;35041:80:0;14692:414:1;35041:80:0;35164:4;-1:-1:-1;;;;;35142:26:0;:13;:18;;;-1:-1:-1;;;;;35142:26:0;;35134:77;;;;-1:-1:-1;;;35134:77:0;;15313:2:1;35134:77:0;;;15295:21:1;15352:2;15332:18;;;15325:30;15391:34;15371:18;;;15364:62;-1:-1:-1;;;15442:18:1;;;15435:36;15488:19;;35134:77:0;15111:402:1;35134:77:0;-1:-1:-1;;;;;35230:16:0;;35222:66;;;;-1:-1:-1;;;35222:66:0;;15720:2:1;35222:66:0;;;15702:21:1;15759:2;15739:18;;;15732:30;15798:34;15778:18;;;15771:62;-1:-1:-1;;;15849:18:1;;;15842:35;15894:19;;35222:66:0;15518:401:1;35222:66:0;35409:49;35426:1;35430:7;35439:13;:18;;;35409:8;:49::i;:::-;-1:-1:-1;;;;;35754:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;35754:31:0;;;-1:-1:-1;;;;;35754:31:0;;;-1:-1:-1;;35754:31:0;;;;;;;35800:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35800:29:0;;;;;;;;;;;;;35846:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;35891:61:0;;;;-1:-1:-1;;;35936:15:0;35891:61;;;;;;36226:11;;;36256:24;;;;;:29;36226:11;;36256:29;36252:295;;36324:20;36332:11;31918:4;31952:12;-1:-1:-1;31942:22:0;31861:111;36324:20;36320:212;;;36401:18;;;36369:24;;;:11;:24;;;;;;;;:50;;36484:28;;;;36442:70;;-1:-1:-1;;;36442:70:0;-1:-1:-1;;;;;;36442:70:0;;;-1:-1:-1;;;;;36369:50:0;;;36442:70;;;;;;;36320:212;35729:829;36594:7;36590:2;-1:-1:-1;;;;;36575:27:0;36584:4;-1:-1:-1;;;;;36575:27:0;;;;;;;;;;;36613:42;34765:1898;;34661:2002;;;:::o;27526:537::-;-1:-1:-1;;;;;;;;;;;;;;;;;27629:16:0;27637:7;31918:4;31952:12;-1:-1:-1;31942:22:0;31861:111;27629:16;27621:71;;;;-1:-1:-1;;;27621:71:0;;16126:2:1;27621:71:0;;;16108:21:1;16165:2;16145:18;;;16138:30;16204:34;16184:18;;;16177:62;-1:-1:-1;;;16255:18:1;;;16248:40;16305:19;;27621:71:0;15924:406:1;27621:71:0;27750:7;27730:245;27797:31;27831:17;;;:11;:17;;;;;;;;;27797:51;;;;;;;;;-1:-1:-1;;;;;27797:51:0;;;;;-1:-1:-1;;;27797:51:0;;;;;;;;;;;;27871:28;27867:93;;27931:9;27526:537;-1:-1:-1;;;27526:537:0:o;27867:93::-;-1:-1:-1;;;27770:6:0;27730:245;;22781:191;22874:6;;;-1:-1:-1;;;;;22891:17:0;;;-1:-1:-1;;;;;;22891:17:0;;;;;;;22924:40;;22874:6;;;22891:17;22874:6;;22924:40;;22855:16;;22924:40;22844:128;22781:191;:::o;45004:98::-;45062:7;45089:5;45093:1;45089;:5;:::i;:::-;45082:12;45004:98;-1:-1:-1;;;45004:98:0:o;31980:104::-;32049:27;32059:2;32063:8;32049:27;;;;;;;;;;;;:9;:27::i;:::-;31980:104;;:::o;37542:804::-;37697:4;-1:-1:-1;;;;;37718:13:0;;13617:19;:23;37714:625;;37754:72;;-1:-1:-1;;;37754:72:0;;-1:-1:-1;;;;;37754:36:0;;;;;:72;;12109:10;;37805:4;;37811:7;;37820:5;;37754:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37754:72:0;;;;;;;;-1:-1:-1;;37754:72:0;;;;;;;;;;;;:::i;:::-;;;37750:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38000:13:0;;37996:273;;38043:61;;-1:-1:-1;;;38043:61:0;;;;;;;:::i;37996:273::-;38219:6;38213:13;38204:6;38200:2;38196:15;38189:38;37750:534;-1:-1:-1;;;;;;37877:55:0;-1:-1:-1;;;37877:55:0;;-1:-1:-1;37870:62:0;;37714:625;-1:-1:-1;38323:4:0;37714:625;37542:804;;;;;;:::o;39796:723::-;39852:13;40073:10;40069:53;;-1:-1:-1;;40100:10:0;;;;;;;;;;;;-1:-1:-1;;;40100:10:0;;;;;39796:723::o;40069:53::-;40147:5;40132:12;40188:78;40195:9;;40188:78;;40221:8;;;;:::i;:::-;;-1:-1:-1;40244:10:0;;-1:-1:-1;40252:2:0;40244:10;;:::i;:::-;;;40188:78;;;40276:19;40308:6;40298:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40298:17:0;;40276:39;;40326:154;40333:10;;40326:154;;40360:11;40370:1;40360:11;;:::i;:::-;;-1:-1:-1;40429:10:0;40437:2;40429:5;:10;:::i;:::-;40416:24;;:2;:24;:::i;:::-;40403:39;;40386:6;40393;40386:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;40386:56:0;;;;;;;;-1:-1:-1;40457:11:0;40466:2;40457:11;;:::i;:::-;;;40326:154;;32447:163;32570:32;32576:2;32580:8;32590:5;32597:4;33008:20;33031:12;-1:-1:-1;;;;;33062:16:0;;33054:62;;;;-1:-1:-1;;;33054:62:0;;18220:2:1;33054:62:0;;;18202:21:1;18259:2;18239:18;;;18232:30;18298:34;18278:18;;;18271:62;-1:-1:-1;;;18349:18:1;;;18342:31;18390:19;;33054:62:0;18018:397:1;33054:62:0;33135:13;33127:66;;;;-1:-1:-1;;;33127:66:0;;18622:2:1;33127:66:0;;;18604:21:1;18661:2;18641:18;;;18634:30;18700:34;18680:18;;;18673:62;-1:-1:-1;;;18751:18:1;;;18744:38;18799:19;;33127:66:0;18420:404:1;33127:66:0;-1:-1:-1;;;;;33545:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;;;;33545:45:0;;-1:-1:-1;;;;;33545:45:0;;;;;;;;;;33605:50;;;;;;;;;;;;;;33672:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;33722:66:0;;;;-1:-1:-1;;;33772:15:0;33722:66;;;;;;;33672:25;;33857:415;33877:8;33873:1;:12;33857:415;;;33916:38;;33941:12;;-1:-1:-1;;;;;33916:38:0;;;33933:1;;33916:38;;33933:1;;33916:38;33977:4;33973:249;;;34040:59;34071:1;34075:2;34079:12;34093:5;34040:22;:59::i;:::-;34006:196;;;;-1:-1:-1;;;34006:196:0;;;;;;;:::i;:::-;34242:14;;;;;33887:3;33857:415;;;-1:-1:-1;34288:12:0;:27;34339:60;31251: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:160::-;2420:20;;2476:13;;2469:21;2459:32;;2449:60;;2505:1;2502;2495:12;2520:180;2576:6;2629:2;2617:9;2608:7;2604:23;2600:32;2597:52;;;2645:1;2642;2635:12;2597:52;2668:26;2684:9;2668:26;:::i;2705:328::-;2782:6;2790;2798;2851:2;2839:9;2830:7;2826:23;2822:32;2819:52;;;2867:1;2864;2857:12;2819:52;2890:29;2909:9;2890:29;:::i;:::-;2880:39;;2938:38;2972:2;2961:9;2957:18;2938:38;:::i;:::-;2928:48;;3023:2;3012:9;3008:18;2995:32;2985:42;;2705:328;;;;;:::o;3038:186::-;3097:6;3150:2;3138:9;3129:7;3125:23;3121:32;3118:52;;;3166:1;3163;3156:12;3118:52;3189:29;3208:9;3189:29;:::i;3229:254::-;3294:6;3302;3355:2;3343:9;3334:7;3330:23;3326:32;3323:52;;;3371:1;3368;3361:12;3323:52;3394:29;3413:9;3394:29;:::i;:::-;3384:39;;3442:35;3473:2;3462:9;3458:18;3442:35;:::i;:::-;3432:45;;3229:254;;;;;:::o;3488:127::-;3549:10;3544:3;3540:20;3537:1;3530:31;3580:4;3577:1;3570:15;3604:4;3601:1;3594:15;3620:1138;3715:6;3723;3731;3739;3792:3;3780:9;3771:7;3767:23;3763:33;3760:53;;;3809:1;3806;3799:12;3760:53;3832:29;3851:9;3832:29;:::i;:::-;3822:39;;3880:38;3914:2;3903:9;3899:18;3880:38;:::i;:::-;3870:48;;3965:2;3954:9;3950:18;3937:32;3927:42;;4020:2;4009:9;4005:18;3992:32;4043:18;4084:2;4076:6;4073:14;4070:34;;;4100:1;4097;4090:12;4070:34;4138:6;4127:9;4123:22;4113:32;;4183:7;4176:4;4172:2;4168:13;4164:27;4154:55;;4205:1;4202;4195:12;4154:55;4241:2;4228:16;4263:2;4259;4256:10;4253:36;;;4269:18;;:::i;:::-;4344:2;4338:9;4312:2;4398:13;;-1:-1:-1;;4394:22:1;;;4418:2;4390:31;4386:40;4374:53;;;4442:18;;;4462:22;;;4439:46;4436:72;;;4488:18;;:::i;:::-;4528:10;4524:2;4517:22;4563:2;4555:6;4548:18;4603:7;4598:2;4593;4589;4585:11;4581:20;4578:33;4575:53;;;4624:1;4621;4614:12;4575:53;4680:2;4675;4671;4667:11;4662:2;4654:6;4650:15;4637:46;4725:1;4720:2;4715;4707:6;4703:15;4699:24;4692:35;4746:6;4736:16;;;;;;;3620:1138;;;;;;;:::o;4763:260::-;4831:6;4839;4892:2;4880:9;4871:7;4867:23;4863:32;4860:52;;;4908:1;4905;4898:12;4860:52;4931:29;4950:9;4931:29;:::i;:::-;4921:39;;4979:38;5013:2;5002:9;4998:18;4979:38;:::i;5028:380::-;5107:1;5103:12;;;;5150;;;5171:61;;5225:4;5217:6;5213:17;5203:27;;5171:61;5278:2;5270:6;5267:14;5247:18;5244:38;5241:161;;;5324:10;5319:3;5315:20;5312:1;5305:31;5359:4;5356:1;5349:15;5387:4;5384:1;5377:15;5241:161;;5028:380;;;:::o;6656:356::-;6858:2;6840:21;;;6877:18;;;6870:30;6936:34;6931:2;6916:18;;6909:62;7003:2;6988:18;;6656:356::o;8196:127::-;8257:10;8252:3;8248:20;8245:1;8238:31;8288:4;8285:1;8278:15;8312:4;8309:1;8302:15;8328:168;8368:7;8434:1;8430;8426:6;8422:14;8419:1;8416:21;8411:1;8404:9;8397:17;8393:45;8390:71;;;8441:18;;:::i;:::-;-1:-1:-1;8481:9:1;;8328:168::o;8501:127::-;8562:10;8557:3;8553:20;8550:1;8543:31;8593:4;8590:1;8583:15;8617:4;8614:1;8607:15;8633:120;8673:1;8699;8689:35;;8704:18;;:::i;:::-;-1:-1:-1;8738:9:1;;8633:120::o;11249:128::-;11289:3;11320:1;11316:6;11313:1;11310:13;11307:39;;;11326:18;;:::i;:::-;-1:-1:-1;11362:9:1;;11249:128::o;12807:415::-;13009:2;12991:21;;;13048:2;13028:18;;;13021:30;13087:34;13082:2;13067:18;;13060:62;-1:-1:-1;;;13153:2:1;13138:18;;13131:49;13212:3;13197:19;;12807:415::o;13643:637::-;13923:3;13961:6;13955:13;13977:53;14023:6;14018:3;14011:4;14003:6;13999:17;13977:53;:::i;:::-;14093:13;;14052:16;;;;14115:57;14093:13;14052:16;14149:4;14137:17;;14115:57;:::i;:::-;-1:-1:-1;;;14194:20:1;;14223:22;;;14272:1;14261:13;;13643:637;-1:-1:-1;;;;13643:637:1:o;16751:489::-;-1:-1:-1;;;;;17020:15:1;;;17002:34;;17072:15;;17067:2;17052:18;;17045:43;17119:2;17104:18;;17097:34;;;17167:3;17162:2;17147:18;;17140:31;;;16945:4;;17188:46;;17214:19;;17206:6;17188:46;:::i;:::-;17180:54;16751:489;-1:-1:-1;;;;;;16751:489:1:o;17245:249::-;17314:6;17367:2;17355:9;17346:7;17342:23;17338:32;17335:52;;;17383:1;17380;17373:12;17335:52;17415:9;17409:16;17434:30;17458:5;17434:30;:::i;17499:135::-;17538:3;-1:-1:-1;;17559:17:1;;17556:43;;;17579:18;;:::i;:::-;-1:-1:-1;17626:1:1;17615:13;;17499:135::o;17639:125::-;17679:4;17707:1;17704;17701:8;17698:34;;;17712:18;;:::i;:::-;-1:-1:-1;17749:9:1;;17639:125::o;17769:112::-;17801:1;17827;17817:35;;17832:18;;:::i;:::-;-1:-1:-1;17866:9:1;;17769:112::o;17886:127::-;17947:10;17942:3;17938:20;17935:1;17928:31;17978:4;17975:1;17968:15;18002:4;17999:1;17992:15
Swarm Source
ipfs://d6946e5b7c3728d40f731bc0d88b71aec03659d625d35a7977e667a1a368ac71
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.