ERC-721
Overview
Max Total Supply
3,333 8w
Holders
732
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 8wLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ASianWomen
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-02 */ // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @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); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: ERC721A.sol // Creators: locationtba.eth, 2pmflow.eth pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). */ 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 private currentIndex = 0; uint256 internal immutable maxBatchSize; // 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) private _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; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_ ) { require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; } /** * @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 = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; 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); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); 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); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, 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] = TokenOwnership( prevOwnership.addr, 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); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > currentIndex - 1) { endIndex = currentIndex - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @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 {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: 8sianwomen.sol /* ============================================== 8Sian Women ============================================== */ pragma solidity ^0.8.0; /** * @title 8Sian Women */ contract OwnableDelegateProxy {} contract ProxyRegistry { mapping(address => OwnableDelegateProxy) public proxies; } contract ASianWomen is ERC721A, Ownable { bool public saleIsActive = false; string private _baseURIextended = "https://8sianwomen.s3.us-west-1.amazonaws.com/metadata/8sianwomen-metadata-"; uint256 public Price1 = 0.03 ether; uint256 public Price2 = 0.05 ether; uint public maxSupply = 3333; address proxyRegistryAddress ; mapping(address => uint) public addressFreeMinted; constructor() ERC721A("8Sian Women", "8w", 500) { } function setBaseURI(string memory baseURI_) external onlyOwner() { _baseURIextended = baseURI_; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } function setSaleState(bool newState) public onlyOwner { saleIsActive = newState; } function setPrice(uint256 newPrice1,uint256 newPrice2) public onlyOwner { Price1 = newPrice1; Price2 = newPrice2; } function setProxyRegistryAddress(address proxyAddress) external onlyOwner { proxyRegistryAddress = proxyAddress; } function isApprovedForAll(address owner, address operator) public view override returns (bool) { ProxyRegistry proxyRegistry = ProxyRegistry(proxyRegistryAddress); if (address(proxyRegistry.proxies(owner)) == operator) { return true; } return super.isApprovedForAll(owner, operator); } function mint(uint numberOfTokens) external payable { uint amountAvailableFreeMint = 1000; uint maxPerTx = 5; uint maxFreeMintPerWallet = 10; require(saleIsActive, "Sale is inactive."); require(numberOfTokens <= maxPerTx, "You can only mint maxPerTx at a time."); require(totalSupply() + numberOfTokens <= maxSupply, "Purchase would exceed max supply of tokens"); if (totalSupply() + numberOfTokens > amountAvailableFreeMint) { if (totalSupply() + numberOfTokens <= 2000){ require((Price1 * numberOfTokens) <= msg.value, "Don't send under (in ETH)."); }else { require((Price2 * numberOfTokens) <= msg.value, "Don't send under (in ETH)."); } } else { require(msg.value == 0, "Don't send ether for the free mint."); require(addressFreeMinted[msg.sender] < maxFreeMintPerWallet, "You can only adopt 10 free nfts per wallet. Wait for the paid adoption."); } _safeMint(msg.sender, numberOfTokens); addressFreeMinted[msg.sender] += numberOfTokens; } function gift(address _to,uint numberOfTokens) external onlyOwner { require(totalSupply() + numberOfTokens <= maxSupply, "Purchase would exceed max supply of tokens"); _safeMint(_to, numberOfTokens); } function withdraw() public onlyOwner { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } }
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":[],"name":"Price1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Price2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressFreeMinted","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","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":"saleIsActive","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":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice1","type":"uint256"},{"internalType":"uint256","name":"newPrice2","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"proxyAddress","type":"address"}],"name":"setProxyRegistryAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setSaleState","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
60008080556007556008805460ff60a01b19169055610120604052604b60a0818152906200285660c03980516200003f91600991602090910190620001a6565b50666a94d74f430000600a5566b1a2bc2ec50000600b55610d05600c553480156200006957600080fd5b506040518060400160405280600b81526020016a1c29b4b0b7102bb7b6b2b760a91b81525060405180604001604052806002815260200161387760f01b8152506101f460008111620001115760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b825162000126906001906020860190620001a6565b5081516200013c906002906020850190620001a6565b50608052506200014e90503362000154565b62000289565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001b4906200024c565b90600052602060002090601f016020900481019282620001d8576000855562000223565b82601f10620001f357805160ff191683800117855562000223565b8280016001018555821562000223579182015b828111156200022357825182559160200191906001019062000206565b506200023192915062000235565b5090565b5b8082111562000231576000815560010162000236565b600181811c908216806200026157607f821691505b602082108114156200028357634e487b7160e01b600052602260045260246000fd5b50919050565b6080516125a3620002b3600039600081816118020152818161182c0152611c6d01526125a36000f3fe6080604052600436106101e35760003560e01c80638da5cb5b11610102578063cbce4c9711610095578063e985e9c511610064578063e985e9c514610551578063eb8d244414610571578063f2fde38b14610592578063f7d97577146105b257600080fd5b8063cbce4c97146104e5578063d26ea6c014610505578063d5abeb0114610525578063d7224ba01461053b57600080fd5b8063b2e3ef2c116100d1578063b2e3ef2c14610458578063b88d4fde14610485578063c4e37095146104a5578063c87b56dd146104c557600080fd5b80638da5cb5b146103f257806395d89b4114610410578063a0712d6814610425578063a22cb4651461043857600080fd5b80633ccfd60b1161017a57806355f804b31161014957806355f804b31461037d5780636352211e1461039d57806370a08231146103bd578063715018a6146103dd57600080fd5b80633ccfd60b1461031257806342842e0e146103275780634f6ccce714610347578063548fb3f81461036757600080fd5b8063095ea7b3116101b6578063095ea7b31461029b57806318160ddd146102bd57806323b872dd146102d25780632f745c59146102f257600080fd5b806301ffc9a7146101e85780630322923c1461021d57806306fdde0314610241578063081812fc14610263575b600080fd5b3480156101f457600080fd5b50610208610203366004612139565b6105d2565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610233600b5481565b604051908152602001610214565b34801561024d57600080fd5b5061025661063f565b60405161021491906122ac565b34801561026f57600080fd5b5061028361027e3660046121d9565b6106d1565b6040516001600160a01b039091168152602001610214565b3480156102a757600080fd5b506102bb6102b63660046120f2565b610761565b005b3480156102c957600080fd5b50600054610233565b3480156102de57600080fd5b506102bb6102ed366004611ffc565b610879565b3480156102fe57600080fd5b5061023361030d3660046120f2565b610884565b34801561031e57600080fd5b506102bb6109f2565b34801561033357600080fd5b506102bb610342366004611ffc565b610add565b34801561035357600080fd5b506102336103623660046121d9565b610af8565b34801561037357600080fd5b50610233600a5481565b34801561038957600080fd5b506102bb610398366004612190565b610b5a565b3480156103a957600080fd5b506102836103b83660046121d9565b610b9b565b3480156103c957600080fd5b506102336103d8366004611fa6565b610bad565b3480156103e957600080fd5b506102bb610c3e565b3480156103fe57600080fd5b506008546001600160a01b0316610283565b34801561041c57600080fd5b50610256610c74565b6102bb6104333660046121d9565b610c83565b34801561044457600080fd5b506102bb6104533660046120bd565b610f37565b34801561046457600080fd5b50610233610473366004611fa6565b600e6020526000908152604090205481565b34801561049157600080fd5b506102bb6104a036600461203d565b610ffc565b3480156104b157600080fd5b506102bb6104c036600461211e565b611035565b3480156104d157600080fd5b506102566104e03660046121d9565b61107d565b3480156104f157600080fd5b506102bb6105003660046120f2565b61114a565b34801561051157600080fd5b506102bb610520366004611fa6565b6111b3565b34801561053157600080fd5b50610233600c5481565b34801561054757600080fd5b5061023360075481565b34801561055d57600080fd5b5061020861056c366004611fc3565b6111ff565b34801561057d57600080fd5b5060085461020890600160a01b900460ff1681565b34801561059e57600080fd5b506102bb6105ad366004611fa6565b6112cf565b3480156105be57600080fd5b506102bb6105cd3660046121f2565b611367565b60006001600160e01b031982166380ac58cd60e01b148061060357506001600160e01b03198216635b5e139f60e01b145b8061061e57506001600160e01b0319821663780e9d6360e01b145b8061063957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461064e90612480565b80601f016020809104026020016040519081016040528092919081815260200182805461067a90612480565b80156106c75780601f1061069c576101008083540402835291602001916106c7565b820191906000526020600020905b8154815290600101906020018083116106aa57829003601f168201915b5050505050905090565b60006106de826000541190565b6107455760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061076c82610b9b565b9050806001600160a01b0316836001600160a01b031614156107db5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161073c565b336001600160a01b03821614806107f757506107f781336111ff565b6108695760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161073c565b61087483838361139c565b505050565b6108748383836113f8565b600061088f83610bad565b82106108e85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161073c565b600080549080805b83811015610992576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561094357805192505b876001600160a01b0316836001600160a01b0316141561097f57868414156109715750935061063992505050565b8361097b816124bb565b9450505b508061098a816124bb565b9150506108f0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161073c565b6008546001600160a01b03163314610a1c5760405162461bcd60e51b815260040161073c90612309565b604051600090339047908381818185875af1925050503d8060008114610a5e576040519150601f19603f3d011682016040523d82523d6000602084013e610a63565b606091505b5050905080610ada5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161073c565b50565b61087483838360405180602001604052806000815250610ffc565b600080548210610b565760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161073c565b5090565b6008546001600160a01b03163314610b845760405162461bcd60e51b815260040161073c90612309565b8051610b97906009906020840190611e8b565b5050565b6000610ba682611780565b5192915050565b60006001600160a01b038216610c195760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161073c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c685760405162461bcd60e51b815260040161073c90612309565b610c72600061192a565b565b60606002805461064e90612480565b6008546103e890600590600a90600160a01b900460ff16610cda5760405162461bcd60e51b815260206004820152601160248201527029b0b6329034b99034b730b1ba34bb329760791b604482015260640161073c565b81841115610d385760405162461bcd60e51b815260206004820152602560248201527f596f752063616e206f6e6c79206d696e74206d617850657254782061742061206044820152643a34b6b29760d91b606482015260840161073c565b600c5484610d4560005490565b610d4f91906123b3565b1115610d6d5760405162461bcd60e51b815260040161073c906122bf565b8284610d7860005490565b610d8291906123b3565b1115610e15576107d084610d9560005490565b610d9f91906123b3565b11610e06573484600a54610db391906123df565b1115610e015760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e000000000000604482015260640161073c565b610f03565b3484600b54610db391906123df565b3415610e6f5760405162461bcd60e51b815260206004820152602360248201527f446f6e27742073656e6420657468657220666f72207468652066726565206d69604482015262373a1760e91b606482015260840161073c565b336000908152600e60205260409020548111610f035760405162461bcd60e51b815260206004820152604760248201527f596f752063616e206f6e6c792061646f70742031302066726565206e6674732060448201527f7065722077616c6c65742e205761697420666f7220746865207061696420616460648201526637b83a34b7b71760c91b608482015260a40161073c565b610f0d338561197c565b336000908152600e602052604081208054869290610f2c9084906123b3565b909155505050505050565b6001600160a01b038216331415610f905760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161073c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110078484846113f8565b61101384848484611996565b61102f5760405162461bcd60e51b815260040161073c9061233e565b50505050565b6008546001600160a01b0316331461105f5760405162461bcd60e51b815260040161073c90612309565b60088054911515600160a01b0260ff60a01b19909216919091179055565b606061108a826000541190565b6110ee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073c565b60006110f8611aa3565b905060008151116111185760405180602001604052806000815250611143565b8061112284611ab2565b604051602001611133929190612240565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111745760405162461bcd60e51b815260040161073c90612309565b600c548161118160005490565b61118b91906123b3565b11156111a95760405162461bcd60e51b815260040161073c906122bf565b610b97828261197c565b6008546001600160a01b031633146111dd5760405162461bcd60e51b815260040161073c90612309565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600d5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561124c57600080fd5b505afa158015611260573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112849190612173565b6001600160a01b0316141561129d576001915050610639565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146112f95760405162461bcd60e51b815260040161073c90612309565b6001600160a01b03811661135e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073c565b610ada8161192a565b6008546001600160a01b031633146113915760405162461bcd60e51b815260040161073c90612309565b600a91909155600b55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061140382611780565b80519091506000906001600160a01b0316336001600160a01b0316148061143a57503361142f846106d1565b6001600160a01b0316145b8061144c5750815161144c90336111ff565b9050806114b65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161073c565b846001600160a01b031682600001516001600160a01b03161461152a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161073c565b6001600160a01b03841661158e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161073c565b61159e600084846000015161139c565b6001600160a01b03851660009081526004602052604081208054600192906115d09084906001600160801b03166123fe565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261161c91859116612391565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116a48460016123b3565b6000818152600360205260409020549091506001600160a01b0316611736576116ce816000541190565b156117365760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261179f826000541190565b6117fe5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161073c565b60007f0000000000000000000000000000000000000000000000000000000000000000831061185f576118517f000000000000000000000000000000000000000000000000000000000000000084612426565b61185c9060016123b3565b90505b825b8181106118c9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118b657949350505050565b50806118c181612469565b915050611861565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161073c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b97828260405180602001604052806000815250611bb0565b60006001600160a01b0384163b15611a9857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119da90339089908890889060040161226f565b602060405180830381600087803b1580156119f457600080fd5b505af1925050508015611a24575060408051601f3d908101601f19168201909252611a2191810190612156565b60015b611a7e573d808015611a52576040519150601f19603f3d011682016040523d82523d6000602084013e611a57565b606091505b508051611a765760405162461bcd60e51b815260040161073c9061233e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c7565b506001949350505050565b60606009805461064e90612480565b606081611ad65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b005780611aea816124bb565b9150611af99050600a836123cb565b9150611ada565b60008167ffffffffffffffff811115611b1b57611b1b61252c565b6040519080825280601f01601f191660200182016040528015611b45576020820181803683370190505b5090505b84156112c757611b5a600183612426565b9150611b67600a866124d6565b611b729060306123b3565b60f81b818381518110611b8757611b87612516565b60200101906001600160f81b031916908160001a905350611ba9600a866123cb565b9450611b49565b6000546001600160a01b038416611c135760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161073c565b611c1e816000541190565b15611c6b5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161073c565b7f0000000000000000000000000000000000000000000000000000000000000000831115611ce65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161073c565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d42908790612391565b6001600160801b03168152602001858360200151611d609190612391565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e805760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e446000888488611996565b611e605760405162461bcd60e51b815260040161073c9061233e565b81611e6a816124bb565b9250508080611e78906124bb565b915050611df7565b506000819055611778565b828054611e9790612480565b90600052602060002090601f016020900481019282611eb95760008555611eff565b82601f10611ed257805160ff1916838001178555611eff565b82800160010185558215611eff579182015b82811115611eff578251825591602001919060010190611ee4565b50610b569291505b80821115610b565760008155600101611f07565b600067ffffffffffffffff80841115611f3657611f3661252c565b604051601f8501601f19908116603f01168101908282118183101715611f5e57611f5e61252c565b81604052809350858152868686011115611f7757600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611fa157600080fd5b919050565b600060208284031215611fb857600080fd5b813561114381612542565b60008060408385031215611fd657600080fd5b8235611fe181612542565b91506020830135611ff181612542565b809150509250929050565b60008060006060848603121561201157600080fd5b833561201c81612542565b9250602084013561202c81612542565b929592945050506040919091013590565b6000806000806080858703121561205357600080fd5b843561205e81612542565b9350602085013561206e81612542565b925060408501359150606085013567ffffffffffffffff81111561209157600080fd5b8501601f810187136120a257600080fd5b6120b187823560208401611f1b565b91505092959194509250565b600080604083850312156120d057600080fd5b82356120db81612542565b91506120e960208401611f91565b90509250929050565b6000806040838503121561210557600080fd5b823561211081612542565b946020939093013593505050565b60006020828403121561213057600080fd5b61114382611f91565b60006020828403121561214b57600080fd5b813561114381612557565b60006020828403121561216857600080fd5b815161114381612557565b60006020828403121561218557600080fd5b815161114381612542565b6000602082840312156121a257600080fd5b813567ffffffffffffffff8111156121b957600080fd5b8201601f810184136121ca57600080fd5b6112c784823560208401611f1b565b6000602082840312156121eb57600080fd5b5035919050565b6000806040838503121561220557600080fd5b50508035926020909101359150565b6000815180845261222c81602086016020860161243d565b601f01601f19169290920160200192915050565b6000835161225281846020880161243d565b83519083019061226681836020880161243d565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122a290830184612214565b9695505050505050565b6020815260006111436020830184612214565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612266576122666124ea565b600082198211156123c6576123c66124ea565b500190565b6000826123da576123da612500565b500490565b60008160001904831182151516156123f9576123f96124ea565b500290565b60006001600160801b038381169083168181101561241e5761241e6124ea565b039392505050565b600082821015612438576124386124ea565b500390565b60005b83811015612458578181015183820152602001612440565b8381111561102f5750506000910152565b600081612478576124786124ea565b506000190190565b600181811c9082168061249457607f821691505b602082108114156124b557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124cf576124cf6124ea565b5060010190565b6000826124e5576124e5612500565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ada57600080fd5b6001600160e01b031981168114610ada57600080fdfea2646970667358221220b15b3b8b7bb6fcd3174de127fab861b1e56aa81c54be5a8e42820ac5d662d18a64736f6c6343000807003368747470733a2f2f387369616e776f6d656e2e73332e75732d776573742d312e616d617a6f6e6177732e636f6d2f6d657461646174612f387369616e776f6d656e2d6d657461646174612d
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80638da5cb5b11610102578063cbce4c9711610095578063e985e9c511610064578063e985e9c514610551578063eb8d244414610571578063f2fde38b14610592578063f7d97577146105b257600080fd5b8063cbce4c97146104e5578063d26ea6c014610505578063d5abeb0114610525578063d7224ba01461053b57600080fd5b8063b2e3ef2c116100d1578063b2e3ef2c14610458578063b88d4fde14610485578063c4e37095146104a5578063c87b56dd146104c557600080fd5b80638da5cb5b146103f257806395d89b4114610410578063a0712d6814610425578063a22cb4651461043857600080fd5b80633ccfd60b1161017a57806355f804b31161014957806355f804b31461037d5780636352211e1461039d57806370a08231146103bd578063715018a6146103dd57600080fd5b80633ccfd60b1461031257806342842e0e146103275780634f6ccce714610347578063548fb3f81461036757600080fd5b8063095ea7b3116101b6578063095ea7b31461029b57806318160ddd146102bd57806323b872dd146102d25780632f745c59146102f257600080fd5b806301ffc9a7146101e85780630322923c1461021d57806306fdde0314610241578063081812fc14610263575b600080fd5b3480156101f457600080fd5b50610208610203366004612139565b6105d2565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b50610233600b5481565b604051908152602001610214565b34801561024d57600080fd5b5061025661063f565b60405161021491906122ac565b34801561026f57600080fd5b5061028361027e3660046121d9565b6106d1565b6040516001600160a01b039091168152602001610214565b3480156102a757600080fd5b506102bb6102b63660046120f2565b610761565b005b3480156102c957600080fd5b50600054610233565b3480156102de57600080fd5b506102bb6102ed366004611ffc565b610879565b3480156102fe57600080fd5b5061023361030d3660046120f2565b610884565b34801561031e57600080fd5b506102bb6109f2565b34801561033357600080fd5b506102bb610342366004611ffc565b610add565b34801561035357600080fd5b506102336103623660046121d9565b610af8565b34801561037357600080fd5b50610233600a5481565b34801561038957600080fd5b506102bb610398366004612190565b610b5a565b3480156103a957600080fd5b506102836103b83660046121d9565b610b9b565b3480156103c957600080fd5b506102336103d8366004611fa6565b610bad565b3480156103e957600080fd5b506102bb610c3e565b3480156103fe57600080fd5b506008546001600160a01b0316610283565b34801561041c57600080fd5b50610256610c74565b6102bb6104333660046121d9565b610c83565b34801561044457600080fd5b506102bb6104533660046120bd565b610f37565b34801561046457600080fd5b50610233610473366004611fa6565b600e6020526000908152604090205481565b34801561049157600080fd5b506102bb6104a036600461203d565b610ffc565b3480156104b157600080fd5b506102bb6104c036600461211e565b611035565b3480156104d157600080fd5b506102566104e03660046121d9565b61107d565b3480156104f157600080fd5b506102bb6105003660046120f2565b61114a565b34801561051157600080fd5b506102bb610520366004611fa6565b6111b3565b34801561053157600080fd5b50610233600c5481565b34801561054757600080fd5b5061023360075481565b34801561055d57600080fd5b5061020861056c366004611fc3565b6111ff565b34801561057d57600080fd5b5060085461020890600160a01b900460ff1681565b34801561059e57600080fd5b506102bb6105ad366004611fa6565b6112cf565b3480156105be57600080fd5b506102bb6105cd3660046121f2565b611367565b60006001600160e01b031982166380ac58cd60e01b148061060357506001600160e01b03198216635b5e139f60e01b145b8061061e57506001600160e01b0319821663780e9d6360e01b145b8061063957506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461064e90612480565b80601f016020809104026020016040519081016040528092919081815260200182805461067a90612480565b80156106c75780601f1061069c576101008083540402835291602001916106c7565b820191906000526020600020905b8154815290600101906020018083116106aa57829003601f168201915b5050505050905090565b60006106de826000541190565b6107455760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b600061076c82610b9b565b9050806001600160a01b0316836001600160a01b031614156107db5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b606482015260840161073c565b336001600160a01b03821614806107f757506107f781336111ff565b6108695760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606482015260840161073c565b61087483838361139c565b505050565b6108748383836113f8565b600061088f83610bad565b82106108e85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b606482015260840161073c565b600080549080805b83811015610992576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561094357805192505b876001600160a01b0316836001600160a01b0316141561097f57868414156109715750935061063992505050565b8361097b816124bb565b9450505b508061098a816124bb565b9150506108f0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b606482015260840161073c565b6008546001600160a01b03163314610a1c5760405162461bcd60e51b815260040161073c90612309565b604051600090339047908381818185875af1925050503d8060008114610a5e576040519150601f19603f3d011682016040523d82523d6000602084013e610a63565b606091505b5050905080610ada5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d61792068617665207265766572746564000000000000606482015260840161073c565b50565b61087483838360405180602001604052806000815250610ffc565b600080548210610b565760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b606482015260840161073c565b5090565b6008546001600160a01b03163314610b845760405162461bcd60e51b815260040161073c90612309565b8051610b97906009906020840190611e8b565b5050565b6000610ba682611780565b5192915050565b60006001600160a01b038216610c195760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b606482015260840161073c565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610c685760405162461bcd60e51b815260040161073c90612309565b610c72600061192a565b565b60606002805461064e90612480565b6008546103e890600590600a90600160a01b900460ff16610cda5760405162461bcd60e51b815260206004820152601160248201527029b0b6329034b99034b730b1ba34bb329760791b604482015260640161073c565b81841115610d385760405162461bcd60e51b815260206004820152602560248201527f596f752063616e206f6e6c79206d696e74206d617850657254782061742061206044820152643a34b6b29760d91b606482015260840161073c565b600c5484610d4560005490565b610d4f91906123b3565b1115610d6d5760405162461bcd60e51b815260040161073c906122bf565b8284610d7860005490565b610d8291906123b3565b1115610e15576107d084610d9560005490565b610d9f91906123b3565b11610e06573484600a54610db391906123df565b1115610e015760405162461bcd60e51b815260206004820152601a60248201527f446f6e27742073656e6420756e6465722028696e20455448292e000000000000604482015260640161073c565b610f03565b3484600b54610db391906123df565b3415610e6f5760405162461bcd60e51b815260206004820152602360248201527f446f6e27742073656e6420657468657220666f72207468652066726565206d69604482015262373a1760e91b606482015260840161073c565b336000908152600e60205260409020548111610f035760405162461bcd60e51b815260206004820152604760248201527f596f752063616e206f6e6c792061646f70742031302066726565206e6674732060448201527f7065722077616c6c65742e205761697420666f7220746865207061696420616460648201526637b83a34b7b71760c91b608482015260a40161073c565b610f0d338561197c565b336000908152600e602052604081208054869290610f2c9084906123b3565b909155505050505050565b6001600160a01b038216331415610f905760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604482015260640161073c565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110078484846113f8565b61101384848484611996565b61102f5760405162461bcd60e51b815260040161073c9061233e565b50505050565b6008546001600160a01b0316331461105f5760405162461bcd60e51b815260040161073c90612309565b60088054911515600160a01b0260ff60a01b19909216919091179055565b606061108a826000541190565b6110ee5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161073c565b60006110f8611aa3565b905060008151116111185760405180602001604052806000815250611143565b8061112284611ab2565b604051602001611133929190612240565b6040516020818303038152906040525b9392505050565b6008546001600160a01b031633146111745760405162461bcd60e51b815260040161073c90612309565b600c548161118160005490565b61118b91906123b3565b11156111a95760405162461bcd60e51b815260040161073c906122bf565b610b97828261197c565b6008546001600160a01b031633146111dd5760405162461bcd60e51b815260040161073c90612309565b600d80546001600160a01b0319166001600160a01b0392909216919091179055565b600d5460405163c455279160e01b81526001600160a01b03848116600483015260009281169190841690829063c45527919060240160206040518083038186803b15801561124c57600080fd5b505afa158015611260573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112849190612173565b6001600160a01b0316141561129d576001915050610639565b6001600160a01b0380851660009081526006602090815260408083209387168352929052205460ff165b949350505050565b6008546001600160a01b031633146112f95760405162461bcd60e51b815260040161073c90612309565b6001600160a01b03811661135e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161073c565b610ada8161192a565b6008546001600160a01b031633146113915760405162461bcd60e51b815260040161073c90612309565b600a91909155600b55565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061140382611780565b80519091506000906001600160a01b0316336001600160a01b0316148061143a57503361142f846106d1565b6001600160a01b0316145b8061144c5750815161144c90336111ff565b9050806114b65760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606482015260840161073c565b846001600160a01b031682600001516001600160a01b03161461152a5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b606482015260840161073c565b6001600160a01b03841661158e5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b606482015260840161073c565b61159e600084846000015161139c565b6001600160a01b03851660009081526004602052604081208054600192906115d09084906001600160801b03166123fe565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261161c91859116612391565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116a48460016123b3565b6000818152600360205260409020549091506001600160a01b0316611736576116ce816000541190565b156117365760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b604080518082019091526000808252602082015261179f826000541190565b6117fe5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b606482015260840161073c565b60007f00000000000000000000000000000000000000000000000000000000000001f4831061185f576118517f00000000000000000000000000000000000000000000000000000000000001f484612426565b61185c9060016123b3565b90505b825b8181106118c9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118b657949350505050565b50806118c181612469565b915050611861565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b606482015260840161073c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610b97828260405180602001604052806000815250611bb0565b60006001600160a01b0384163b15611a9857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119da90339089908890889060040161226f565b602060405180830381600087803b1580156119f457600080fd5b505af1925050508015611a24575060408051601f3d908101601f19168201909252611a2191810190612156565b60015b611a7e573d808015611a52576040519150601f19603f3d011682016040523d82523d6000602084013e611a57565b606091505b508051611a765760405162461bcd60e51b815260040161073c9061233e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506112c7565b506001949350505050565b60606009805461064e90612480565b606081611ad65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b005780611aea816124bb565b9150611af99050600a836123cb565b9150611ada565b60008167ffffffffffffffff811115611b1b57611b1b61252c565b6040519080825280601f01601f191660200182016040528015611b45576020820181803683370190505b5090505b84156112c757611b5a600183612426565b9150611b67600a866124d6565b611b729060306123b3565b60f81b818381518110611b8757611b87612516565b60200101906001600160f81b031916908160001a905350611ba9600a866123cb565b9450611b49565b6000546001600160a01b038416611c135760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b606482015260840161073c565b611c1e816000541190565b15611c6b5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604482015260640161073c565b7f00000000000000000000000000000000000000000000000000000000000001f4831115611ce65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b606482015260840161073c565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d42908790612391565b6001600160801b03168152602001858360200151611d609190612391565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e805760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e446000888488611996565b611e605760405162461bcd60e51b815260040161073c9061233e565b81611e6a816124bb565b9250508080611e78906124bb565b915050611df7565b506000819055611778565b828054611e9790612480565b90600052602060002090601f016020900481019282611eb95760008555611eff565b82601f10611ed257805160ff1916838001178555611eff565b82800160010185558215611eff579182015b82811115611eff578251825591602001919060010190611ee4565b50610b569291505b80821115610b565760008155600101611f07565b600067ffffffffffffffff80841115611f3657611f3661252c565b604051601f8501601f19908116603f01168101908282118183101715611f5e57611f5e61252c565b81604052809350858152868686011115611f7757600080fd5b858560208301376000602087830101525050509392505050565b80358015158114611fa157600080fd5b919050565b600060208284031215611fb857600080fd5b813561114381612542565b60008060408385031215611fd657600080fd5b8235611fe181612542565b91506020830135611ff181612542565b809150509250929050565b60008060006060848603121561201157600080fd5b833561201c81612542565b9250602084013561202c81612542565b929592945050506040919091013590565b6000806000806080858703121561205357600080fd5b843561205e81612542565b9350602085013561206e81612542565b925060408501359150606085013567ffffffffffffffff81111561209157600080fd5b8501601f810187136120a257600080fd5b6120b187823560208401611f1b565b91505092959194509250565b600080604083850312156120d057600080fd5b82356120db81612542565b91506120e960208401611f91565b90509250929050565b6000806040838503121561210557600080fd5b823561211081612542565b946020939093013593505050565b60006020828403121561213057600080fd5b61114382611f91565b60006020828403121561214b57600080fd5b813561114381612557565b60006020828403121561216857600080fd5b815161114381612557565b60006020828403121561218557600080fd5b815161114381612542565b6000602082840312156121a257600080fd5b813567ffffffffffffffff8111156121b957600080fd5b8201601f810184136121ca57600080fd5b6112c784823560208401611f1b565b6000602082840312156121eb57600080fd5b5035919050565b6000806040838503121561220557600080fd5b50508035926020909101359150565b6000815180845261222c81602086016020860161243d565b601f01601f19169290920160200192915050565b6000835161225281846020880161243d565b83519083019061226681836020880161243d565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122a290830184612214565b9695505050505050565b6020815260006111436020830184612214565b6020808252602a908201527f507572636861736520776f756c6420657863656564206d617820737570706c79604082015269206f6620746f6b656e7360b01b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b03808316818516808303821115612266576122666124ea565b600082198211156123c6576123c66124ea565b500190565b6000826123da576123da612500565b500490565b60008160001904831182151516156123f9576123f96124ea565b500290565b60006001600160801b038381169083168181101561241e5761241e6124ea565b039392505050565b600082821015612438576124386124ea565b500390565b60005b83811015612458578181015183820152602001612440565b8381111561102f5750506000910152565b600081612478576124786124ea565b506000190190565b600181811c9082168061249457607f821691505b602082108114156124b557634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156124cf576124cf6124ea565b5060010190565b6000826124e5576124e5612500565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ada57600080fd5b6001600160e01b031981168114610ada57600080fdfea2646970667358221220b15b3b8b7bb6fcd3174de127fab861b1e56aa81c54be5a8e42820ac5d662d18a64736f6c63430008070033
Deployed Bytecode Sourcemap
40047:3155:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24646:370;;;;;;;;;;-1:-1:-1;24646:370:0;;;;;:::i;:::-;;:::i;:::-;;;7040:14:1;;7033:22;7015:41;;7003:2;6988:18;24646:370:0;;;;;;;;40296:34;;;;;;;;;;;;;;;;;;;18324:25:1;;;18312:2;18297:18;40296:34:0;18178:177:1;26372:94:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27897:204::-;;;;;;;;;;-1:-1:-1;27897:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6338:32:1;;;6320:51;;6308:2;6293:18;27897:204:0;6174:203:1;27460:379:0;;;;;;;;;;-1:-1:-1;27460:379:0;;;;;:::i;:::-;;:::i;:::-;;23210:94;;;;;;;;;;-1:-1:-1;23263:7:0;23286:12;23210:94;;28747:142;;;;;;;;;;-1:-1:-1;28747:142:0;;;;;:::i;:::-;;:::i;23838:744::-;;;;;;;;;;-1:-1:-1;23838:744:0;;;;;:::i;:::-;;:::i;42947:250::-;;;;;;;;;;;;;:::i;28952:157::-;;;;;;;;;;-1:-1:-1;28952:157:0;;;;;:::i;:::-;;:::i;23373:177::-;;;;;;;;;;-1:-1:-1;23373:177:0;;;;;:::i;:::-;;:::i;40255:34::-;;;;;;;;;;;;;;;;40537:111;;;;;;;;;;-1:-1:-1;40537:111:0;;;;;:::i;:::-;;:::i;26195:118::-;;;;;;;;;;-1:-1:-1;26195:118:0;;;;;:::i;:::-;;:::i;25072:211::-;;;;;;;;;;-1:-1:-1;25072:211:0;;;;;:::i;:::-;;:::i;38573:103::-;;;;;;;;;;;;;:::i;37922:87::-;;;;;;;;;;-1:-1:-1;37995:6:0;;-1:-1:-1;;;;;37995:6:0;37922:87;;26527:98;;;;;;;;;;;;;:::i;41557:1148::-;;;;;;:::i;:::-;;:::i;28165:274::-;;;;;;;;;;-1:-1:-1;28165:274:0;;;;;:::i;:::-;;:::i;40403:49::-;;;;;;;;;;-1:-1:-1;40403:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;29172:311;;;;;;;;;;-1:-1:-1;29172:311:0;;;;;:::i;:::-;;:::i;40781:96::-;;;;;;;;;;-1:-1:-1;40781:96:0;;;;;:::i;:::-;;:::i;26688:394::-;;;;;;;;;;-1:-1:-1;26688:394:0;;;;;:::i;:::-;;:::i;42714:225::-;;;;;;;;;;-1:-1:-1;42714:225:0;;;;;:::i;:::-;;:::i;41031:128::-;;;;;;;;;;-1:-1:-1;41031:128:0;;;;;:::i;:::-;;:::i;40337:28::-;;;;;;;;;;;;;;;;33503:43;;;;;;;;;;;;;;;;41167:382;;;;;;;;;;-1:-1:-1;41167:382:0;;;;;:::i;:::-;;:::i;40096:32::-;;;;;;;;;;-1:-1:-1;40096:32:0;;;;-1:-1:-1;;;40096:32:0;;;;;;38831:201;;;;;;;;;;-1:-1:-1;38831:201:0;;;;;:::i;:::-;;:::i;40885:138::-;;;;;;;;;;-1:-1:-1;40885:138:0;;;;;:::i;:::-;;:::i;24646:370::-;24773:4;-1:-1:-1;;;;;;24803:40:0;;-1:-1:-1;;;24803:40:0;;:99;;-1:-1:-1;;;;;;;24854:48:0;;-1:-1:-1;;;24854:48:0;24803:99;:160;;;-1:-1:-1;;;;;;;24913:50:0;;-1:-1:-1;;;24913:50:0;24803:160;:207;;;-1:-1:-1;;;;;;;;;;13549:40:0;;;24974:36;24789:221;24646:370;-1:-1:-1;;24646:370:0:o;26372:94::-;26426:13;26455:5;26448:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26372:94;:::o;27897:204::-;27965:7;27989:16;27997:7;29779:4;29809:12;-1:-1:-1;29799:22:0;29722:105;27989:16;27981:74;;;;-1:-1:-1;;;27981:74:0;;17217:2:1;27981:74:0;;;17199:21:1;17256:2;17236:18;;;17229:30;17295:34;17275:18;;;17268:62;-1:-1:-1;;;17346:18:1;;;17339:43;17399:19;;27981:74:0;;;;;;;;;-1:-1:-1;28071:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28071:24:0;;27897:204::o;27460:379::-;27529:13;27545:24;27561:7;27545:15;:24::i;:::-;27529:40;;27590:5;-1:-1:-1;;;;;27584:11:0;:2;-1:-1:-1;;;;;27584:11:0;;;27576:58;;;;-1:-1:-1;;;27576:58:0;;14323:2:1;27576:58:0;;;14305:21:1;14362:2;14342:18;;;14335:30;14401:34;14381:18;;;14374:62;-1:-1:-1;;;14452:18:1;;;14445:32;14494:19;;27576:58:0;14121:398:1;27576:58:0;21118:10;-1:-1:-1;;;;;27659:21:0;;;;:62;;-1:-1:-1;27684:37:0;27701:5;21118:10;41167:382;:::i;27684:37::-;27643:153;;;;-1:-1:-1;;;27643:153:0;;10355:2:1;27643:153:0;;;10337:21:1;10394:2;10374:18;;;10367:30;10433:34;10413:18;;;10406:62;10504:27;10484:18;;;10477:55;10549:19;;27643:153:0;10153:421:1;27643:153:0;27805:28;27814:2;27818:7;27827:5;27805:8;:28::i;:::-;27522:317;27460:379;;:::o;28747:142::-;28855:28;28865:4;28871:2;28875:7;28855:9;:28::i;23838:744::-;23947:7;23982:16;23992:5;23982:9;:16::i;:::-;23974:5;:24;23966:71;;;;-1:-1:-1;;;23966:71:0;;7493:2:1;23966:71:0;;;7475:21:1;7532:2;7512:18;;;7505:30;7571:34;7551:18;;;7544:62;-1:-1:-1;;;7622:18:1;;;7615:32;7664:19;;23966:71:0;7291:398:1;23966:71:0;24044:22;23286:12;;;24044:22;;24164:350;24188:14;24184:1;:18;24164:350;;;24218:31;24252:14;;;:11;:14;;;;;;;;;24218:48;;;;;;;;;-1:-1:-1;;;;;24218:48:0;;;;;-1:-1:-1;;;24218:48:0;;;;;;;;;;;;24279:28;24275:89;;24340:14;;;-1:-1:-1;24275:89:0;24397:5;-1:-1:-1;;;;;24376:26:0;:17;-1:-1:-1;;;;;24376:26:0;;24372:135;;;24434:5;24419:11;:20;24415:59;;;-1:-1:-1;24461:1:0;-1:-1:-1;24454:8:0;;-1:-1:-1;;;24454:8:0;24415:59;24484:13;;;;:::i;:::-;;;;24372:135;-1:-1:-1;24204:3:0;;;;:::i;:::-;;;;24164:350;;;-1:-1:-1;24520:56:0;;-1:-1:-1;;;24520:56:0;;16386:2:1;24520:56:0;;;16368:21:1;16425:2;16405:18;;;16398:30;16464:34;16444:18;;;16437:62;-1:-1:-1;;;16515:18:1;;;16508:44;16569:19;;24520:56:0;16184:410:1;42947:250:0;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;43014:49:::1;::::0;42996:12:::1;::::0;43014:10:::1;::::0;43037:21:::1;::::0;42996:12;43014:49;42996:12;43014:49;43037:21;43014:10;:49:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42995:68;;;43096:7;43074:115;;;::::0;-1:-1:-1;;;43074:115:0;;9928:2:1;43074:115:0::1;::::0;::::1;9910:21:1::0;9967:2;9947:18;;;9940:30;10006:34;9986:18;;;9979:62;10077:28;10057:18;;;10050:56;10123:19;;43074:115:0::1;9726:422:1::0;43074:115:0::1;42984:213;42947:250::o:0;28952:157::-;29064:39;29081:4;29087:2;29091:7;29064:39;;;;;;;;;;;;:16;:39::i;23373:177::-;23440:7;23286:12;;23464:5;:21;23456:69;;;;-1:-1:-1;;;23456:69:0;;9118:2:1;23456:69:0;;;9100:21:1;9157:2;9137:18;;;9130:30;9196:34;9176:18;;;9169:62;-1:-1:-1;;;9247:18:1;;;9240:33;9290:19;;23456:69:0;8916:399:1;23456:69:0;-1:-1:-1;23539:5:0;23373:177::o;40537:111::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;40613:27;;::::1;::::0;:16:::1;::::0;:27:::1;::::0;::::1;::::0;::::1;:::i;:::-;;40537:111:::0;:::o;26195:118::-;26259:7;26282:20;26294:7;26282:11;:20::i;:::-;:25;;26195:118;-1:-1:-1;;26195:118:0:o;25072:211::-;25136:7;-1:-1:-1;;;;;25160:19:0;;25152:75;;;;-1:-1:-1;;;25152:75:0;;11192:2:1;25152:75:0;;;11174:21:1;11231:2;11211:18;;;11204:30;11270:34;11250:18;;;11243:62;-1:-1:-1;;;11321:18:1;;;11314:41;11372:19;;25152:75:0;10990:407:1;25152:75:0;-1:-1:-1;;;;;;25249:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;25249:27:0;;25072:211::o;38573:103::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;38638:30:::1;38665:1;38638:18;:30::i;:::-;38573:103::o:0;26527:98::-;26583:13;26612:7;26605:14;;;;;:::i;41557:1148::-;41752:12;;41661:4;;41692:1;;41729:2;;-1:-1:-1;;;41752:12:0;;;;41744:42;;;;-1:-1:-1;;;41744:42:0;;18034:2:1;41744:42:0;;;18016:21:1;18073:2;18053:18;;;18046:30;-1:-1:-1;;;18092:18:1;;;18085:47;18149:18;;41744:42:0;17832:341:1;41744:42:0;41823:8;41805:14;:26;;41797:76;;;;-1:-1:-1;;;41797:76:0;;13917:2:1;41797:76:0;;;13899:21:1;13956:2;13936:18;;;13929:30;13995:34;13975:18;;;13968:62;-1:-1:-1;;;14046:18:1;;;14039:35;14091:19;;41797:76:0;13715:401:1;41797:76:0;41926:9;;41908:14;41892:13;23263:7;23286:12;;23210:94;41892:13;:30;;;;:::i;:::-;:43;;41884:98;;;;-1:-1:-1;;;41884:98:0;;;;;;;:::i;:::-;42044:23;42027:14;42011:13;23263:7;23286:12;;23210:94;42011:13;:30;;;;:::i;:::-;:56;42007:582;;;42122:4;42104:14;42088:13;23263:7;23286:12;;23210:94;42088:13;:30;;;;:::i;:::-;:38;42084:272;;42183:9;42164:14;42155:6;;:23;;;;:::i;:::-;42154:38;;42146:77;;;;-1:-1:-1;;;42146:77:0;;11604:2:1;42146:77:0;;;11586:21:1;11643:2;11623:18;;;11616:30;11682:28;11662:18;;;11655:56;11728:18;;42146:77:0;11402:350:1;42146:77:0;42007:582;;42084:272;42300:9;42281:14;42272:6;;:23;;;;:::i;42007:582::-;42387:9;:14;42379:62;;;;-1:-1:-1;;;42379:62:0;;8714:2:1;42379:62:0;;;8696:21:1;8753:2;8733:18;;;8726:30;8792:34;8772:18;;;8765:62;-1:-1:-1;;;8843:18:1;;;8836:33;8886:19;;42379:62:0;8512:399:1;42379:62:0;42473:10;42455:29;;;;:17;:29;;;;;;:52;-1:-1:-1;42447:136:0;;;;-1:-1:-1;;;42447:136:0;;15906:2:1;42447:136:0;;;15888:21:1;15945:2;15925:18;;;15918:30;15984:34;15964:18;;;15957:62;16055:34;16035:18;;;16028:62;-1:-1:-1;;;16106:19:1;;;16099:38;16154:19;;42447:136:0;15704:475:1;42447:136:0;42602:37;42612:10;42624:14;42602:9;:37::i;:::-;42668:10;42650:29;;;;:17;:29;;;;;:47;;42683:14;;42650:29;:47;;42683:14;;42650:47;:::i;:::-;;;;-1:-1:-1;;;;;;41557:1148:0:o;28165:274::-;-1:-1:-1;;;;;28256:24:0;;21118:10;28256:24;;28248:63;;;;-1:-1:-1;;;28248:63:0;;13143:2:1;28248:63:0;;;13125:21:1;13182:2;13162:18;;;13155:30;13221:28;13201:18;;;13194:56;13267:18;;28248:63:0;12941:350:1;28248:63:0;21118:10;28320:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28320:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28320:53:0;;;;;;;;;;28385:48;;7015:41:1;;;28320:42:0;;21118:10;28385:48;;6988:18:1;28385:48:0;;;;;;;28165:274;;:::o;29172:311::-;29309:28;29319:4;29325:2;29329:7;29309:9;:28::i;:::-;29360:48;29383:4;29389:2;29393:7;29402:5;29360:22;:48::i;:::-;29344:133;;;;-1:-1:-1;;;29344:133:0;;;;;;;:::i;:::-;29172:311;;;;:::o;40781:96::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;40846:12:::1;:23:::0;;;::::1;;-1:-1:-1::0;;;40846:23:0::1;-1:-1:-1::0;;;;40846:23:0;;::::1;::::0;;;::::1;::::0;;40781:96::o;26688:394::-;26786:13;26827:16;26835:7;29779:4;29809:12;-1:-1:-1;29799:22:0;29722:105;26827:16;26811:97;;;;-1:-1:-1;;;26811:97:0;;12727:2:1;26811:97:0;;;12709:21:1;12766:2;12746:18;;;12739:30;12805:34;12785:18;;;12778:62;-1:-1:-1;;;12856:18:1;;;12849:45;12911:19;;26811:97:0;12525:411:1;26811:97:0;26917:21;26941:10;:8;:10::i;:::-;26917:34;;26996:1;26978:7;26972:21;:25;:104;;;;;;;;;;;;;;;;;27033:7;27042:18;:7;:16;:18::i;:::-;27016:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26972:104;26958:118;26688:394;-1:-1:-1;;;26688:394:0:o;42714:225::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;42834:9:::1;;42816:14;42800:13;23263:7:::0;23286:12;;23210:94;42800:13:::1;:30;;;;:::i;:::-;:43;;42792:98;;;;-1:-1:-1::0;;;42792:98:0::1;;;;;;;:::i;:::-;42901:30;42911:3;42916:14;42901:9;:30::i;41031:128::-:0;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;41116:20:::1;:35:::0;;-1:-1:-1;;;;;;41116:35:0::1;-1:-1:-1::0;;;;;41116:35:0;;;::::1;::::0;;;::::1;::::0;;41031:128::o;41167:382::-;41358:20;;41402:28;;-1:-1:-1;;;41402:28:0;;-1:-1:-1;;;;;6338:32:1;;;41402:28:0;;;6320:51:1;41292:4:0;;41358:20;;;41394:49;;;;41358:20;;41402:21;;6293:18:1;;41402:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;41394:49:0;;41390:93;;;41467:4;41460:11;;;;;41390:93;-1:-1:-1;;;;;28647:25:0;;;28624:4;28647:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;41502:39;41495:46;41167:382;-1:-1:-1;;;;41167:382:0:o;38831:201::-;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38920:22:0;::::1;38912:73;;;::::0;-1:-1:-1;;;38912:73:0;;7896:2:1;38912:73:0::1;::::0;::::1;7878:21:1::0;7935:2;7915:18;;;7908:30;7974:34;7954:18;;;7947:62;-1:-1:-1;;;8025:18:1;;;8018:36;8071:19;;38912:73:0::1;7694:402:1::0;38912:73:0::1;38996:28;39015:8;38996:18;:28::i;40885:138::-:0;37995:6;;-1:-1:-1;;;;;37995:6:0;21118:10;38142:23;38134:68;;;;-1:-1:-1;;;38134:68:0;;;;;;;:::i;:::-;40968:6:::1;:18:::0;;;;40997:6:::1;:18:::0;40885:138::o;33325:172::-;33422:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33422:29:0;-1:-1:-1;;;;;33422:29:0;;;;;;;;;33463:28;;33422:24;;33463:28;;;;;;;33325:172;;;:::o;31690:1529::-;31787:35;31825:20;31837:7;31825:11;:20::i;:::-;31896:18;;31787:58;;-1:-1:-1;31854:22:0;;-1:-1:-1;;;;;31880:34:0;21118:10;-1:-1:-1;;;;;31880:34:0;;:81;;;-1:-1:-1;21118:10:0;31925:20;31937:7;31925:11;:20::i;:::-;-1:-1:-1;;;;;31925:36:0;;31880:81;:142;;;-1:-1:-1;31989:18:0;;31972:50;;21118:10;41167:382;:::i;31972:50::-;31854:169;;32048:17;32032:101;;;;-1:-1:-1;;;32032:101:0;;13498:2:1;32032:101:0;;;13480:21:1;13537:2;13517:18;;;13510:30;13576:34;13556:18;;;13549:62;-1:-1:-1;;;13627:18:1;;;13620:48;13685:19;;32032:101:0;13296:414:1;32032:101:0;32180:4;-1:-1:-1;;;;;32158:26:0;:13;:18;;;-1:-1:-1;;;;;32158:26:0;;32142:98;;;;-1:-1:-1;;;32142:98:0;;11959:2:1;32142:98:0;;;11941:21:1;11998:2;11978:18;;;11971:30;12037:34;12017:18;;;12010:62;-1:-1:-1;;;12088:18:1;;;12081:36;12134:19;;32142:98:0;11757:402:1;32142:98:0;-1:-1:-1;;;;;32255:16:0;;32247:66;;;;-1:-1:-1;;;32247:66:0;;9522:2:1;32247:66:0;;;9504:21:1;9561:2;9541:18;;;9534:30;9600:34;9580:18;;;9573:62;-1:-1:-1;;;9651:18:1;;;9644:35;9696:19;;32247:66:0;9320:401:1;32247:66:0;32422:49;32439:1;32443:7;32452:13;:18;;;32422:8;:49::i;:::-;-1:-1:-1;;;;;32480:18:0;;;;;;:12;:18;;;;;:31;;32510:1;;32480:18;:31;;32510:1;;-1:-1:-1;;;;;32480:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;32480:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32518:16:0;;-1:-1:-1;32518:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;32518:16:0;;:29;;-1:-1:-1;;32518:29:0;;:::i;:::-;;;-1:-1:-1;;;;;32518:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32577:43:0;;;;;;;;-1:-1:-1;;;;;32577:43:0;;;;;;32603:15;32577:43;;;;;;;;;-1:-1:-1;32554:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;32554:66:0;-1:-1:-1;;;;;;32554:66:0;;;;;;;;;;;32870:11;32566:7;-1:-1:-1;32870:11:0;:::i;:::-;32933:1;32892:24;;;:11;:24;;;;;:29;32848:33;;-1:-1:-1;;;;;;32892:29:0;32888:236;;32950:20;32958:11;29779:4;29809:12;-1:-1:-1;29799:22:0;29722:105;32950:20;32946:171;;;33010:97;;;;;;;;33037:18;;-1:-1:-1;;;;;33010:97:0;;;;;;33068:28;;;;33010:97;;;;;;;;;;-1:-1:-1;32983:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;32983:124:0;-1:-1:-1;;;;;;32983:124:0;;;;;;;;;;;;32946:171;33156:7;33152:2;-1:-1:-1;;;;;33137:27:0;33146:4;-1:-1:-1;;;;;33137:27:0;;;;;;;;;;;33171:42;31780:1439;;;31690:1529;;;:::o;25535:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;25652:16:0;25660:7;29779:4;29809:12;-1:-1:-1;29799:22:0;29722:105;25652:16;25644:71;;;;-1:-1:-1;;;25644:71:0;;8303:2:1;25644:71:0;;;8285:21:1;8342:2;8322:18;;;8315:30;8381:34;8361:18;;;8354:62;-1:-1:-1;;;8432:18:1;;;8425:40;8482:19;;25644:71:0;8101:406:1;25644:71:0;25724:26;25772:12;25761:7;:23;25757:93;;25816:22;25826:12;25816:7;:22;:::i;:::-;:26;;25841:1;25816:26;:::i;:::-;25795:47;;25757:93;25878:7;25858:212;25895:18;25887:4;:26;25858:212;;25932:31;25966:17;;;:11;:17;;;;;;;;;25932:51;;;;;;;;;-1:-1:-1;;;;;25932:51:0;;;;;-1:-1:-1;;;25932:51:0;;;;;;;;;;;;25996:28;25992:71;;26044:9;25535:606;-1:-1:-1;;;;25535:606:0:o;25992:71::-;-1:-1:-1;25915:6:0;;;;:::i;:::-;;;;25858:212;;;-1:-1:-1;26078:57:0;;-1:-1:-1;;;26078:57:0;;16801:2:1;26078:57:0;;;16783:21:1;16840:2;16820:18;;;16813:30;16879:34;16859:18;;;16852:62;-1:-1:-1;;;16930:18:1;;;16923:45;16985:19;;26078:57:0;16599:411:1;39192:191:0;39285:6;;;-1:-1:-1;;;;;39302:17:0;;;-1:-1:-1;;;;;;39302:17:0;;;;;;;39335:40;;39285:6;;;39302:17;39285:6;;39335:40;;39266:16;;39335:40;39255:128;39192:191;:::o;29833:98::-;29898:27;29908:2;29912:8;29898:27;;;;;;;;;;;;:9;:27::i;35036:690::-;35173:4;-1:-1:-1;;;;;35190:13:0;;3652:19;:23;35186:535;;35229:72;;-1:-1:-1;;;35229:72:0;;-1:-1:-1;;;;;35229:36:0;;;;;:72;;21118:10;;35280:4;;35286:7;;35295:5;;35229:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35229:72:0;;;;;;;;-1:-1:-1;;35229:72:0;;;;;;;;;;;;:::i;:::-;;;35216:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35460:13:0;;35456:215;;35493:61;;-1:-1:-1;;;35493:61:0;;;;;;;:::i;35456:215::-;35639:6;35633:13;35624:6;35620:2;35616:15;35609:38;35216:464;-1:-1:-1;;;;;;35351:55:0;-1:-1:-1;;;35351:55:0;;-1:-1:-1;35344:62:0;;35186:535;-1:-1:-1;35709:4:0;35036:690;;;;;;:::o;40656:117::-;40716:13;40749:16;40742:23;;;;;:::i;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;30186:1272;30291:20;30314:12;-1:-1:-1;;;;;30341:16:0;;30333:62;;;;-1:-1:-1;;;30333:62:0;;15504:2:1;30333:62:0;;;15486:21:1;15543:2;15523:18;;;15516:30;15582:34;15562:18;;;15555:62;-1:-1:-1;;;15633:18:1;;;15626:31;15674:19;;30333:62:0;15302:397:1;30333:62:0;30532:21;30540:12;29779:4;29809:12;-1:-1:-1;29799:22:0;29722:105;30532:21;30531:22;30523:64;;;;-1:-1:-1;;;30523:64:0;;15146:2:1;30523:64:0;;;15128:21:1;15185:2;15165:18;;;15158:30;15224:31;15204:18;;;15197:59;15273:18;;30523:64:0;14944:353:1;30523:64:0;30614:12;30602:8;:24;;30594:71;;;;-1:-1:-1;;;30594:71:0;;17631:2:1;30594:71:0;;;17613:21:1;17670:2;17650:18;;;17643:30;17709:34;17689:18;;;17682:62;-1:-1:-1;;;17760:18:1;;;17753:32;17802:19;;30594:71:0;17429:398:1;30594:71:0;-1:-1:-1;;;;;30777:16:0;;30744:30;30777:16;;;:12;:16;;;;;;;;;30744:49;;;;;;;;;-1:-1:-1;;;;;30744:49:0;;;;;-1:-1:-1;;;30744:49:0;;;;;;;;;;;30819:119;;;;;;;;30839:19;;30744:49;;30819:119;;;30839:39;;30869:8;;30839:39;:::i;:::-;-1:-1:-1;;;;;30819:119:0;;;;;30922:8;30887:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;30819:119:0;;;;;;-1:-1:-1;;;;;30800:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;30800:138:0;;;;;;;;;;;;30973:43;;;;;;;;;;;30999:15;30973:43;;;;;;;;30945:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;30945:71:0;-1:-1:-1;;;;;;30945:71:0;;;;;;;;;;;;;;;;;;30957:12;;31069:281;31093:8;31089:1;:12;31069:281;;;31122:38;;31147:12;;-1:-1:-1;;;;;31122:38:0;;;31139:1;;31122:38;;31139:1;;31122:38;31187:59;31218:1;31222:2;31226:12;31240:5;31187:22;:59::i;:::-;31169:150;;;;-1:-1:-1;;;31169:150:0;;;;;;;:::i;:::-;31328:14;;;;:::i;:::-;;;;31103:3;;;;;:::i;:::-;;;;31069:281;;;-1:-1:-1;31358:12:0;:27;;;31392:60;29172:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;1067:388::-;1135:6;1143;1196:2;1184:9;1175:7;1171:23;1167:32;1164:52;;;1212:1;1209;1202:12;1164:52;1251:9;1238:23;1270:31;1295:5;1270:31;:::i;:::-;1320:5;-1:-1:-1;1377:2:1;1362:18;;1349:32;1390:33;1349:32;1390:33;:::i;:::-;1442:7;1432:17;;;1067:388;;;;;:::o;1460:456::-;1537:6;1545;1553;1606:2;1594:9;1585:7;1581:23;1577:32;1574:52;;;1622:1;1619;1612:12;1574:52;1661:9;1648:23;1680:31;1705:5;1680:31;:::i;:::-;1730:5;-1:-1:-1;1787:2:1;1772:18;;1759:32;1800:33;1759:32;1800:33;:::i;:::-;1460:456;;1852:7;;-1:-1:-1;;;1906:2:1;1891:18;;;;1878:32;;1460:456::o;1921:794::-;2016:6;2024;2032;2040;2093:3;2081:9;2072:7;2068:23;2064:33;2061:53;;;2110:1;2107;2100:12;2061:53;2149:9;2136:23;2168:31;2193:5;2168:31;:::i;:::-;2218:5;-1:-1:-1;2275:2:1;2260:18;;2247:32;2288:33;2247:32;2288:33;:::i;:::-;2340:7;-1:-1:-1;2394:2:1;2379:18;;2366:32;;-1:-1:-1;2449:2:1;2434:18;;2421:32;2476:18;2465:30;;2462:50;;;2508:1;2505;2498:12;2462:50;2531:22;;2584:4;2576:13;;2572:27;-1:-1:-1;2562:55:1;;2613:1;2610;2603:12;2562:55;2636:73;2701:7;2696:2;2683:16;2678:2;2674;2670:11;2636:73;:::i;:::-;2626:83;;;1921:794;;;;;;;:::o;2720:315::-;2785:6;2793;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:31;2945:5;2920:31;:::i;:::-;2970:5;-1:-1:-1;2994:35:1;3025:2;3010:18;;2994:35;:::i;:::-;2984:45;;2720:315;;;;;:::o;3040:::-;3108:6;3116;3169:2;3157:9;3148:7;3144:23;3140:32;3137:52;;;3185:1;3182;3175:12;3137:52;3224:9;3211:23;3243:31;3268:5;3243:31;:::i;:::-;3293:5;3345:2;3330:18;;;;3317:32;;-1:-1:-1;;;3040:315:1:o;3360:180::-;3416:6;3469:2;3457:9;3448:7;3444:23;3440:32;3437:52;;;3485:1;3482;3475:12;3437:52;3508:26;3524:9;3508:26;:::i;3545:245::-;3603:6;3656:2;3644:9;3635:7;3631:23;3627:32;3624:52;;;3672:1;3669;3662:12;3624:52;3711:9;3698:23;3730:30;3754:5;3730:30;:::i;3795:249::-;3864:6;3917:2;3905:9;3896:7;3892:23;3888:32;3885:52;;;3933:1;3930;3923:12;3885:52;3965:9;3959:16;3984:30;4008:5;3984:30;:::i;4049:280::-;4148:6;4201:2;4189:9;4180:7;4176:23;4172:32;4169:52;;;4217:1;4214;4207:12;4169:52;4249:9;4243:16;4268:31;4293:5;4268:31;:::i;4334:450::-;4403:6;4456:2;4444:9;4435:7;4431:23;4427:32;4424:52;;;4472:1;4469;4462:12;4424:52;4512:9;4499:23;4545:18;4537:6;4534:30;4531:50;;;4577:1;4574;4567:12;4531:50;4600:22;;4653:4;4645:13;;4641:27;-1:-1:-1;4631:55:1;;4682:1;4679;4672:12;4631:55;4705:73;4770:7;4765:2;4752:16;4747:2;4743;4739:11;4705:73;:::i;4789:180::-;4848:6;4901:2;4889:9;4880:7;4876:23;4872:32;4869:52;;;4917:1;4914;4907:12;4869:52;-1:-1:-1;4940:23:1;;4789:180;-1:-1:-1;4789:180:1:o;4974:248::-;5042:6;5050;5103:2;5091:9;5082:7;5078:23;5074:32;5071:52;;;5119:1;5116;5109:12;5071:52;-1:-1:-1;;5142:23:1;;;5212:2;5197:18;;;5184:32;;-1:-1:-1;4974:248:1:o;5227:257::-;5268:3;5306:5;5300:12;5333:6;5328:3;5321:19;5349:63;5405:6;5398:4;5393:3;5389:14;5382:4;5375:5;5371:16;5349:63;:::i;:::-;5466:2;5445:15;-1:-1:-1;;5441:29:1;5432:39;;;;5473:4;5428:50;;5227:257;-1:-1:-1;;5227:257:1:o;5489:470::-;5668:3;5706:6;5700:13;5722:53;5768:6;5763:3;5756:4;5748:6;5744:17;5722:53;:::i;:::-;5838:13;;5797:16;;;;5860:57;5838:13;5797:16;5894:4;5882:17;;5860:57;:::i;:::-;5933:20;;5489:470;-1:-1:-1;;;;5489:470:1:o;6382:488::-;-1:-1:-1;;;;;6651:15:1;;;6633:34;;6703:15;;6698:2;6683:18;;6676:43;6750:2;6735:18;;6728:34;;;6798:3;6793:2;6778:18;;6771:31;;;6576:4;;6819:45;;6844:19;;6836:6;6819:45;:::i;:::-;6811:53;6382:488;-1:-1:-1;;;;;;6382:488:1:o;7067:219::-;7216:2;7205:9;7198:21;7179:4;7236:44;7276:2;7265:9;7261:18;7253:6;7236:44;:::i;10579:406::-;10781:2;10763:21;;;10820:2;10800:18;;;10793:30;10859:34;10854:2;10839:18;;10832:62;-1:-1:-1;;;10925:2:1;10910:18;;10903:40;10975:3;10960:19;;10579:406::o;12164:356::-;12366:2;12348:21;;;12385:18;;;12378:30;12444:34;12439:2;12424:18;;12417:62;12511:2;12496:18;;12164:356::o;14524:415::-;14726:2;14708:21;;;14765:2;14745:18;;;14738:30;14804:34;14799:2;14784:18;;14777:62;-1:-1:-1;;;14870:2:1;14855:18;;14848:49;14929:3;14914:19;;14524:415::o;18360:253::-;18400:3;-1:-1:-1;;;;;18489:2:1;18486:1;18482:10;18519:2;18516:1;18512:10;18550:3;18546:2;18542:12;18537:3;18534:21;18531:47;;;18558:18;;:::i;18618:128::-;18658:3;18689:1;18685:6;18682:1;18679:13;18676:39;;;18695:18;;:::i;:::-;-1:-1:-1;18731:9:1;;18618:128::o;18751:120::-;18791:1;18817;18807:35;;18822:18;;:::i;:::-;-1:-1:-1;18856:9:1;;18751:120::o;18876:168::-;18916:7;18982:1;18978;18974:6;18970:14;18967:1;18964:21;18959:1;18952:9;18945:17;18941:45;18938:71;;;18989:18;;:::i;:::-;-1:-1:-1;19029:9:1;;18876:168::o;19049:246::-;19089:4;-1:-1:-1;;;;;19202:10:1;;;;19172;;19224:12;;;19221:38;;;19239:18;;:::i;:::-;19276:13;;19049:246;-1:-1:-1;;;19049:246:1:o;19300:125::-;19340:4;19368:1;19365;19362:8;19359:34;;;19373:18;;:::i;:::-;-1:-1:-1;19410:9:1;;19300:125::o;19430:258::-;19502:1;19512:113;19526:6;19523:1;19520:13;19512:113;;;19602:11;;;19596:18;19583:11;;;19576:39;19548:2;19541:10;19512:113;;;19643:6;19640:1;19637:13;19634:48;;;-1:-1:-1;;19678:1:1;19660:16;;19653:27;19430:258::o;19693:136::-;19732:3;19760:5;19750:39;;19769:18;;:::i;:::-;-1:-1:-1;;;19805:18:1;;19693:136::o;19834:380::-;19913:1;19909:12;;;;19956;;;19977:61;;20031:4;20023:6;20019:17;20009:27;;19977:61;20084:2;20076:6;20073:14;20053:18;20050:38;20047:161;;;20130:10;20125:3;20121:20;20118:1;20111:31;20165:4;20162:1;20155:15;20193:4;20190:1;20183:15;20047:161;;19834:380;;;:::o;20219:135::-;20258:3;-1:-1:-1;;20279:17:1;;20276:43;;;20299:18;;:::i;:::-;-1:-1:-1;20346:1:1;20335:13;;20219:135::o;20359:112::-;20391:1;20417;20407:35;;20422:18;;:::i;:::-;-1:-1:-1;20456:9:1;;20359:112::o;20476:127::-;20537:10;20532:3;20528:20;20525:1;20518:31;20568:4;20565:1;20558:15;20592:4;20589:1;20582:15;20608:127;20669:10;20664:3;20660:20;20657:1;20650:31;20700:4;20697:1;20690:15;20724:4;20721:1;20714:15;20740:127;20801:10;20796:3;20792:20;20789:1;20782:31;20832:4;20829:1;20822:15;20856:4;20853:1;20846:15;20872:127;20933:10;20928:3;20924:20;20921:1;20914:31;20964:4;20961:1;20954:15;20988:4;20985:1;20978:15;21004:131;-1:-1:-1;;;;;21079:31:1;;21069:42;;21059:70;;21125:1;21122;21115:12;21140:131;-1:-1:-1;;;;;;21214:32:1;;21204:43;;21194:71;;21261:1;21258;21251:12
Swarm Source
ipfs://b15b3b8b7bb6fcd3174de127fab861b1e56aa81c54be5a8e42820ac5d662d18a
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.