Overview
TokenID
74
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ZinjaNFT
Compiler Version
v0.8.12+commit.f00d7308
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-13 */ /* Zinja NFT Collection https://t.me/ZINJA_ETH https://twitter.com/Zinja_ETH */ // SPDX-License-Identifier: MIT //C U ON THE MOON pragma solidity 0.8.12; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } /** * @title 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); } /** * @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); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev 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 Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function _multiMint(uint256 amount, address to) internal virtual { unchecked { _balances[to] += amount; } } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in paused state. */ constructor() { _paused = true; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } /** * @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); } } /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } } contract ZinjaNFT is ERC721, ERC721Enumerable, ERC721URIStorage, Pausable, Ownable, ERC721Burnable { bytes4 internal constant MAGIC_ON_ERC721_RECEIVED = 0x150b7a02; using Strings for uint256; uint256 public currentId = 1; uint256 gas = 5000000; address payable dev; address payable project = payable(0xB07B3d85aac55034e90bAAD28b2C1AE622517749); uint256 devFee = 10; uint256 public mintingLimit = 112; uint256 public price = 2 * 10**17; uint256 public whitelistPrice = 2 * 10**17; mapping(address => bool) feeWhitelist; mapping(address => bool) public whitelist; bool public whitelistEnabled = true; uint256 public maxMint = 1; string baseURI = "ipfs://QmaE8yTNZAWkyjc9xGVkwYX2Dxj1xRDdrJrHDdfFBB856d/"; string placeholderURI; uint256 public revealedTo = 112; string constant baseExtension = ".json"; constructor(address _dev) ERC721("Zinja NFT", "Zinja NFT") { dev = payable(_dev); } function setPrice(uint256 _price) external onlyOwner { price = _price; } function setFeeWhitelistPrice(uint256 _price) external onlyOwner { whitelistPrice = _price; } function setWhitelist(address _wallet, bool _toggle) external onlyOwner { feeWhitelist[_wallet] = _toggle; } function setBaseURI(string calldata _base) external onlyOwner { baseURI = _base; } function setPlaceholderURI(string calldata _placeholder) external onlyOwner { placeholderURI = _placeholder; } function setMintLimit(uint256 _maxMint) external onlyOwner { maxMint = _maxMint; } function loadNFTs(uint256 _uris) external onlyOwner { mintingLimit += _uris; } function pushCurrentMintId(uint256 _amount) external onlyOwner { currentId += _amount; } function pushRevealedTo(uint256 _amount) external onlyOwner { revealedTo += _amount; } function _baseURI() internal view override returns (string memory) { return baseURI; } function updateURIs(uint256[] calldata ids, string[] calldata _uris) external onlyOwner { require(ids.length == _uris.length, "Wrong array size"); for (uint i = 0; i < ids.length; i++){ _setTokenURI(ids[i], _uris[i]); } } function updateURIs(uint256[] calldata ids, string calldata _base) external onlyOwner { for (uint i = 0; i < ids.length; i++){ _setTokenURI(ids[i], concatenate(concatenate(_base, ids[i].toString()), baseExtension)); } } function updateURI(uint256 id, string memory _uri) external onlyOwner { _setTokenURI(id, _uri); } function pause() public onlyOwner { _pause(); } function unpause() public onlyOwner { _unpause(); } function mint(uint256 amount) external payable whenNotPaused { require(amount <= maxMint && amount > 0 && balanceOf(msg.sender) < maxMint, "Minting limits exceeded"); if(whitelistEnabled) require(whitelist[msg.sender], "Sorry, whitelist minting only"); unchecked{ uint256 totalCost = feeWhitelist[msg.sender] ? 0 : (whitelistEnabled && whitelist[msg.sender] ? whitelistPrice : price) * amount; require (msg.value == totalCost, "Incorrect amount paid"); uint256 mintId = currentId; require ((mintId-1) + amount <= mintingLimit, "Not enough tokens remaining"); for (uint i = 0; i < amount; i++){ _safeMint(msg.sender, mintId); mintId++; } currentId = mintId; } _multiMint(amount, msg.sender); } function claimFunds() external onlyOwner { dev.transfer((address(this).balance * devFee) / 100); project.transfer(address(this).balance); } function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal whenNotPaused override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } // The following functions are overrides required by Solidity. function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } function tokenURI(uint256 _tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { require(_exists(_tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[_tokenId]; string memory base = _baseURI(); if (bytes(_tokenURI).length > 0) { return _tokenURI; } if ((revealedTo >= _tokenId) && bytes(base).length > 0) { return concatenate(base, concatenate(_tokenId.toString(), baseExtension)); } if (bytes(placeholderURI).length > 0) { return placeholderURI; } return super.tokenURI(_tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } function getMyNFTs(address me, uint256 start, uint256 limit, uint256 _gas) external view returns (uint256[] memory myNFTIDs, string[] memory myNFTuris, uint256 lastId) { uint256 balance = balanceOf(me); if (limit == 0) limit = 1; if (balance > 0) { if (start >= balance) start = balance-1; if (start + limit > balance) limit = balance - start; myNFTIDs = new uint256[](limit); myNFTuris = new string[](limit); uint256 gasUsed = 0; uint256 gasLeft = gasleft(); for (uint256 i=0; gasUsed < (_gas > 0 ? _gas : gas) && i < limit; i++) { lastId = i+start; uint256 id = tokenOfOwnerByIndex(me, lastId); myNFTIDs[i] = id; myNFTuris[i] = tokenURI(id); gasUsed = gasUsed + (gasLeft - gasleft()); gasLeft = gasleft(); } } } function remaining() external view returns(uint256) { return mintingLimit - (currentId-1); } function enabledWhitelist(bool _enabled) external onlyOwner { whitelistEnabled = _enabled; } function loadWhitelist(address[] calldata addressList, bool _listed) external onlyOwner { for (uint256 i = 0; i < addressList.length; i++) { whitelist[addressList[i]] = _listed; } } function concatenate(string memory a, string memory b) internal pure returns (string memory) { return string(abi.encodePacked(a, b)); } //C U ON THE MOON }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_dev","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimFunds","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"currentId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"enabledWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"me","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"limit","type":"uint256"},{"internalType":"uint256","name":"_gas","type":"uint256"}],"name":"getMyNFTs","outputs":[{"internalType":"uint256[]","name":"myNFTIDs","type":"uint256[]"},{"internalType":"string[]","name":"myNFTuris","type":"string[]"},{"internalType":"uint256","name":"lastId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_uris","type":"uint256"}],"name":"loadNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addressList","type":"address[]"},{"internalType":"bool","name":"_listed","type":"bool"}],"name":"loadWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"pushCurrentMintId","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"pushRevealedTo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"remaining","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealedTo","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_base","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setFeeWhitelistPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMint","type":"uint256"}],"name":"setMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_placeholder","type":"string"}],"name":"setPlaceholderURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_toggle","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"string","name":"_uri","type":"string"}],"name":"updateURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"string","name":"_base","type":"string"}],"name":"updateURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"string[]","name":"_uris","type":"string[]"}],"name":"updateURIs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
6001600c819055624c4b40600d55600f80546001600160a01b03191673b07b3d85aac55034e90baad28b2c1ae622517749179055600a60105560706011556702c68af0bb14000060128190556013556016805460ff19168217905560175560e060405260366080818152906200384f60a03980516200008791601891602090910190620001b9565b506070601a553480156200009a57600080fd5b506040516200388538038062003885833981016040819052620000bd916200025f565b604080518082018252600980825268169a5b9a984813919560ba1b6020808401828152855180870190965292855284015281519192916200010191600091620001b9565b50805162000117906001906020840190620001b9565b5050600b805460ff191660011790555062000139620001333390565b6200015f565b600e80546001600160a01b0319166001600160a01b0392909216919091179055620002ce565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001c79062000291565b90600052602060002090601f016020900481019282620001eb576000855562000236565b82601f106200020657805160ff191683800117855562000236565b8280016001018555821562000236579182015b828111156200023657825182559160200191906001019062000219565b506200024492915062000248565b5090565b5b8082111562000244576000815560010162000249565b6000602082840312156200027257600080fd5b81516001600160a01b03811681146200028a57600080fd5b9392505050565b600181811c90821680620002a657607f821691505b60208210811415620002c857634e487b7160e01b600052602260045260246000fd5b50919050565b61357180620002de6000396000f3fe6080604052600436106102ae5760003560e01c8063715018a611610175578063ac307773116100dc578063e00dd16111610095578063e985e9c51161006f578063e985e9c514610820578063f02d9bb814610869578063f2fde38b1461087f578063fc1a1c361461089f57600080fd5b8063e00dd161146107bb578063e2285729146107d1578063e313303c146107f157600080fd5b8063ac30777314610706578063b030b12b1461071b578063b88d4fde1461073b578063c87b56dd1461075b578063d63d01681461077b578063de5f38681461079b57600080fd5b80639b19251a1161012e5780639b19251a1461064d5780639e6a1d7d1461067d578063a035b1fe1461069d578063a0712d68146106b3578063a22cb465146106c6578063a9962e4c146106e657600080fd5b8063715018a6146105b55780637501f741146105ca5780638456cb59146105e05780638da5cb5b146105f557806391b7f5ed1461061857806395d89b411461063857600080fd5b80633f4ba83a1161021957806353d6fd59116101d257806353d6fd591461050857806355234ec01461052857806355f804b31461053d5780635c975abb1461055d5780636352211e1461057557806370a082311461059557600080fd5b80633f4ba83a1461046357806342842e0e1461047857806342966c681461049857806349072f12146104b85780634f6ccce7146104ce57806351fb012d146104ee57600080fd5b806318160ddd1161026b57806318160ddd146103a457806318546706146103c357806323b872dd146103e35780632f745c591461040357806331d41c69146104235780633574a2dd1461044357600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a5780630874560914610342578063095ea7b314610364578063158ae0fa14610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612c0b565b6108b5565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd6108c6565b6040516102df9190612c80565b34801561031657600080fd5b5061032a610325366004612c93565b610958565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d366004612cc1565b6109e5565b005b34801561037057600080fd5b5061036261037f366004612cf3565b610a28565b34801561039057600080fd5b5061036261039f366004612da9565b610b3e565b3480156103b057600080fd5b506008545b6040519081526020016102df565b3480156103cf57600080fd5b506103626103de366004612e14565b610c3b565b3480156103ef57600080fd5b506103626103fe366004612e73565b610d44565b34801561040f57600080fd5b506103b561041e366004612cf3565b610d76565b34801561042f57600080fd5b5061036261043e366004612f3a565b610e0c565b34801561044f57600080fd5b5061036261045e366004612f94565b610e4a565b34801561046f57600080fd5b50610362610e86565b34801561048457600080fd5b50610362610493366004612e73565b610ec0565b3480156104a457600080fd5b506103626104b3366004612c93565b610edb565b3480156104c457600080fd5b506103b560115481565b3480156104da57600080fd5b506103b56104e9366004612c93565b610f55565b3480156104fa57600080fd5b506016546102d39060ff1681565b34801561051457600080fd5b50610362610523366004612fd5565b610fe8565b34801561053457600080fd5b506103b5611043565b34801561054957600080fd5b50610362610558366004612f94565b611066565b34801561056957600080fd5b50600b5460ff166102d3565b34801561058157600080fd5b5061032a610590366004612c93565b6110a2565b3480156105a157600080fd5b506103b56105b0366004613008565b611119565b3480156105c157600080fd5b506103626111a0565b3480156105d657600080fd5b506103b560175481565b3480156105ec57600080fd5b506103626111da565b34801561060157600080fd5b50600b5461010090046001600160a01b031661032a565b34801561062457600080fd5b50610362610633366004612c93565b611212565b34801561064457600080fd5b506102fd611247565b34801561065957600080fd5b506102d3610668366004613008565b60156020526000908152604090205460ff1681565b34801561068957600080fd5b50610362610698366004612c93565b611256565b3480156106a957600080fd5b506103b560125481565b6103626106c1366004612c93565b61128b565b3480156106d257600080fd5b506103626106e1366004612fd5565b6114c0565b3480156106f257600080fd5b50610362610701366004612c93565b6114cb565b34801561071257600080fd5b50610362611515565b34801561072757600080fd5b50610362610736366004612c93565b6115d4565b34801561074757600080fd5b50610362610756366004613023565b611609565b34801561076757600080fd5b506102fd610776366004612c93565b611641565b34801561078757600080fd5b50610362610796366004612c93565b611800565b3480156107a757600080fd5b506103626107b636600461309e565b611842565b3480156107c757600080fd5b506103b5600c5481565b3480156107dd57600080fd5b506103626107ec366004612c93565b6118e3565b3480156107fd57600080fd5b5061081161080c3660046130f1565b611925565b6040516102df9392919061312a565b34801561082c57600080fd5b506102d361083b3660046131cb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561087557600080fd5b506103b5601a5481565b34801561088b57600080fd5b5061036261089a366004613008565b611ad4565b3480156108ab57600080fd5b506103b560135481565b60006108c082611b72565b92915050565b6060600080546108d5906131f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610901906131f5565b801561094e5780601f106109235761010080835404028352916020019161094e565b820191906000526020600020905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b600061096382611b97565b6109c95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600b546001600160a01b03610100909104163314610a155760405162461bcd60e51b81526004016109c090613230565b6016805460ff1916911515919091179055565b6000610a33826110a2565b9050806001600160a01b0316836001600160a01b03161415610aa15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109c0565b336001600160a01b0382161480610abd5750610abd813361083b565b610b2f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109c0565b610b398383611bb4565b505050565b600b546001600160a01b03610100909104163314610b6e5760405162461bcd60e51b81526004016109c090613230565b60005b83811015610c3457610c22858583818110610b8e57610b8e613265565b90506020020135610c1d610bfa86868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610bf592508c91508b905088818110610be957610be9613265565b90506020020135611c22565b611d1f565b60405180604001604052806005815260200164173539b7b760d91b815250611d1f565b611d4b565b80610c2c81613291565b915050610b71565b5050505050565b600b546001600160a01b03610100909104163314610c6b5760405162461bcd60e51b81526004016109c090613230565b828114610cad5760405162461bcd60e51b815260206004820152601060248201526f57726f6e672061727261792073697a6560801b60448201526064016109c0565b60005b83811015610c3457610d32858583818110610ccd57610ccd613265565b90506020020135848484818110610ce657610ce6613265565b9050602002810190610cf891906132ac565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611d4b92505050565b80610d3c81613291565b915050610cb0565b610d4f335b82611dd6565b610d6b5760405162461bcd60e51b81526004016109c0906132f2565b610b39838383611ebc565b6000610d8183611119565b8210610de35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109c0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610e3c5760405162461bcd60e51b81526004016109c090613230565b610e468282611d4b565b5050565b600b546001600160a01b03610100909104163314610e7a5760405162461bcd60e51b81526004016109c090613230565b610b3960198383612ab2565b600b546001600160a01b03610100909104163314610eb65760405162461bcd60e51b81526004016109c090613230565b610ebe612067565b565b610b3983838360405180602001604052806000815250611609565b610ee433610d49565b610f495760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016109c0565b610f52816120fa565b50565b6000610f6060085490565b8210610fc35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109c0565b60088281548110610fd657610fd6613265565b90600052602060002001549050919050565b600b546001600160a01b036101009091041633146110185760405162461bcd60e51b81526004016109c090613230565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b60006001600c546110549190613343565b6011546110619190613343565b905090565b600b546001600160a01b036101009091041633146110965760405162461bcd60e51b81526004016109c090613230565b610b3960188383612ab2565b6000818152600260205260408120546001600160a01b0316806108c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109c0565b60006001600160a01b0382166111845760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109c0565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b036101009091041633146111d05760405162461bcd60e51b81526004016109c090613230565b610ebe6000612103565b600b546001600160a01b0361010090910416331461120a5760405162461bcd60e51b81526004016109c090613230565b610ebe61215d565b600b546001600160a01b036101009091041633146112425760405162461bcd60e51b81526004016109c090613230565b601255565b6060600180546108d5906131f5565b600b546001600160a01b036101009091041633146112865760405162461bcd60e51b81526004016109c090613230565b601755565b600b5460ff16156112ae5760405162461bcd60e51b81526004016109c09061335a565b60175481111580156112c05750600081115b80156112d557506017546112d333611119565b105b6113215760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206c696d69747320657863656564656400000000000000000060448201526064016109c0565b60165460ff161561138b573360009081526015602052604090205460ff1661138b5760405162461bcd60e51b815260206004820152601d60248201527f536f7272792c2077686974656c697374206d696e74696e67206f6e6c7900000060448201526064016109c0565b3360009081526014602052604081205460ff166113db57601654829060ff1680156113c557503360009081526015602052604090205460ff165b6113d1576012546113d5565b6013545b026113de565b60005b90508034146114275760405162461bcd60e51b8152602060048201526015602482015274125b98dbdc9c9958dd08185b5bdd5b9d081c185a59605a1b60448201526064016109c0565b600c546011548382016000190111156114825760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e67000000000060448201526064016109c0565b60005b838110156114a35761149733836121b5565b60019182019101611485565b50600c555033600090815260036020526040902080548201905550565b610e463383836121cf565b600b546001600160a01b036101009091041633146114fb5760405162461bcd60e51b81526004016109c090613230565b80600c600082825461150d9190613384565b909155505050565b600b546001600160a01b036101009091041633146115455760405162461bcd60e51b81526004016109c090613230565b600e546010546001600160a01b03909116906108fc90606490611568904761339c565b61157291906133d1565b6040518115909202916000818181858888f1935050505015801561159a573d6000803e3d6000fd5b50600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610f52573d6000803e3d6000fd5b600b546001600160a01b036101009091041633146116045760405162461bcd60e51b81526004016109c090613230565b601355565b6116133383611dd6565b61162f5760405162461bcd60e51b81526004016109c0906132f2565b61163b8484848461229e565b50505050565b606061164c82611b97565b6116685760405162461bcd60e51b81526004016109c0906133e5565b6000828152600a602052604081208054611681906131f5565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad906131f5565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b50505050509050600061170b6122d1565b82519091501561171c575092915050565b83601a541015801561172f575060008151115b1561174c5761174481610bf5610bfa87611c22565b949350505050565b60006019805461175b906131f5565b905011156117f75760198054611770906131f5565b80601f016020809104026020016040519081016040528092919081815260200182805461179c906131f5565b80156117e95780601f106117be576101008083540402835291602001916117e9565b820191906000526020600020905b8154815290600101906020018083116117cc57829003601f168201915b505050505092505050919050565b611744846122e0565b600b546001600160a01b036101009091041633146118305760405162461bcd60e51b81526004016109c090613230565b80601a600082825461150d9190613384565b600b546001600160a01b036101009091041633146118725760405162461bcd60e51b81526004016109c090613230565b60005b8281101561163b57816015600086868581811061189457611894613265565b90506020020160208101906118a99190613008565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806118db81613291565b915050611875565b600b546001600160a01b036101009091041633146119135760405162461bcd60e51b81526004016109c090613230565b806011600082825461150d9190613384565b60608060008061193488611119565b90508561194057600195505b8015611ac95780871061195b57611958600182613343565b96505b806119668789613384565b1115611979576119768782613343565b95505b856001600160401b0381111561199157611991612eaf565b6040519080825280602002602001820160405280156119ba578160200160208202803683370190505b509350856001600160401b038111156119d5576119d5612eaf565b604051908082528060200260200182016040528015611a0857816020015b60608152602001906001900390816119f35790505b5092506000805a905060005b60008811611a2457600d54611a26565b875b83108015611a3357508881105b15611ac557611a428a82613384565b94506000611a508c87610d76565b905080888381518110611a6557611a65613265565b602002602001018181525050611a7a81611641565b878381518110611a8c57611a8c613265565b60200260200101819052505a611aa29084613343565b611aac9085613384565b93505a9250508080611abd90613291565b915050611a14565b5050505b509450945094915050565b600b546001600160a01b03610100909104163314611b045760405162461bcd60e51b81526004016109c090613230565b6001600160a01b038116611b695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c0565b610f5281612103565b60006001600160e01b0319821663780e9d6360e01b14806108c057506108c0826123f8565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611be9826110a2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606081611c465750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c705780611c5a81613291565b9150611c699050600a836133d1565b9150611c4a565b6000816001600160401b03811115611c8a57611c8a612eaf565b6040519080825280601f01601f191660200182016040528015611cb4576020820181803683370190505b5090505b841561174457611cc9600183613343565b9150611cd6600a86613436565b611ce1906030613384565b60f81b818381518110611cf657611cf6613265565b60200101906001600160f81b031916908160001a905350611d18600a866133d1565b9450611cb8565b60608282604051602001611d3492919061344a565b604051602081830303815290604052905092915050565b611d5482611b97565b611db75760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016109c0565b6000828152600a602090815260409091208251610b3992840190612b36565b6000611de182611b97565b611e425760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109c0565b6000611e4d836110a2565b9050806001600160a01b0316846001600160a01b03161480611e885750836001600160a01b0316611e7d84610958565b6001600160a01b0316145b8061174457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611744565b826001600160a01b0316611ecf826110a2565b6001600160a01b031614611f375760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109c0565b6001600160a01b038216611f995760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109c0565b611fa4838383612448565b611faf600082611bb4565b6001600160a01b0383166000908152600360205260408120805460019290611fd8908490613343565b90915550506001600160a01b0382166000908152600360205260408120805460019290612006908490613384565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff166120b05760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109c0565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610f5281612476565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460ff16156121805760405162461bcd60e51b81526004016109c09061335a565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120dd3390565b610e468282604051806020016040528060008152506124b6565b816001600160a01b0316836001600160a01b031614156122315760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109c0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122a9848484611ebc565b6122b5848484846124e9565b61163b5760405162461bcd60e51b81526004016109c090613479565b6060601880546108d5906131f5565b60606122eb82611b97565b6123075760405162461bcd60e51b81526004016109c0906133e5565b6000828152600a602052604081208054612320906131f5565b80601f016020809104026020016040519081016040528092919081815260200182805461234c906131f5565b80156123995780601f1061236e57610100808354040283529160200191612399565b820191906000526020600020905b81548152906001019060200180831161237c57829003601f168201915b5050505050905060006123aa6122d1565b90508051600014156123bd575092915050565b8151156123ef5780826040516020016123d792919061344a565b60405160208183030381529060405292505050919050565b611744846125e7565b60006001600160e01b031982166380ac58cd60e01b148061242957506001600160e01b03198216635b5e139f60e01b145b806108c057506301ffc9a760e01b6001600160e01b03198316146108c0565b600b5460ff161561246b5760405162461bcd60e51b81526004016109c09061335a565b610b398383836126b2565b61247f8161276a565b6000818152600a602052604090208054612498906131f5565b159050610f52576000818152600a60205260408120610f5291612baa565b6124c08383612811565b6124cd60008484846124e9565b610b395760405162461bcd60e51b81526004016109c090613479565b60006001600160a01b0384163b156125dc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061252d9033908990889088906004016134cb565b6020604051808303816000875af1925050508015612568575060408051601f3d908101601f1916820190925261256591810190613508565b60015b6125c2573d808015612596576040519150601f19603f3d011682016040523d82523d6000602084013e61259b565b606091505b5080516125ba5760405162461bcd60e51b81526004016109c090613479565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611744565b506001949350505050565b60606125f282611b97565b6126565760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c0565b60006126606122d1565b9050600081511161268057604051806020016040528060008152506126ab565b8061268a84611c22565b60405160200161269b92919061344a565b6040516020818303038152906040525b9392505050565b6001600160a01b03831661270d5761270881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612730565b816001600160a01b0316836001600160a01b031614612730576127308382612922565b6001600160a01b03821661274757610b39816129bf565b826001600160a01b0316826001600160a01b031614610b3957610b398282612a6e565b6000612775826110a2565b905061278381600084612448565b61278e600083611bb4565b6001600160a01b03811660009081526003602052604081208054600192906127b7908490613343565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0382166128675760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109c0565b61287081611b97565b156128bd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109c0565b6128c960008383612448565b60008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161292f84611119565b6129399190613343565b60008381526007602052604090205490915080821461298c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906129d190600190613343565b600083815260096020526040812054600880549394509092849081106129f9576129f9613265565b906000526020600020015490508060088381548110612a1a57612a1a613265565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a5257612a52613525565b6001900381819060005260206000200160009055905550505050565b6000612a7983611119565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612abe906131f5565b90600052602060002090601f016020900481019282612ae05760008555612b26565b82601f10612af95782800160ff19823516178555612b26565b82800160010185558215612b26579182015b82811115612b26578235825591602001919060010190612b0b565b50612b32929150612be0565b5090565b828054612b42906131f5565b90600052602060002090601f016020900481019282612b645760008555612b26565b82601f10612b7d57805160ff1916838001178555612b26565b82800160010185558215612b26579182015b82811115612b26578251825591602001919060010190612b8f565b508054612bb6906131f5565b6000825580601f10612bc6575050565b601f016020900490600052602060002090810190610f5291905b5b80821115612b325760008155600101612be1565b6001600160e01b031981168114610f5257600080fd5b600060208284031215612c1d57600080fd5b81356126ab81612bf5565b60005b83811015612c43578181015183820152602001612c2b565b8381111561163b5750506000910152565b60008151808452612c6c816020860160208601612c28565b601f01601f19169290920160200192915050565b6020815260006126ab6020830184612c54565b600060208284031215612ca557600080fd5b5035919050565b80358015158114612cbc57600080fd5b919050565b600060208284031215612cd357600080fd5b6126ab82612cac565b80356001600160a01b0381168114612cbc57600080fd5b60008060408385031215612d0657600080fd5b612d0f83612cdc565b946020939093013593505050565b60008083601f840112612d2f57600080fd5b5081356001600160401b03811115612d4657600080fd5b6020830191508360208260051b8501011115612d6157600080fd5b9250929050565b60008083601f840112612d7a57600080fd5b5081356001600160401b03811115612d9157600080fd5b602083019150836020828501011115612d6157600080fd5b60008060008060408587031215612dbf57600080fd5b84356001600160401b0380821115612dd657600080fd5b612de288838901612d1d565b90965094506020870135915080821115612dfb57600080fd5b50612e0887828801612d68565b95989497509550505050565b60008060008060408587031215612e2a57600080fd5b84356001600160401b0380821115612e4157600080fd5b612e4d88838901612d1d565b90965094506020870135915080821115612e6657600080fd5b50612e0887828801612d1d565b600080600060608486031215612e8857600080fd5b612e9184612cdc565b9250612e9f60208501612cdc565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612edf57612edf612eaf565b604051601f8501601f19908116603f01168101908282118183101715612f0757612f07612eaf565b81604052809350858152868686011115612f2057600080fd5b858560208301376000602087830101525050509392505050565b60008060408385031215612f4d57600080fd5b8235915060208301356001600160401b03811115612f6a57600080fd5b8301601f81018513612f7b57600080fd5b612f8a85823560208401612ec5565b9150509250929050565b60008060208385031215612fa757600080fd5b82356001600160401b03811115612fbd57600080fd5b612fc985828601612d68565b90969095509350505050565b60008060408385031215612fe857600080fd5b612ff183612cdc565b9150612fff60208401612cac565b90509250929050565b60006020828403121561301a57600080fd5b6126ab82612cdc565b6000806000806080858703121561303957600080fd5b61304285612cdc565b935061305060208601612cdc565b92506040850135915060608501356001600160401b0381111561307257600080fd5b8501601f8101871361308357600080fd5b61309287823560208401612ec5565b91505092959194509250565b6000806000604084860312156130b357600080fd5b83356001600160401b038111156130c957600080fd5b6130d586828701612d1d565b90945092506130e8905060208501612cac565b90509250925092565b6000806000806080858703121561310757600080fd5b61311085612cdc565b966020860135965060408601359560600135945092505050565b606080825284519082018190526000906020906080840190828801845b8281101561316357815184529284019290840190600101613147565b50505083810382850152855180825282820190600581901b8301840188850160005b838110156131b357601f198684030185526131a1838351612c54565b94870194925090860190600101613185565b50508095505050505050826040830152949350505050565b600080604083850312156131de57600080fd5b6131e783612cdc565b9150612fff60208401612cdc565b600181811c9082168061320957607f821691505b6020821081141561322a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156132a5576132a561327b565b5060010190565b6000808335601e198436030181126132c357600080fd5b8301803591506001600160401b038211156132dd57600080fd5b602001915036819003821315612d6157600080fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000828210156133555761335561327b565b500390565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b600082198211156133975761339761327b565b500190565b60008160001904831182151516156133b6576133b661327b565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826133e0576133e06133bb565b500490565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b600082613445576134456133bb565b500690565b6000835161345c818460208801612c28565b835190830190613470818360208801612c28565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134fe90830184612c54565b9695505050505050565b60006020828403121561351a57600080fd5b81516126ab81612bf5565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f0de623bd73c49d3aa44b5d296529242d1403000e724c2d7adbf2c13ffb83a5264736f6c634300080c0033697066733a2f2f516d61453879544e5a41576b796a63397847566b7759583244786a3178524464724a7248446466464242383536642f00000000000000000000000002602dd62555dd2ef6e5e2626991ed197fc79ce3
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c8063715018a611610175578063ac307773116100dc578063e00dd16111610095578063e985e9c51161006f578063e985e9c514610820578063f02d9bb814610869578063f2fde38b1461087f578063fc1a1c361461089f57600080fd5b8063e00dd161146107bb578063e2285729146107d1578063e313303c146107f157600080fd5b8063ac30777314610706578063b030b12b1461071b578063b88d4fde1461073b578063c87b56dd1461075b578063d63d01681461077b578063de5f38681461079b57600080fd5b80639b19251a1161012e5780639b19251a1461064d5780639e6a1d7d1461067d578063a035b1fe1461069d578063a0712d68146106b3578063a22cb465146106c6578063a9962e4c146106e657600080fd5b8063715018a6146105b55780637501f741146105ca5780638456cb59146105e05780638da5cb5b146105f557806391b7f5ed1461061857806395d89b411461063857600080fd5b80633f4ba83a1161021957806353d6fd59116101d257806353d6fd591461050857806355234ec01461052857806355f804b31461053d5780635c975abb1461055d5780636352211e1461057557806370a082311461059557600080fd5b80633f4ba83a1461046357806342842e0e1461047857806342966c681461049857806349072f12146104b85780634f6ccce7146104ce57806351fb012d146104ee57600080fd5b806318160ddd1161026b57806318160ddd146103a457806318546706146103c357806323b872dd146103e35780632f745c591461040357806331d41c69146104235780633574a2dd1461044357600080fd5b806301ffc9a7146102b357806306fdde03146102e8578063081812fc1461030a5780630874560914610342578063095ea7b314610364578063158ae0fa14610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612c0b565b6108b5565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b506102fd6108c6565b6040516102df9190612c80565b34801561031657600080fd5b5061032a610325366004612c93565b610958565b6040516001600160a01b0390911681526020016102df565b34801561034e57600080fd5b5061036261035d366004612cc1565b6109e5565b005b34801561037057600080fd5b5061036261037f366004612cf3565b610a28565b34801561039057600080fd5b5061036261039f366004612da9565b610b3e565b3480156103b057600080fd5b506008545b6040519081526020016102df565b3480156103cf57600080fd5b506103626103de366004612e14565b610c3b565b3480156103ef57600080fd5b506103626103fe366004612e73565b610d44565b34801561040f57600080fd5b506103b561041e366004612cf3565b610d76565b34801561042f57600080fd5b5061036261043e366004612f3a565b610e0c565b34801561044f57600080fd5b5061036261045e366004612f94565b610e4a565b34801561046f57600080fd5b50610362610e86565b34801561048457600080fd5b50610362610493366004612e73565b610ec0565b3480156104a457600080fd5b506103626104b3366004612c93565b610edb565b3480156104c457600080fd5b506103b560115481565b3480156104da57600080fd5b506103b56104e9366004612c93565b610f55565b3480156104fa57600080fd5b506016546102d39060ff1681565b34801561051457600080fd5b50610362610523366004612fd5565b610fe8565b34801561053457600080fd5b506103b5611043565b34801561054957600080fd5b50610362610558366004612f94565b611066565b34801561056957600080fd5b50600b5460ff166102d3565b34801561058157600080fd5b5061032a610590366004612c93565b6110a2565b3480156105a157600080fd5b506103b56105b0366004613008565b611119565b3480156105c157600080fd5b506103626111a0565b3480156105d657600080fd5b506103b560175481565b3480156105ec57600080fd5b506103626111da565b34801561060157600080fd5b50600b5461010090046001600160a01b031661032a565b34801561062457600080fd5b50610362610633366004612c93565b611212565b34801561064457600080fd5b506102fd611247565b34801561065957600080fd5b506102d3610668366004613008565b60156020526000908152604090205460ff1681565b34801561068957600080fd5b50610362610698366004612c93565b611256565b3480156106a957600080fd5b506103b560125481565b6103626106c1366004612c93565b61128b565b3480156106d257600080fd5b506103626106e1366004612fd5565b6114c0565b3480156106f257600080fd5b50610362610701366004612c93565b6114cb565b34801561071257600080fd5b50610362611515565b34801561072757600080fd5b50610362610736366004612c93565b6115d4565b34801561074757600080fd5b50610362610756366004613023565b611609565b34801561076757600080fd5b506102fd610776366004612c93565b611641565b34801561078757600080fd5b50610362610796366004612c93565b611800565b3480156107a757600080fd5b506103626107b636600461309e565b611842565b3480156107c757600080fd5b506103b5600c5481565b3480156107dd57600080fd5b506103626107ec366004612c93565b6118e3565b3480156107fd57600080fd5b5061081161080c3660046130f1565b611925565b6040516102df9392919061312a565b34801561082c57600080fd5b506102d361083b3660046131cb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561087557600080fd5b506103b5601a5481565b34801561088b57600080fd5b5061036261089a366004613008565b611ad4565b3480156108ab57600080fd5b506103b560135481565b60006108c082611b72565b92915050565b6060600080546108d5906131f5565b80601f0160208091040260200160405190810160405280929190818152602001828054610901906131f5565b801561094e5780601f106109235761010080835404028352916020019161094e565b820191906000526020600020905b81548152906001019060200180831161093157829003601f168201915b5050505050905090565b600061096382611b97565b6109c95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600b546001600160a01b03610100909104163314610a155760405162461bcd60e51b81526004016109c090613230565b6016805460ff1916911515919091179055565b6000610a33826110a2565b9050806001600160a01b0316836001600160a01b03161415610aa15760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109c0565b336001600160a01b0382161480610abd5750610abd813361083b565b610b2f5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109c0565b610b398383611bb4565b505050565b600b546001600160a01b03610100909104163314610b6e5760405162461bcd60e51b81526004016109c090613230565b60005b83811015610c3457610c22858583818110610b8e57610b8e613265565b90506020020135610c1d610bfa86868080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250610bf592508c91508b905088818110610be957610be9613265565b90506020020135611c22565b611d1f565b60405180604001604052806005815260200164173539b7b760d91b815250611d1f565b611d4b565b80610c2c81613291565b915050610b71565b5050505050565b600b546001600160a01b03610100909104163314610c6b5760405162461bcd60e51b81526004016109c090613230565b828114610cad5760405162461bcd60e51b815260206004820152601060248201526f57726f6e672061727261792073697a6560801b60448201526064016109c0565b60005b83811015610c3457610d32858583818110610ccd57610ccd613265565b90506020020135848484818110610ce657610ce6613265565b9050602002810190610cf891906132ac565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611d4b92505050565b80610d3c81613291565b915050610cb0565b610d4f335b82611dd6565b610d6b5760405162461bcd60e51b81526004016109c0906132f2565b610b39838383611ebc565b6000610d8183611119565b8210610de35760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109c0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610e3c5760405162461bcd60e51b81526004016109c090613230565b610e468282611d4b565b5050565b600b546001600160a01b03610100909104163314610e7a5760405162461bcd60e51b81526004016109c090613230565b610b3960198383612ab2565b600b546001600160a01b03610100909104163314610eb65760405162461bcd60e51b81526004016109c090613230565b610ebe612067565b565b610b3983838360405180602001604052806000815250611609565b610ee433610d49565b610f495760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b60648201526084016109c0565b610f52816120fa565b50565b6000610f6060085490565b8210610fc35760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109c0565b60088281548110610fd657610fd6613265565b90600052602060002001549050919050565b600b546001600160a01b036101009091041633146110185760405162461bcd60e51b81526004016109c090613230565b6001600160a01b03919091166000908152601460205260409020805460ff1916911515919091179055565b60006001600c546110549190613343565b6011546110619190613343565b905090565b600b546001600160a01b036101009091041633146110965760405162461bcd60e51b81526004016109c090613230565b610b3960188383612ab2565b6000818152600260205260408120546001600160a01b0316806108c05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109c0565b60006001600160a01b0382166111845760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109c0565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b036101009091041633146111d05760405162461bcd60e51b81526004016109c090613230565b610ebe6000612103565b600b546001600160a01b0361010090910416331461120a5760405162461bcd60e51b81526004016109c090613230565b610ebe61215d565b600b546001600160a01b036101009091041633146112425760405162461bcd60e51b81526004016109c090613230565b601255565b6060600180546108d5906131f5565b600b546001600160a01b036101009091041633146112865760405162461bcd60e51b81526004016109c090613230565b601755565b600b5460ff16156112ae5760405162461bcd60e51b81526004016109c09061335a565b60175481111580156112c05750600081115b80156112d557506017546112d333611119565b105b6113215760405162461bcd60e51b815260206004820152601760248201527f4d696e74696e67206c696d69747320657863656564656400000000000000000060448201526064016109c0565b60165460ff161561138b573360009081526015602052604090205460ff1661138b5760405162461bcd60e51b815260206004820152601d60248201527f536f7272792c2077686974656c697374206d696e74696e67206f6e6c7900000060448201526064016109c0565b3360009081526014602052604081205460ff166113db57601654829060ff1680156113c557503360009081526015602052604090205460ff165b6113d1576012546113d5565b6013545b026113de565b60005b90508034146114275760405162461bcd60e51b8152602060048201526015602482015274125b98dbdc9c9958dd08185b5bdd5b9d081c185a59605a1b60448201526064016109c0565b600c546011548382016000190111156114825760405162461bcd60e51b815260206004820152601b60248201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e67000000000060448201526064016109c0565b60005b838110156114a35761149733836121b5565b60019182019101611485565b50600c555033600090815260036020526040902080548201905550565b610e463383836121cf565b600b546001600160a01b036101009091041633146114fb5760405162461bcd60e51b81526004016109c090613230565b80600c600082825461150d9190613384565b909155505050565b600b546001600160a01b036101009091041633146115455760405162461bcd60e51b81526004016109c090613230565b600e546010546001600160a01b03909116906108fc90606490611568904761339c565b61157291906133d1565b6040518115909202916000818181858888f1935050505015801561159a573d6000803e3d6000fd5b50600f546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610f52573d6000803e3d6000fd5b600b546001600160a01b036101009091041633146116045760405162461bcd60e51b81526004016109c090613230565b601355565b6116133383611dd6565b61162f5760405162461bcd60e51b81526004016109c0906132f2565b61163b8484848461229e565b50505050565b606061164c82611b97565b6116685760405162461bcd60e51b81526004016109c0906133e5565b6000828152600a602052604081208054611681906131f5565b80601f01602080910402602001604051908101604052809291908181526020018280546116ad906131f5565b80156116fa5780601f106116cf576101008083540402835291602001916116fa565b820191906000526020600020905b8154815290600101906020018083116116dd57829003601f168201915b50505050509050600061170b6122d1565b82519091501561171c575092915050565b83601a541015801561172f575060008151115b1561174c5761174481610bf5610bfa87611c22565b949350505050565b60006019805461175b906131f5565b905011156117f75760198054611770906131f5565b80601f016020809104026020016040519081016040528092919081815260200182805461179c906131f5565b80156117e95780601f106117be576101008083540402835291602001916117e9565b820191906000526020600020905b8154815290600101906020018083116117cc57829003601f168201915b505050505092505050919050565b611744846122e0565b600b546001600160a01b036101009091041633146118305760405162461bcd60e51b81526004016109c090613230565b80601a600082825461150d9190613384565b600b546001600160a01b036101009091041633146118725760405162461bcd60e51b81526004016109c090613230565b60005b8281101561163b57816015600086868581811061189457611894613265565b90506020020160208101906118a99190613008565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806118db81613291565b915050611875565b600b546001600160a01b036101009091041633146119135760405162461bcd60e51b81526004016109c090613230565b806011600082825461150d9190613384565b60608060008061193488611119565b90508561194057600195505b8015611ac95780871061195b57611958600182613343565b96505b806119668789613384565b1115611979576119768782613343565b95505b856001600160401b0381111561199157611991612eaf565b6040519080825280602002602001820160405280156119ba578160200160208202803683370190505b509350856001600160401b038111156119d5576119d5612eaf565b604051908082528060200260200182016040528015611a0857816020015b60608152602001906001900390816119f35790505b5092506000805a905060005b60008811611a2457600d54611a26565b875b83108015611a3357508881105b15611ac557611a428a82613384565b94506000611a508c87610d76565b905080888381518110611a6557611a65613265565b602002602001018181525050611a7a81611641565b878381518110611a8c57611a8c613265565b60200260200101819052505a611aa29084613343565b611aac9085613384565b93505a9250508080611abd90613291565b915050611a14565b5050505b509450945094915050565b600b546001600160a01b03610100909104163314611b045760405162461bcd60e51b81526004016109c090613230565b6001600160a01b038116611b695760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109c0565b610f5281612103565b60006001600160e01b0319821663780e9d6360e01b14806108c057506108c0826123f8565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611be9826110a2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b606081611c465750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611c705780611c5a81613291565b9150611c699050600a836133d1565b9150611c4a565b6000816001600160401b03811115611c8a57611c8a612eaf565b6040519080825280601f01601f191660200182016040528015611cb4576020820181803683370190505b5090505b841561174457611cc9600183613343565b9150611cd6600a86613436565b611ce1906030613384565b60f81b818381518110611cf657611cf6613265565b60200101906001600160f81b031916908160001a905350611d18600a866133d1565b9450611cb8565b60608282604051602001611d3492919061344a565b604051602081830303815290604052905092915050565b611d5482611b97565b611db75760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b60648201526084016109c0565b6000828152600a602090815260409091208251610b3992840190612b36565b6000611de182611b97565b611e425760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109c0565b6000611e4d836110a2565b9050806001600160a01b0316846001600160a01b03161480611e885750836001600160a01b0316611e7d84610958565b6001600160a01b0316145b8061174457506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611744565b826001600160a01b0316611ecf826110a2565b6001600160a01b031614611f375760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109c0565b6001600160a01b038216611f995760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109c0565b611fa4838383612448565b611faf600082611bb4565b6001600160a01b0383166000908152600360205260408120805460019290611fd8908490613343565b90915550506001600160a01b0382166000908152600360205260408120805460019290612006908490613384565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600b5460ff166120b05760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109c0565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610f5281612476565b600b80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600b5460ff16156121805760405162461bcd60e51b81526004016109c09061335a565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586120dd3390565b610e468282604051806020016040528060008152506124b6565b816001600160a01b0316836001600160a01b031614156122315760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109c0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122a9848484611ebc565b6122b5848484846124e9565b61163b5760405162461bcd60e51b81526004016109c090613479565b6060601880546108d5906131f5565b60606122eb82611b97565b6123075760405162461bcd60e51b81526004016109c0906133e5565b6000828152600a602052604081208054612320906131f5565b80601f016020809104026020016040519081016040528092919081815260200182805461234c906131f5565b80156123995780601f1061236e57610100808354040283529160200191612399565b820191906000526020600020905b81548152906001019060200180831161237c57829003601f168201915b5050505050905060006123aa6122d1565b90508051600014156123bd575092915050565b8151156123ef5780826040516020016123d792919061344a565b60405160208183030381529060405292505050919050565b611744846125e7565b60006001600160e01b031982166380ac58cd60e01b148061242957506001600160e01b03198216635b5e139f60e01b145b806108c057506301ffc9a760e01b6001600160e01b03198316146108c0565b600b5460ff161561246b5760405162461bcd60e51b81526004016109c09061335a565b610b398383836126b2565b61247f8161276a565b6000818152600a602052604090208054612498906131f5565b159050610f52576000818152600a60205260408120610f5291612baa565b6124c08383612811565b6124cd60008484846124e9565b610b395760405162461bcd60e51b81526004016109c090613479565b60006001600160a01b0384163b156125dc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061252d9033908990889088906004016134cb565b6020604051808303816000875af1925050508015612568575060408051601f3d908101601f1916820190925261256591810190613508565b60015b6125c2573d808015612596576040519150601f19603f3d011682016040523d82523d6000602084013e61259b565b606091505b5080516125ba5760405162461bcd60e51b81526004016109c090613479565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611744565b506001949350505050565b60606125f282611b97565b6126565760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109c0565b60006126606122d1565b9050600081511161268057604051806020016040528060008152506126ab565b8061268a84611c22565b60405160200161269b92919061344a565b6040516020818303038152906040525b9392505050565b6001600160a01b03831661270d5761270881600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612730565b816001600160a01b0316836001600160a01b031614612730576127308382612922565b6001600160a01b03821661274757610b39816129bf565b826001600160a01b0316826001600160a01b031614610b3957610b398282612a6e565b6000612775826110a2565b905061278381600084612448565b61278e600083611bb4565b6001600160a01b03811660009081526003602052604081208054600192906127b7908490613343565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6001600160a01b0382166128675760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109c0565b61287081611b97565b156128bd5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109c0565b6128c960008383612448565b60008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000600161292f84611119565b6129399190613343565b60008381526007602052604090205490915080821461298c576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906129d190600190613343565b600083815260096020526040812054600880549394509092849081106129f9576129f9613265565b906000526020600020015490508060088381548110612a1a57612a1a613265565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612a5257612a52613525565b6001900381819060005260206000200160009055905550505050565b6000612a7983611119565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612abe906131f5565b90600052602060002090601f016020900481019282612ae05760008555612b26565b82601f10612af95782800160ff19823516178555612b26565b82800160010185558215612b26579182015b82811115612b26578235825591602001919060010190612b0b565b50612b32929150612be0565b5090565b828054612b42906131f5565b90600052602060002090601f016020900481019282612b645760008555612b26565b82601f10612b7d57805160ff1916838001178555612b26565b82800160010185558215612b26579182015b82811115612b26578251825591602001919060010190612b8f565b508054612bb6906131f5565b6000825580601f10612bc6575050565b601f016020900490600052602060002090810190610f5291905b5b80821115612b325760008155600101612be1565b6001600160e01b031981168114610f5257600080fd5b600060208284031215612c1d57600080fd5b81356126ab81612bf5565b60005b83811015612c43578181015183820152602001612c2b565b8381111561163b5750506000910152565b60008151808452612c6c816020860160208601612c28565b601f01601f19169290920160200192915050565b6020815260006126ab6020830184612c54565b600060208284031215612ca557600080fd5b5035919050565b80358015158114612cbc57600080fd5b919050565b600060208284031215612cd357600080fd5b6126ab82612cac565b80356001600160a01b0381168114612cbc57600080fd5b60008060408385031215612d0657600080fd5b612d0f83612cdc565b946020939093013593505050565b60008083601f840112612d2f57600080fd5b5081356001600160401b03811115612d4657600080fd5b6020830191508360208260051b8501011115612d6157600080fd5b9250929050565b60008083601f840112612d7a57600080fd5b5081356001600160401b03811115612d9157600080fd5b602083019150836020828501011115612d6157600080fd5b60008060008060408587031215612dbf57600080fd5b84356001600160401b0380821115612dd657600080fd5b612de288838901612d1d565b90965094506020870135915080821115612dfb57600080fd5b50612e0887828801612d68565b95989497509550505050565b60008060008060408587031215612e2a57600080fd5b84356001600160401b0380821115612e4157600080fd5b612e4d88838901612d1d565b90965094506020870135915080821115612e6657600080fd5b50612e0887828801612d1d565b600080600060608486031215612e8857600080fd5b612e9184612cdc565b9250612e9f60208501612cdc565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b60006001600160401b0380841115612edf57612edf612eaf565b604051601f8501601f19908116603f01168101908282118183101715612f0757612f07612eaf565b81604052809350858152868686011115612f2057600080fd5b858560208301376000602087830101525050509392505050565b60008060408385031215612f4d57600080fd5b8235915060208301356001600160401b03811115612f6a57600080fd5b8301601f81018513612f7b57600080fd5b612f8a85823560208401612ec5565b9150509250929050565b60008060208385031215612fa757600080fd5b82356001600160401b03811115612fbd57600080fd5b612fc985828601612d68565b90969095509350505050565b60008060408385031215612fe857600080fd5b612ff183612cdc565b9150612fff60208401612cac565b90509250929050565b60006020828403121561301a57600080fd5b6126ab82612cdc565b6000806000806080858703121561303957600080fd5b61304285612cdc565b935061305060208601612cdc565b92506040850135915060608501356001600160401b0381111561307257600080fd5b8501601f8101871361308357600080fd5b61309287823560208401612ec5565b91505092959194509250565b6000806000604084860312156130b357600080fd5b83356001600160401b038111156130c957600080fd5b6130d586828701612d1d565b90945092506130e8905060208501612cac565b90509250925092565b6000806000806080858703121561310757600080fd5b61311085612cdc565b966020860135965060408601359560600135945092505050565b606080825284519082018190526000906020906080840190828801845b8281101561316357815184529284019290840190600101613147565b50505083810382850152855180825282820190600581901b8301840188850160005b838110156131b357601f198684030185526131a1838351612c54565b94870194925090860190600101613185565b50508095505050505050826040830152949350505050565b600080604083850312156131de57600080fd5b6131e783612cdc565b9150612fff60208401612cdc565b600181811c9082168061320957607f821691505b6020821081141561322a57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156132a5576132a561327b565b5060010190565b6000808335601e198436030181126132c357600080fd5b8301803591506001600160401b038211156132dd57600080fd5b602001915036819003821315612d6157600080fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000828210156133555761335561327b565b500390565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b600082198211156133975761339761327b565b500190565b60008160001904831182151516156133b6576133b661327b565b500290565b634e487b7160e01b600052601260045260246000fd5b6000826133e0576133e06133bb565b500490565b60208082526031908201527f45524337323155524953746f726167653a2055524920717565727920666f72206040820152703737b732bc34b9ba32b73a103a37b5b2b760791b606082015260800190565b600082613445576134456133bb565b500690565b6000835161345c818460208801612c28565b835190830190613470818360208801612c28565b01949350505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134fe90830184612c54565b9695505050505050565b60006020828403121561351a57600080fd5b81516126ab81612bf5565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f0de623bd73c49d3aa44b5d296529242d1403000e724c2d7adbf2c13ffb83a5264736f6c634300080c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000002602dd62555dd2ef6e5e2626991ed197fc79ce3
-----Decoded View---------------
Arg [0] : _dev (address): 0x02602dD62555DD2Ef6E5E2626991ED197fC79ce3
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000002602dd62555dd2ef6e5e2626991ed197fc79ce3
Deployed Bytecode Sourcemap
46266:6980:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51388:212;;;;;;;;;;-1:-1:-1;51388:212:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;51388:212:0;;;;;;;;20010:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;21569:221::-;;;;;;;;;;-1:-1:-1;21569:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;21569:221:0;1528:203:1;52738:106:0;;;;;;;;;;-1:-1:-1;52738:106:0;;;;;:::i;:::-;;:::i;:::-;;21092:411;;;;;;;;;;-1:-1:-1;21092:411:0;;;;;:::i;:::-;;:::i;48675:256::-;;;;;;;;;;-1:-1:-1;48675:256:0;;;;;:::i;:::-;;:::i;33808:113::-;;;;;;;;;;-1:-1:-1;33896:10:0;:17;33808:113;;;4146:25:1;;;4134:2;4119:18;33808:113:0;4000:177:1;48396:267:0;;;;;;;;;;-1:-1:-1;48396:267:0;;;;;:::i;:::-;;:::i;22319:339::-;;;;;;;;;;-1:-1:-1;22319:339:0;;;;;:::i;:::-;;:::i;33476:256::-;;;;;;;;;;-1:-1:-1;33476:256:0;;;;;:::i;:::-;;:::i;48943:112::-;;;;;;;;;;-1:-1:-1;48943:112:0;;;;;:::i;:::-;;:::i;47726:124::-;;;;;;;;;;-1:-1:-1;47726:124:0;;;;;:::i;:::-;;:::i;49132:65::-;;;;;;;;;;;;;:::i;22729:185::-;;;;;;;;;;-1:-1:-1;22729:185:0;;;;;:::i;:::-;;:::i;46014:245::-;;;;;;;;;;-1:-1:-1;46014:245:0;;;;;:::i;:::-;;:::i;46684:33::-;;;;;;;;;;;;;;;;33998:233;;;;;;;;;;-1:-1:-1;33998:233:0;;;;;:::i;:::-;;:::i;46905:35::-;;;;;;;;;;-1:-1:-1;46905:35:0;;;;;;;;47488:122;;;;;;;;;;-1:-1:-1;47488:122:0;;;;;:::i;:::-;;:::i;52624:106::-;;;;;;;;;;;;;:::i;47622:96::-;;;;;;;;;;-1:-1:-1;47622:96:0;;;;;:::i;:::-;;:::i;42098:86::-;;;;;;;;;;-1:-1:-1;42169:7:0;;;;42098:86;;19704:239;;;;;;;;;;-1:-1:-1;19704:239:0;;;;;:::i;:::-;;:::i;19434:208::-;;;;;;;;;;-1:-1:-1;19434:208:0;;;;;:::i;:::-;;:::i;44854:103::-;;;;;;;;;;;;;:::i;46947:26::-;;;;;;;;;;;;;;;;49063:61;;;;;;;;;;;;;:::i;44203:87::-;;;;;;;;;;-1:-1:-1;44276:6:0;;;;;-1:-1:-1;;;;;44276:6:0;44203:87;;47279:86;;;;;;;;;;-1:-1:-1;47279:86:0;;;;;:::i;:::-;;:::i;20179:104::-;;;;;;;;;;;;;:::i;46857:41::-;;;;;;;;;;-1:-1:-1;46857:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;47862:96;;;;;;;;;;-1:-1:-1;47862:96:0;;;;;:::i;:::-;;:::i;46724:33::-;;;;;;;;;;;;;;;;49204:857;;;;;;:::i;:::-;;:::i;21862:155::-;;;;;;;;;;-1:-1:-1;21862:155:0;;;;;:::i;:::-;;:::i;48070:102::-;;;;;;;;;;-1:-1:-1;48070:102:0;;;;;:::i;:::-;;:::i;50069:171::-;;;;;;;;;;;;;:::i;47373:107::-;;;;;;;;;;-1:-1:-1;47373:107:0;;;;;:::i;:::-;;:::i;22985:328::-;;;;;;;;;;-1:-1:-1;22985:328:0;;;;;:::i;:::-;;:::i;50677:702::-;;;;;;;;;;-1:-1:-1;50677:702:0;;;;;:::i;:::-;;:::i;48180:100::-;;;;;;;;;;-1:-1:-1;48180:100:0;;;;;:::i;:::-;;:::i;52852:211::-;;;;;;;;;;-1:-1:-1;52852:211:0;;;;;:::i;:::-;;:::i;46475:28::-;;;;;;;;;;;;;;;;47970:92;;;;;;;;;;-1:-1:-1;47970:92:0;;;;;:::i;:::-;;:::i;51608:1008::-;;;;;;;;;;-1:-1:-1;51608:1008:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;:::i;22088:164::-;;;;;;;;;;-1:-1:-1;22088:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;22209:25:0;;;22185:4;22209:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22088:164;47088:31;;;;;;;;;;;;;;;;45112:201;;;;;;;;;;-1:-1:-1;45112:201:0;;;;;:::i;:::-;;:::i;46764:42::-;;;;;;;;;;;;;;;;51388:212;51527:4;51556:36;51580:11;51556:23;:36::i;:::-;51549:43;51388:212;-1:-1:-1;;51388:212:0:o;20010:100::-;20064:13;20097:5;20090:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20010:100;:::o;21569:221::-;21645:7;21673:16;21681:7;21673;:16::i;:::-;21665:73;;;;-1:-1:-1;;;21665:73:0;;11282:2:1;21665:73:0;;;11264:21:1;11321:2;11301:18;;;11294:30;11360:34;11340:18;;;11333:62;-1:-1:-1;;;11411:18:1;;;11404:42;11463:19;;21665:73:0;;;;;;;;;-1:-1:-1;21758:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;21758:24:0;;21569:221::o;52738:106::-;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;52809:16:::1;:27:::0;;-1:-1:-1;;52809:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52738:106::o;21092:411::-;21173:13;21189:23;21204:7;21189:14;:23::i;:::-;21173:39;;21237:5;-1:-1:-1;;;;;21231:11:0;:2;-1:-1:-1;;;;;21231:11:0;;;21223:57;;;;-1:-1:-1;;;21223:57:0;;12056:2:1;21223:57:0;;;12038:21:1;12095:2;12075:18;;;12068:30;12134:34;12114:18;;;12107:62;-1:-1:-1;;;12185:18:1;;;12178:31;12226:19;;21223:57:0;11854:397:1;21223:57:0;15733:10;-1:-1:-1;;;;;21315:21:0;;;;:62;;-1:-1:-1;21340:37:0;21357:5;15733:10;22088:164;:::i;21340:37::-;21293:168;;;;-1:-1:-1;;;21293:168:0;;12458:2:1;21293:168:0;;;12440:21:1;12497:2;12477:18;;;12470:30;12536:34;12516:18;;;12509:62;12607:26;12587:18;;;12580:54;12651:19;;21293:168:0;12256:420:1;21293:168:0;21474:21;21483:2;21487:7;21474:8;:21::i;:::-;21162:341;21092:411;;:::o;48675:256::-;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;48777:6:::1;48772:152;48789:14:::0;;::::1;48772:152;;;48824:87;48837:3;;48841:1;48837:6;;;;;;;:::i;:::-;;;;;;;48845:65;48857:37;48869:5;;48857:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;48876:17:0::1;::::0;-1:-1:-1;48876:3:0;;-1:-1:-1;48876:3:0;;-1:-1:-1;48880:1:0;48876:6;;::::1;;;;;:::i;:::-;;;;;;;:15;:17::i;:::-;48857:11;:37::i;:::-;48896:13;;;;;;;;;;;;;-1:-1:-1::0;;;48896:13:0::1;;::::0;48845:11:::1;:65::i;:::-;48824:12;:87::i;:::-;48805:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48772:152;;;;48675:256:::0;;;;:::o;48396:267::-;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;48503:26;;::::1;48495:55;;;::::0;-1:-1:-1;;;48495:55:0;;13287:2:1;48495:55:0::1;::::0;::::1;13269:21:1::0;13326:2;13306:18;;;13299:30;-1:-1:-1;;;13345:18:1;;;13338:46;13401:18;;48495:55:0::1;13085:340:1::0;48495:55:0::1;48566:6;48561:95;48578:14:::0;;::::1;48561:95;;;48613:30;48626:3;;48630:1;48626:6;;;;;;;:::i;:::-;;;;;;;48634:5;;48640:1;48634:8;;;;;;;:::i;:::-;;;;;;;;;;;;:::i;:::-;48613:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;::::0;;;;-1:-1:-1;48613:12:0::1;::::0;-1:-1:-1;;;48613:30:0:i:1;:::-;48594:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48561:95;;22319:339:::0;22514:41;15733:10;22533:12;22547:7;22514:18;:41::i;:::-;22506:103;;;;-1:-1:-1;;;22506:103:0;;;;;;;:::i;:::-;22622:28;22632:4;22638:2;22642:7;22622:9;:28::i;33476:256::-;33573:7;33609:23;33626:5;33609:16;:23::i;:::-;33601:5;:31;33593:87;;;;-1:-1:-1;;;33593:87:0;;14577:2:1;33593:87:0;;;14559:21:1;14616:2;14596:18;;;14589:30;14655:34;14635:18;;;14628:62;-1:-1:-1;;;14706:18:1;;;14699:41;14757:19;;33593:87:0;14375:407:1;33593:87:0;-1:-1:-1;;;;;;33698:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;33476:256::o;48943:112::-;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;49024:22:::1;49037:2;49041:4;49024:12;:22::i;:::-;48943:112:::0;;:::o;47726:124::-;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;47813:29:::1;:14;47830:12:::0;;47813:29:::1;:::i;49132:65::-:0;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;49179:10:::1;:8;:10::i;:::-;49132:65::o:0;22729:185::-;22867:39;22884:4;22890:2;22894:7;22867:39;;;;;;;;;;;;:16;:39::i;46014:245::-;46132:41;15733:10;46151:12;15653:98;46132:41;46124:102;;;;-1:-1:-1;;;46124:102:0;;14989:2:1;46124:102:0;;;14971:21:1;15028:2;15008:18;;;15001:30;15067:34;15047:18;;;15040:62;-1:-1:-1;;;15118:18:1;;;15111:46;15174:19;;46124:102:0;14787:412:1;46124:102:0;46237:14;46243:7;46237:5;:14::i;:::-;46014:245;:::o;33998:233::-;34073:7;34109:30;33896:10;:17;;33808:113;34109:30;34101:5;:38;34093:95;;;;-1:-1:-1;;;34093:95:0;;15406:2:1;34093:95:0;;;15388:21:1;15445:2;15425:18;;;15418:30;15484:34;15464:18;;;15457:62;-1:-1:-1;;;15535:18:1;;;15528:42;15587:19;;34093:95:0;15204:408:1;34093:95:0;34206:10;34217:5;34206:17;;;;;;;;:::i;:::-;;;;;;;;;34199:24;;33998:233;;;:::o;47488:122::-;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;47571:21:0;;;::::1;;::::0;;;:12:::1;:21;::::0;;;;:31;;-1:-1:-1;;47571:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47488:122::o;52624:106::-;52667:7;52720:1;52710:9;;:11;;;;:::i;:::-;52694:12;;:28;;;;:::i;:::-;52687:35;;52624:106;:::o;47622:96::-;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;47695:15:::1;:7;47705:5:::0;;47695:15:::1;:::i;19704:239::-:0;19776:7;19812:16;;;:7;:16;;;;;;-1:-1:-1;;;;;19812:16:0;19847:19;19839:73;;;;-1:-1:-1;;;19839:73:0;;15949:2:1;19839:73:0;;;15931:21:1;15988:2;15968:18;;;15961:30;16027:34;16007:18;;;16000:62;-1:-1:-1;;;16078:18:1;;;16071:39;16127:19;;19839:73:0;15747:405:1;19434:208:0;19506:7;-1:-1:-1;;;;;19534:19:0;;19526:74;;;;-1:-1:-1;;;19526:74:0;;16359:2:1;19526:74:0;;;16341:21:1;16398:2;16378:18;;;16371:30;16437:34;16417:18;;;16410:62;-1:-1:-1;;;16488:18:1;;;16481:40;16538:19;;19526:74:0;16157:406:1;19526:74:0;-1:-1:-1;;;;;;19618:16:0;;;;;:9;:16;;;;;;;19434:208::o;44854:103::-;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;44919:30:::1;44946:1;44919:18;:30::i;49063:61::-:0;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;49108:8:::1;:6;:8::i;47279:86::-:0;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;47343:5:::1;:14:::0;47279:86::o;20179:104::-;20235:13;20268:7;20261:14;;;;;:::i;47862:96::-;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;47932:7:::1;:18:::0;47862:96::o;49204:857::-;42169:7;;;;42423:9;42415:38;;;;-1:-1:-1;;;42415:38:0;;;;;;;:::i;:::-;49294:7:::1;;49284:6;:17;;:31;;;;;49314:1;49305:6;:10;49284:31;:66;;;;;49343:7;;49319:21;49329:10;49319:9;:21::i;:::-;:31;49284:66;49276:102;;;::::0;-1:-1:-1;;;49276:102:0;;17115:2:1;49276:102:0::1;::::0;::::1;17097:21:1::0;17154:2;17134:18;;;17127:30;17193:25;17173:18;;;17166:53;17236:18;;49276:102:0::1;16913:347:1::0;49276:102:0::1;49392:16;::::0;::::1;;49389:84;;;49428:10;49418:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;49410:63;;;::::0;-1:-1:-1;;;49410:63:0;;17467:2:1;49410:63:0::1;::::0;::::1;17449:21:1::0;17506:2;17486:18;;;17479:30;17545:31;17525:18;;;17518:59;17594:18;;49410:63:0::1;17265:353:1::0;49410:63:0::1;49539:10;49506:17;49526:24:::0;;;:12:::1;:24;::::0;;;;;::::1;;:108;;49558:16;::::0;49628:6;;49558:16:::1;;:41:::0;::::1;;;-1:-1:-1::0;49588:10:0::1;49578:21;::::0;;;:9:::1;:21;::::0;;;;;::::1;;49558:41;:66;;49619:5;;49558:66;;;49602:14;;49558:66;49557:77;49526:108;;;49553:1;49526:108;49506:128;;49669:9;49656;:22;49647:57;;;::::0;-1:-1:-1;;;49647:57:0;;17825:2:1;49647:57:0::1;::::0;::::1;17807:21:1::0;17864:2;17844:18;;;17837:30;-1:-1:-1;;;17883:18:1;;;17876:51;17944:18;;49647:57:0::1;17623:345:1::0;49647:57:0::1;49742:9;::::0;49796:12:::1;::::0;49773:19;;;-1:-1:-1;;49773:19:0;:35:::1;;49764:76;;;::::0;-1:-1:-1;;;49764:76:0;;18175:2:1;49764:76:0::1;::::0;::::1;18157:21:1::0;18214:2;18194:18;;;18187:30;18253:29;18233:18;;;18226:57;18300:18;;49764:76:0::1;17973:351:1::0;49764:76:0::1;49866:6;49861:112;49882:6;49878:1;:10;49861:112;;;49909:29;49919:10;49931:6;49909:9;:29::i;:::-;49953:8;::::0;;::::1;::::0;49890:3:::1;49861:112;;;-1:-1:-1::0;49983:9:0::1;:18:::0;-1:-1:-1;50042:10:0::1;19328:13:::0;;;;:9;:13;;;;;:23;;;;;;46014:245;:::o;21862:155::-;21957:52;15733:10;21990:8;22000;21957:18;:52::i;48070:102::-;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;48157:7:::1;48144:9;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;48070:102:0:o;50069:171::-;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;50121:3:::1;::::0;50159:6:::1;::::0;-1:-1:-1;;;;;50121:3:0;;::::1;::::0;:52:::1;::::0;50169:3:::1;::::0;50135:30:::1;::::0;:21:::1;:30;:::i;:::-;50134:38;;;;:::i;:::-;50121:52;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;50184:7:0::1;::::0;:39:::1;::::0;-1:-1:-1;;;;;50184:7:0;;::::1;::::0;50201:21:::1;50184:39:::0;::::1;;;::::0;:7:::1;:39:::0;:7;:39;50201:21;50184:7;:39;::::1;;;;;;;;;;;;;::::0;::::1;;;;47373:107:::0;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;47449:14:::1;:23:::0;47373:107::o;22985:328::-;23160:41;15733:10;23193:7;23160:18;:41::i;:::-;23152:103;;;;-1:-1:-1;;;23152:103:0;;;;;;;:::i;:::-;23266:39;23280:4;23286:2;23290:7;23299:5;23266:13;:39::i;:::-;22985:328;;;;:::o;50677:702::-;50769:13;50803:17;50811:8;50803:7;:17::i;:::-;50795:79;;;;-1:-1:-1;;;50795:79:0;;;;;;;:::i;:::-;50885:23;50911:20;;;:10;:20;;;;;50885:46;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50942:18;50963:10;:8;:10::i;:::-;50990:23;;50942:31;;-1:-1:-1;50990:27:0;50986:76;;-1:-1:-1;51041:9:0;50677:702;-1:-1:-1;;50677:702:0:o;50986:76::-;51093:8;51079:10;;:22;;51078:50;;;;;51127:1;51112:4;51106:18;:22;51078:50;51074:156;;;51152:66;51164:4;51170:47;51182:19;:8;:17;:19::i;51152:66::-;51145:73;50677:702;-1:-1:-1;;;;50677:702:0:o;51074:156::-;51277:1;51252:14;51246:28;;;;;:::i;:::-;;;:32;51242:86;;;51302:14;51295:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50677:702;;;:::o;51242:86::-;51347:24;51362:8;51347:14;:24::i;48180:100::-;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;48265:7:::1;48251:10;;:21;;;;;;;:::i;52852:211::-:0;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;52954:9:::1;52949:107;52969:22:::0;;::::1;52949:107;;;53039:7;53011:9;:25;53021:11;;53033:1;53021:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;53011:25:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;53011:25:0;:35;;-1:-1:-1;;53011:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52993:3;::::1;::::0;::::1;:::i;:::-;;;;52949:107;;47970:92:::0;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;48049:5:::1;48033:12;;:21;;;;;;;:::i;51608:1008::-:0;51706:25;51733;51760:14;51787:15;51805:13;51815:2;51805:9;:13::i;:::-;51787:31;-1:-1:-1;51833:10:0;51829:25;;51853:1;51845:9;;51829:25;51869:11;;51865:744;;51910:7;51901:5;:16;51897:39;;51927:9;51935:1;51927:7;:9;:::i;:::-;51919:17;;51897:39;51971:7;51955:13;51963:5;51955;:13;:::i;:::-;:23;51951:52;;;51988:15;51998:5;51988:7;:15;:::i;:::-;51980:23;;51951:52;52045:5;-1:-1:-1;;;;;52031:20:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52031:20:0;;52020:31;;52091:5;-1:-1:-1;;;;;52078:19:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52066:31;;52126:15;52160;52178:9;52160:27;;52221:9;52216:382;52252:1;52245:4;:8;:21;;52263:3;;52245:21;;;52256:4;52245:21;52234:7;:33;:46;;;;;52275:5;52271:1;:9;52234:46;52216:382;;;52315:7;52317:5;52315:1;:7;:::i;:::-;52306:16;;52341:10;52354:31;52374:2;52378:6;52354:19;:31::i;:::-;52341:44;;52418:2;52404:8;52413:1;52404:11;;;;;;;;:::i;:::-;;;;;;:16;;;;;52454:12;52463:2;52454:8;:12::i;:::-;52439:9;52449:1;52439:12;;;;;;;;:::i;:::-;;;;;;:27;;;;52534:9;52524:19;;:7;:19;:::i;:::-;52513:31;;:7;:31;:::i;:::-;52503:41;;52573:9;52563:19;;52287:311;52282:3;;;;;:::i;:::-;;;;52216:382;;;;51882:727;;51865:744;51776:840;51608:1008;;;;;;;;:::o;45112:201::-;44276:6;;-1:-1:-1;;;;;44276:6:0;;;;;15733:10;44423:23;44415:68;;;;-1:-1:-1;;;44415:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45201:22:0;::::1;45193:73;;;::::0;-1:-1:-1;;;45193:73:0;;19512:2:1;45193:73:0::1;::::0;::::1;19494:21:1::0;19551:2;19531:18;;;19524:30;19590:34;19570:18;;;19563:62;-1:-1:-1;;;19641:18:1;;;19634:36;19687:19;;45193:73:0::1;19310:402:1::0;45193:73:0::1;45277:28;45296:8;45277:18;:28::i;33168:224::-:0;33270:4;-1:-1:-1;;;;;;33294:50:0;;-1:-1:-1;;;33294:50:0;;:90;;;33348:36;33372:11;33348:23;:36::i;24823:127::-;24888:4;24912:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24912:16:0;:30;;;24823:127::o;28778:174::-;28853:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;28853:29:0;-1:-1:-1;;;;;28853:29:0;;;;;;;;:24;;28907:23;28853:24;28907:14;:23::i;:::-;-1:-1:-1;;;;;28898:46:0;;;;;;;;;;;28778:174;;:::o;16095:723::-;16151:13;16372:10;16368:53;;-1:-1:-1;;16399:10:0;;;;;;;;;;;;-1:-1:-1;;;16399:10:0;;;;;16095:723::o;16368:53::-;16446:5;16431:12;16487:78;16494:9;;16487:78;;16520:8;;;;:::i;:::-;;-1:-1:-1;16543:10:0;;-1:-1:-1;16551:2:0;16543:10;;:::i;:::-;;;16487:78;;;16575:19;16607:6;-1:-1:-1;;;;;16597:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16597:17:0;;16575:39;;16625:154;16632:10;;16625:154;;16659:11;16669:1;16659:11;;:::i;:::-;;-1:-1:-1;16728:10:0;16736:2;16728:5;:10;:::i;:::-;16715:24;;:2;:24;:::i;:::-;16702:39;;16685:6;16692;16685:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;16685:56:0;;;;;;;;-1:-1:-1;16756:11:0;16765:2;16756:11;;:::i;:::-;;;16625:154;;53071:149;53149:13;53206:1;53209;53189:22;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53175:37;;53071:149;;;;:::o;40459:217::-;40559:16;40567:7;40559;:16::i;:::-;40551:75;;;;-1:-1:-1;;;40551:75:0;;20511:2:1;40551:75:0;;;20493:21:1;20550:2;20530:18;;;20523:30;20589:34;20569:18;;;20562:62;-1:-1:-1;;;20640:18:1;;;20633:44;20694:19;;40551:75:0;20309:410:1;40551:75:0;40637:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;25117:348::-;25210:4;25235:16;25243:7;25235;:16::i;:::-;25227:73;;;;-1:-1:-1;;;25227:73:0;;20926:2:1;25227:73:0;;;20908:21:1;20965:2;20945:18;;;20938:30;21004:34;20984:18;;;20977:62;-1:-1:-1;;;21055:18:1;;;21048:42;21107:19;;25227:73:0;20724:408:1;25227:73:0;25311:13;25327:23;25342:7;25327:14;:23::i;:::-;25311:39;;25380:5;-1:-1:-1;;;;;25369:16:0;:7;-1:-1:-1;;;;;25369:16:0;;:51;;;;25413:7;-1:-1:-1;;;;;25389:31:0;:20;25401:7;25389:11;:20::i;:::-;-1:-1:-1;;;;;25389:31:0;;25369:51;:87;;;-1:-1:-1;;;;;;22209:25:0;;;22185:4;22209:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;25424:32;22088:164;28080:580;28239:4;-1:-1:-1;;;;;28212:31:0;:23;28227:7;28212:14;:23::i;:::-;-1:-1:-1;;;;;28212:31:0;;28204:85;;;;-1:-1:-1;;;28204:85:0;;21339:2:1;28204:85:0;;;21321:21:1;21378:2;21358:18;;;21351:30;21417:34;21397:18;;;21390:62;-1:-1:-1;;;21468:18:1;;;21461:39;21517:19;;28204:85:0;21137:405:1;28204:85:0;-1:-1:-1;;;;;28308:16:0;;28300:65;;;;-1:-1:-1;;;28300:65:0;;21749:2:1;28300:65:0;;;21731:21:1;21788:2;21768:18;;;21761:30;21827:34;21807:18;;;21800:62;-1:-1:-1;;;21878:18:1;;;21871:34;21922:19;;28300:65:0;21547:400:1;28300:65:0;28378:39;28399:4;28405:2;28409:7;28378:20;:39::i;:::-;28482:29;28499:1;28503:7;28482:8;:29::i;:::-;-1:-1:-1;;;;;28524:15:0;;;;;;:9;:15;;;;;:20;;28543:1;;28524:15;:20;;28543:1;;28524:20;:::i;:::-;;;;-1:-1:-1;;;;;;;28555:13:0;;;;;;:9;:13;;;;;:18;;28572:1;;28555:13;:18;;28572:1;;28555:18;:::i;:::-;;;;-1:-1:-1;;28584:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;28584:21:0;-1:-1:-1;;;;;28584:21:0;;;;;;;;;28625:27;;28584:16;;28625:27;;;;;;;28080:580;;;:::o;43157:120::-;42169:7;;;;42693:41;;;;-1:-1:-1;;;42693:41:0;;22154:2:1;42693:41:0;;;22136:21:1;22193:2;22173:18;;;22166:30;-1:-1:-1;;;22212:18:1;;;22205:50;22272:18;;42693:41:0;21952:344:1;42693:41:0;43216:7:::1;:15:::0;;-1:-1:-1;;43216:15:0::1;::::0;;43247:22:::1;15733:10:::0;43256:12:::1;43247:22;::::0;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;43247:22:0::1;;;;;;;43157:120::o:0;50554:115::-;50641:20;50653:7;50641:11;:20::i;45473:191::-;45566:6;;;-1:-1:-1;;;;;45583:17:0;;;45566:6;45583:17;;;-1:-1:-1;;;;;;45583:17:0;;;;;;45616:40;;45566:6;;;;;;;;45616:40;;45547:16;;45616:40;45536:128;45473:191;:::o;42898:118::-;42169:7;;;;42423:9;42415:38;;;;-1:-1:-1;;;42415:38:0;;;;;;;:::i;:::-;42958:7:::1;:14:::0;;-1:-1:-1;;42958:14:0::1;42968:4;42958:14;::::0;;42988:20:::1;42995:12;15733:10:::0;;15653:98;25807:110;25883:26;25893:2;25897:7;25883:26;;;;;;;;;;;;:9;:26::i;29094:315::-;29249:8;-1:-1:-1;;;;;29240:17:0;:5;-1:-1:-1;;;;;29240:17:0;;;29232:55;;;;-1:-1:-1;;;29232:55:0;;22503:2:1;29232:55:0;;;22485:21:1;22542:2;22522:18;;;22515:30;22581:27;22561:18;;;22554:55;22626:18;;29232:55:0;22301:349:1;29232:55:0;-1:-1:-1;;;;;29298:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;29298:46:0;;;;;;;;;;29360:41;;540::1;;;29360::0;;513:18:1;29360:41:0;;;;;;;29094:315;;;:::o;24195:::-;24352:28;24362:4;24368:2;24372:7;24352:9;:28::i;:::-;24399:48;24422:4;24428:2;24432:7;24441:5;24399:22;:48::i;:::-;24391:111;;;;-1:-1:-1;;;24391:111:0;;;;;;;:::i;48288:100::-;48340:13;48373:7;48366:14;;;;;:::i;39624:679::-;39697:13;39731:16;39739:7;39731;:16::i;:::-;39723:78;;;;-1:-1:-1;;;39723:78:0;;;;;;;:::i;:::-;39814:23;39840:19;;;:10;:19;;;;;39814:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39870:18;39891:10;:8;:10::i;:::-;39870:31;;39983:4;39977:18;39999:1;39977:23;39973:72;;;-1:-1:-1;40024:9:0;39624:679;-1:-1:-1;;39624:679:0:o;39973:72::-;40149:23;;:27;40145:108;;40224:4;40230:9;40207:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40193:48;;;;39624:679;;;:::o;40145:108::-;40272:23;40287:7;40272:14;:23::i;18914:305::-;19016:4;-1:-1:-1;;;;;;19053:40:0;;-1:-1:-1;;;19053:40:0;;:105;;-1:-1:-1;;;;;;;19110:48:0;;-1:-1:-1;;;19110:48:0;19053:105;:158;;;-1:-1:-1;;;;;;;;;;17632:40:0;;;19175:36;17523:157;50249:227;42169:7;;;;42423:9;42415:38;;;;-1:-1:-1;;;42415:38:0;;;;;;;:::i;:::-;50423:45:::1;50450:4;50456:2;50460:7;50423:26;:45::i;40905:206::-:0;40974:20;40986:7;40974:11;:20::i;:::-;41017:19;;;;:10;:19;;;;;41011:33;;;;;:::i;:::-;:38;;-1:-1:-1;41007:97:0;;41073:19;;;;:10;:19;;;;;41066:26;;;:::i;26144:321::-;26274:18;26280:2;26284:7;26274:5;:18::i;:::-;26325:54;26356:1;26360:2;26364:7;26373:5;26325:22;:54::i;:::-;26303:154;;;;-1:-1:-1;;;26303:154:0;;;;;;;:::i;29974:799::-;30129:4;-1:-1:-1;;;;;30150:13:0;;8105:20;8153:8;30146:620;;30186:72;;-1:-1:-1;;;30186:72:0;;-1:-1:-1;;;;;30186:36:0;;;;;:72;;15733:10;;30237:4;;30243:7;;30252:5;;30186:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30186:72:0;;;;;;;;-1:-1:-1;;30186:72:0;;;;;;;;;;;;:::i;:::-;;;30182:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30428:13:0;;30424:272;;30471:60;;-1:-1:-1;;;30471:60:0;;;;;;;:::i;30424:272::-;30646:6;30640:13;30631:6;30627:2;30623:15;30616:38;30182:529;-1:-1:-1;;;;;;30309:51:0;-1:-1:-1;;;30309:51:0;;-1:-1:-1;30302:58:0;;30146:620;-1:-1:-1;30750:4:0;29974:799;;;;;;:::o;20354:334::-;20427:13;20461:16;20469:7;20461;:16::i;:::-;20453:76;;;;-1:-1:-1;;;20453:76:0;;24024:2:1;20453:76:0;;;24006:21:1;24063:2;24043:18;;;24036:30;24102:34;24082:18;;;24075:62;-1:-1:-1;;;24153:18:1;;;24146:45;24208:19;;20453:76:0;23822:411:1;20453:76:0;20542:21;20566:10;:8;:10::i;:::-;20542:34;;20618:1;20600:7;20594:21;:25;:86;;;;;;;;;;;;;;;;;20646:7;20655:18;:7;:16;:18::i;:::-;20629:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;20594:86;20587:93;20354:334;-1:-1:-1;;;20354:334:0:o;34844:589::-;-1:-1:-1;;;;;35050:18:0;;35046:187;;35085:40;35117:7;36260:10;:17;;36233:24;;;;:15;:24;;;;;:44;;;36288:24;;;;;;;;;;;;36156:164;35085:40;35046:187;;;35155:2;-1:-1:-1;;;;;35147:10:0;:4;-1:-1:-1;;;;;35147:10:0;;35143:90;;35174:47;35207:4;35213:7;35174:32;:47::i;:::-;-1:-1:-1;;;;;35247:16:0;;35243:183;;35280:45;35317:7;35280:36;:45::i;35243:183::-;35353:4;-1:-1:-1;;;;;35347:10:0;:2;-1:-1:-1;;;;;35347:10:0;;35343:83;;35374:40;35402:2;35406:7;35374:27;:40::i;27383:360::-;27443:13;27459:23;27474:7;27459:14;:23::i;:::-;27443:39;;27495:48;27516:5;27531:1;27535:7;27495:20;:48::i;:::-;27584:29;27601:1;27605:7;27584:8;:29::i;:::-;-1:-1:-1;;;;;27626:16:0;;;;;;:9;:16;;;;;:21;;27646:1;;27626:16;:21;;27646:1;;27626:21;:::i;:::-;;;;-1:-1:-1;;27665:16:0;;;;:7;:16;;;;;;27658:23;;-1:-1:-1;;;;;;27658:23:0;;;27699:36;27673:7;;27665:16;-1:-1:-1;;;;;27699:36:0;;;;;27665:16;;27699:36;27432:311;27383:360;:::o;26801:353::-;-1:-1:-1;;;;;26881:16:0;;26873:61;;;;-1:-1:-1;;;26873:61:0;;24440:2:1;26873:61:0;;;24422:21:1;;;24459:18;;;24452:30;24518:34;24498:18;;;24491:62;24570:18;;26873:61:0;24238:356:1;26873:61:0;26954:16;26962:7;26954;:16::i;:::-;26953:17;26945:58;;;;-1:-1:-1;;;26945:58:0;;24801:2:1;26945:58:0;;;24783:21:1;24840:2;24820:18;;;24813:30;24879;24859:18;;;24852:58;24927:18;;26945:58:0;24599:352:1;26945:58:0;27016:45;27045:1;27049:2;27053:7;27016:20;:45::i;:::-;27074:16;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;27074:21:0;-1:-1:-1;;;;;27074:21:0;;;;;;;;27113:33;;27074:16;;;27113:33;;27074:16;;27113:33;26801:353;;:::o;36947:988::-;37213:22;37263:1;37238:22;37255:4;37238:16;:22::i;:::-;:26;;;;:::i;:::-;37275:18;37296:26;;;:17;:26;;;;;;37213:51;;-1:-1:-1;37429:28:0;;;37425:328;;-1:-1:-1;;;;;37496:18:0;;37474:19;37496:18;;;:12;:18;;;;;;;;:34;;;;;;;;;37547:30;;;;;;:44;;;37664:30;;:17;:30;;;;;:43;;;37425:328;-1:-1:-1;37849:26:0;;;;:17;:26;;;;;;;;37842:33;;;-1:-1:-1;;;;;37893:18:0;;;;;:12;:18;;;;;:34;;;;;;;37886:41;36947:988::o;38230:1079::-;38508:10;:17;38483:22;;38508:21;;38528:1;;38508:21;:::i;:::-;38540:18;38561:24;;;:15;:24;;;;;;38934:10;:26;;38483:46;;-1:-1:-1;38561:24:0;;38483:46;;38934:26;;;;;;:::i;:::-;;;;;;;;;38912:48;;38998:11;38973:10;38984;38973:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;39078:28;;;:15;:28;;;;;;;:41;;;39250:24;;;;;39243:31;39285:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;38301:1008;;;38230:1079;:::o;35734:221::-;35819:14;35836:20;35853:2;35836:16;:20::i;:::-;-1:-1:-1;;;;;35867:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;35912:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;35734:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:160::-;1801:20;;1857:13;;1850:21;1840:32;;1830:60;;1886:1;1883;1876:12;1830:60;1736:160;;;:::o;1901:180::-;1957:6;2010:2;1998:9;1989:7;1985:23;1981:32;1978:52;;;2026:1;2023;2016:12;1978:52;2049:26;2065:9;2049:26;:::i;2086:173::-;2154:20;;-1:-1:-1;;;;;2203:31:1;;2193:42;;2183:70;;2249:1;2246;2239:12;2264:254;2332:6;2340;2393:2;2381:9;2372:7;2368:23;2364:32;2361:52;;;2409:1;2406;2399:12;2361:52;2432:29;2451:9;2432:29;:::i;:::-;2422:39;2508:2;2493:18;;;;2480:32;;-1:-1:-1;;;2264:254:1:o;2523:367::-;2586:8;2596:6;2650:3;2643:4;2635:6;2631:17;2627:27;2617:55;;2668:1;2665;2658:12;2617:55;-1:-1:-1;2691:20:1;;-1:-1:-1;;;;;2723:30:1;;2720:50;;;2766:1;2763;2756:12;2720:50;2803:4;2795:6;2791:17;2779:29;;2863:3;2856:4;2846:6;2843:1;2839:14;2831:6;2827:27;2823:38;2820:47;2817:67;;;2880:1;2877;2870:12;2817:67;2523:367;;;;;:::o;2895:348::-;2947:8;2957:6;3011:3;3004:4;2996:6;2992:17;2988:27;2978:55;;3029:1;3026;3019:12;2978:55;-1:-1:-1;3052:20:1;;-1:-1:-1;;;;;3084:30:1;;3081:50;;;3127:1;3124;3117:12;3081:50;3164:4;3156:6;3152:17;3140:29;;3216:3;3209:4;3200:6;3192;3188:19;3184:30;3181:39;3178:59;;;3233:1;3230;3223:12;3248:747;3355:6;3363;3371;3379;3432:2;3420:9;3411:7;3407:23;3403:32;3400:52;;;3448:1;3445;3438:12;3400:52;3488:9;3475:23;-1:-1:-1;;;;;3558:2:1;3550:6;3547:14;3544:34;;;3574:1;3571;3564:12;3544:34;3613:70;3675:7;3666:6;3655:9;3651:22;3613:70;:::i;:::-;3702:8;;-1:-1:-1;3587:96:1;-1:-1:-1;3790:2:1;3775:18;;3762:32;;-1:-1:-1;3806:16:1;;;3803:36;;;3835:1;3832;3825:12;3803:36;;3874:61;3927:7;3916:8;3905:9;3901:24;3874:61;:::i;:::-;3248:747;;;;-1:-1:-1;3954:8:1;-1:-1:-1;;;;3248:747:1:o;4182:785::-;4316:6;4324;4332;4340;4393:2;4381:9;4372:7;4368:23;4364:32;4361:52;;;4409:1;4406;4399:12;4361:52;4449:9;4436:23;-1:-1:-1;;;;;4519:2:1;4511:6;4508:14;4505:34;;;4535:1;4532;4525:12;4505:34;4574:70;4636:7;4627:6;4616:9;4612:22;4574:70;:::i;:::-;4663:8;;-1:-1:-1;4548:96:1;-1:-1:-1;4751:2:1;4736:18;;4723:32;;-1:-1:-1;4767:16:1;;;4764:36;;;4796:1;4793;4786:12;4764:36;;4835:72;4899:7;4888:8;4877:9;4873:24;4835:72;:::i;4972:328::-;5049:6;5057;5065;5118:2;5106:9;5097:7;5093:23;5089:32;5086:52;;;5134:1;5131;5124:12;5086:52;5157:29;5176:9;5157:29;:::i;:::-;5147:39;;5205:38;5239:2;5228:9;5224:18;5205:38;:::i;:::-;5195:48;;5290:2;5279:9;5275:18;5262:32;5252:42;;4972:328;;;;;:::o;5305:127::-;5366:10;5361:3;5357:20;5354:1;5347:31;5397:4;5394:1;5387:15;5421:4;5418:1;5411:15;5437:632;5502:5;-1:-1:-1;;;;;5573:2:1;5565:6;5562:14;5559:40;;;5579:18;;:::i;:::-;5654:2;5648:9;5622:2;5708:15;;-1:-1:-1;;5704:24:1;;;5730:2;5700:33;5696:42;5684:55;;;5754:18;;;5774:22;;;5751:46;5748:72;;;5800:18;;:::i;:::-;5840:10;5836:2;5829:22;5869:6;5860:15;;5899:6;5891;5884:22;5939:3;5930:6;5925:3;5921:16;5918:25;5915:45;;;5956:1;5953;5946:12;5915:45;6006:6;6001:3;5994:4;5986:6;5982:17;5969:44;6061:1;6054:4;6045:6;6037;6033:19;6029:30;6022:41;;;;5437:632;;;;;:::o;6074:519::-;6152:6;6160;6213:2;6201:9;6192:7;6188:23;6184:32;6181:52;;;6229:1;6226;6219:12;6181:52;6265:9;6252:23;6242:33;;6326:2;6315:9;6311:18;6298:32;-1:-1:-1;;;;;6345:6:1;6342:30;6339:50;;;6385:1;6382;6375:12;6339:50;6408:22;;6461:4;6453:13;;6449:27;-1:-1:-1;6439:55:1;;6490:1;6487;6480:12;6439:55;6513:74;6579:7;6574:2;6561:16;6556:2;6552;6548:11;6513:74;:::i;:::-;6503:84;;;6074:519;;;;;:::o;6598:411::-;6669:6;6677;6730:2;6718:9;6709:7;6705:23;6701:32;6698:52;;;6746:1;6743;6736:12;6698:52;6786:9;6773:23;-1:-1:-1;;;;;6811:6:1;6808:30;6805:50;;;6851:1;6848;6841:12;6805:50;6890:59;6941:7;6932:6;6921:9;6917:22;6890:59;:::i;:::-;6968:8;;6864:85;;-1:-1:-1;6598:411:1;-1:-1:-1;;;;6598:411:1:o;7014:254::-;7079:6;7087;7140:2;7128:9;7119:7;7115:23;7111:32;7108:52;;;7156:1;7153;7146:12;7108:52;7179:29;7198:9;7179:29;:::i;:::-;7169:39;;7227:35;7258:2;7247:9;7243:18;7227:35;:::i;:::-;7217:45;;7014:254;;;;;:::o;7273:186::-;7332:6;7385:2;7373:9;7364:7;7360:23;7356:32;7353:52;;;7401:1;7398;7391:12;7353:52;7424:29;7443:9;7424:29;:::i;7464:667::-;7559:6;7567;7575;7583;7636:3;7624:9;7615:7;7611:23;7607:33;7604:53;;;7653:1;7650;7643:12;7604:53;7676:29;7695:9;7676:29;:::i;:::-;7666:39;;7724:38;7758:2;7747:9;7743:18;7724:38;:::i;:::-;7714:48;;7809:2;7798:9;7794:18;7781:32;7771:42;;7864:2;7853:9;7849:18;7836:32;-1:-1:-1;;;;;7883:6:1;7880:30;7877:50;;;7923:1;7920;7913:12;7877:50;7946:22;;7999:4;7991:13;;7987:27;-1:-1:-1;7977:55:1;;8028:1;8025;8018:12;7977:55;8051:74;8117:7;8112:2;8099:16;8094:2;8090;8086:11;8051:74;:::i;:::-;8041:84;;;7464:667;;;;;;;:::o;8136:505::-;8228:6;8236;8244;8297:2;8285:9;8276:7;8272:23;8268:32;8265:52;;;8313:1;8310;8303:12;8265:52;8353:9;8340:23;-1:-1:-1;;;;;8378:6:1;8375:30;8372:50;;;8418:1;8415;8408:12;8372:50;8457:70;8519:7;8510:6;8499:9;8495:22;8457:70;:::i;:::-;8546:8;;-1:-1:-1;8431:96:1;-1:-1:-1;8600:35:1;;-1:-1:-1;8631:2:1;8616:18;;8600:35;:::i;:::-;8590:45;;8136:505;;;;;:::o;8646:391::-;8732:6;8740;8748;8756;8809:3;8797:9;8788:7;8784:23;8780:33;8777:53;;;8826:1;8823;8816:12;8777:53;8849:29;8868:9;8849:29;:::i;:::-;8839:39;8925:2;8910:18;;8897:32;;-1:-1:-1;8976:2:1;8961:18;;8948:32;;9027:2;9012:18;8999:32;;-1:-1:-1;8646:391:1;-1:-1:-1;;;8646:391:1:o;9042:1383::-;9358:2;9370:21;;;9440:13;;9343:18;;;9462:22;;;9310:4;;9538;;9515:3;9500:19;;;9565:15;;;9310:4;9608:169;9622:6;9619:1;9616:13;9608:169;;;9683:13;;9671:26;;9717:12;;;;9752:15;;;;9644:1;9637:9;9608:169;;;-1:-1:-1;;;9813:19:1;;;9793:18;;;9786:47;9883:13;;9905:21;;;9944:12;;;;9996:1;9992:16;;;9983:26;;9979:35;;10039:15;;;10074:1;10084:269;10100:8;10095:3;10092:17;10084:269;;;10195:2;10191:7;10185:3;10177:6;10173:16;10169:30;10162:5;10155:45;10223:42;10258:6;10247:8;10241:15;10223:42;:::i;:::-;10329:14;;;;10213:52;-1:-1:-1;10290:17:1;;;;10128:1;10119:11;10084:269;;;10088:3;;10370:6;10362:14;;;;;;;10412:6;10407:2;10396:9;10392:18;10385:34;9042:1383;;;;;;:::o;10430:260::-;10498:6;10506;10559:2;10547:9;10538:7;10534:23;10530:32;10527:52;;;10575:1;10572;10565:12;10527:52;10598:29;10617:9;10598:29;:::i;:::-;10588:39;;10646:38;10680:2;10669:9;10665:18;10646:38;:::i;10695:380::-;10774:1;10770:12;;;;10817;;;10838:61;;10892:4;10884:6;10880:17;10870:27;;10838:61;10945:2;10937:6;10934:14;10914:18;10911:38;10908:161;;;10991:10;10986:3;10982:20;10979:1;10972:31;11026:4;11023:1;11016:15;11054:4;11051:1;11044:15;10908:161;;10695:380;;;:::o;11493:356::-;11695:2;11677:21;;;11714:18;;;11707:30;11773:34;11768:2;11753:18;;11746:62;11840:2;11825:18;;11493:356::o;12681:127::-;12742:10;12737:3;12733:20;12730:1;12723:31;12773:4;12770:1;12763:15;12797:4;12794:1;12787:15;12813:127;12874:10;12869:3;12865:20;12862:1;12855:31;12905:4;12902:1;12895:15;12929:4;12926:1;12919:15;12945:135;12984:3;-1:-1:-1;;13005:17:1;;13002:43;;;13025:18;;:::i;:::-;-1:-1:-1;13072:1:1;13061:13;;12945:135::o;13430:522::-;13508:4;13514:6;13574:11;13561:25;13668:2;13664:7;13653:8;13637:14;13633:29;13629:43;13609:18;13605:68;13595:96;;13687:1;13684;13677:12;13595:96;13714:33;;13766:20;;;-1:-1:-1;;;;;;13798:30:1;;13795:50;;;13841:1;13838;13831:12;13795:50;13874:4;13862:17;;-1:-1:-1;13905:14:1;13901:27;;;13891:38;;13888:58;;;13942:1;13939;13932:12;13957:413;14159:2;14141:21;;;14198:2;14178:18;;;14171:30;14237:34;14232:2;14217:18;;14210:62;-1:-1:-1;;;14303:2:1;14288:18;;14281:47;14360:3;14345:19;;13957:413::o;15617:125::-;15657:4;15685:1;15682;15679:8;15676:34;;;15690:18;;:::i;:::-;-1:-1:-1;15727:9:1;;15617:125::o;16568:340::-;16770:2;16752:21;;;16809:2;16789:18;;;16782:30;-1:-1:-1;;;16843:2:1;16828:18;;16821:46;16899:2;16884:18;;16568:340::o;18329:128::-;18369:3;18400:1;18396:6;18393:1;18390:13;18387:39;;;18406:18;;:::i;:::-;-1:-1:-1;18442:9:1;;18329:128::o;18462:168::-;18502:7;18568:1;18564;18560:6;18556:14;18553:1;18550:21;18545:1;18538:9;18531:17;18527:45;18524:71;;;18575:18;;:::i;:::-;-1:-1:-1;18615:9:1;;18462:168::o;18635:127::-;18696:10;18691:3;18687:20;18684:1;18677:31;18727:4;18724:1;18717:15;18751:4;18748:1;18741:15;18767:120;18807:1;18833;18823:35;;18838:18;;:::i;:::-;-1:-1:-1;18872:9:1;;18767:120::o;18892:413::-;19094:2;19076:21;;;19133:2;19113:18;;;19106:30;19172:34;19167:2;19152:18;;19145:62;-1:-1:-1;;;19238:2:1;19223:18;;19216:47;19295:3;19280:19;;18892:413::o;19717:112::-;19749:1;19775;19765:35;;19780:18;;:::i;:::-;-1:-1:-1;19814:9:1;;19717:112::o;19834:470::-;20013:3;20051:6;20045:13;20067:53;20113:6;20108:3;20101:4;20093:6;20089:17;20067:53;:::i;:::-;20183:13;;20142:16;;;;20205:57;20183:13;20142:16;20239:4;20227:17;;20205:57;:::i;:::-;20278:20;;19834:470;-1:-1:-1;;;;19834:470:1:o;22655:414::-;22857:2;22839:21;;;22896:2;22876:18;;;22869:30;22935:34;22930:2;22915:18;;22908:62;-1:-1:-1;;;23001:2:1;22986:18;;22979:48;23059:3;23044:19;;22655:414::o;23074:489::-;-1:-1:-1;;;;;23343:15:1;;;23325:34;;23395:15;;23390:2;23375:18;;23368:43;23442:2;23427:18;;23420:34;;;23490:3;23485:2;23470:18;;23463:31;;;23268:4;;23511:46;;23537:19;;23529:6;23511:46;:::i;:::-;23503:54;23074:489;-1:-1:-1;;;;;;23074:489:1:o;23568:249::-;23637:6;23690:2;23678:9;23669:7;23665:23;23661:32;23658:52;;;23706:1;23703;23696:12;23658:52;23738:9;23732:16;23757:30;23781:5;23757:30;:::i;24956:127::-;25017:10;25012:3;25008:20;25005:1;24998:31;25048:4;25045:1;25038:15;25072:4;25069:1;25062:15
Swarm Source
ipfs://f0de623bd73c49d3aa44b5d296529242d1403000e724c2d7adbf2c13ffb83a52
Loading...
Loading
Loading...
Loading
[ 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.