ERC-721
NFT
Overview
Max Total Supply
2,666 DVLCKS
Holders
859
Total Transfers
-
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DevilChicks
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-12-22 */ // SPDX-License-Identifier: BSD-3-Clause // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: contracts/ERC721B.sol pragma solidity ^0.8.0; abstract contract ERC721B is Context, ERC165, IERC721, IERC721Metadata { using Address for address; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address address[] internal _owners; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count = 0; uint length = _owners.length; for( uint i = 0; i < length; ++i ){ if( owner == _owners[i] ){ ++count; } } delete length; return count; } /** * @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 {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721B.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _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 = ERC721B.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.push(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 = ERC721B.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); 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(ERC721B.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); _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(ERC721B.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /*@@((#@&#((((((((/(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((#############%%%%%%%%%%%%&&%%%%%%%%%%%%%%%##(((((% %%(((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((((#(((((((((((((((((/(((((((((((((((((((((((((((((((((((((@ %%#((((((((((((((((((((((((((((((((((((((((((((((((((((( ((((((((((((((((.(((((((((((((((((((((((((((((((((((((((((((((((((((((((( %#(((((((((((((((((((((((((((((((((((((((((((((((((((((# ((((((((((((((((,*((/(((((((((((((((((((((((((((((((((((((((((((((((((((( %((((((((((((((((((((((((((((((((((((((((((((((((((((((. (((((((((((((/(/. ((((((((((((((((((((((((((((((((((((((((((((((((((((((( &(((((((((((((((((((((((((((((((((((((((((((((((((((((# #(((((//((((((((. /(((((((((((((((((((((((((((((((((((((((((((((((((((((( &(((((((((((((((((((((((((((((((((((((((((((((((((((((* /.,***@@@&&(/##&, .(((((((((((((((((((((((((((((((((((((((((((((((((((((( &((((((((((((((((((((((((((((((((((((((((((((((((////(, .%@@@@#@@@@@@@@@&, .#((((((((((((((((((((((((((((((((((((((((((((((((((((( &((((((((((((((((((((((((((((((((((((((((((//////((((&, *@@@@@@@@@@@@@@%. .%&((((((((((((((((((((((((((((((((((((((((((((((/(((/( &(((((((((((((((((((((((((((((((((((///////(((((((((#/. *&(#%&#%&&&#((%(. .%%%(((((((((((((((((((((((((((((((((((((((((((((((((/( &(((((((((((((((((((((((((((((///////(((((((((((((((%,, .(&&@&@&@@&@&%&*...%&&(((((((((((((((((((((((((((((((((/((((((((((((((((( &((((((((((((((((((((((//////////(((((((((((((((((((&%*. .&@@&#@&&@@&@@@* ,&&@(((((((((((((((((((((((((((((((((((((((((((((((//// &((((((((((((((((//////////(((((((((((((((((((((((#&&&/,,&&&%/*&&&&@&&&&&&*,@@&&((((((((((((((((/(((((((/(((((((/((((/////(((((((( &((((((((((//////////(((((((((((((((((((((((((((((@@@&%&&&&#/&&&&&&&&&&&&&&@&@%(((((((((((((((/(((((((((((//////(((((((((((((((( &((((///////////(((((((((((((((((((((((((((((((((#@@&&#///,,,^/#%%(#(////(/(/&@@@(((((((((((((((/(((///////((((((((((((((((((((((( &////////((((((((((((((((((((((((((((((((((((((((#@@&&&&&*(^/^/&#%%%%&%&&%&&&&&@@/((((((((((////////((((((((((((((((((((((((////// &///((((((((((((((((((((((((((((((((((((((((((((((@&&&&&&/(***(&&&&&&&&@&&&&&&&@%(///////////(/(((((((((((((((((((((////////////// &(((((((((((((((((((((((((((((((((((((((((((((*(. #@@@&&&/////%&&&&&&&&/&&&&&&&%.,*(.#///((((((((((((((((((((///////////////////// ##((((((((((((((((((((((((((((((((((((((((((((#.**(@&@...*@@@/.(%&&&&@@@&,.,&@@&**..((((((((((((((((((////(((#(/////////////////// #((((((((((((((((((((((((((((((((((((((((((((((/*.,@&&/*,....*,/...^/*....,/&&@(..//(((((((((((//////////((%%%(%&///////////////// &(((((((((((((((((((((((((((((((((((((((((((((((#,.@%/..^^/*,.,.......,//*..*%@/.#/((((/////////////(((###%%%%%#%%%%////////////// &(((((((((((((((((((((((((((((((((((((((((((//////(@#/. ............ .(&&(*//////////////////%#(#%%%&##&%#///////////////// /*((((((((((((((((((((((((((((((((((((////////(///(#&%(..........*./..........%&&#//////////////////#(#//%(((%(.#%%%&////////////// &(((((((((((((((((((((((((((((/////((((((//////////(&%(,.........,/(,......%/%&&///////////////////(##%%#(##%&#/#///////////////// &(((((((((((((((((((((((///(/(((((((////////////////@%((#%...%%%#(###.../@@@/#%@///////////////////%%(*(#%*,%(%#(/////////////(((( &((((((((((((((((/(((((((((((((////////////////((///&%/((#@@@...,*,,.(@@@@@@(/%&///////////////////&(#%%(%(##(#/////////(((((((/// &(((((((((((((((((((((((((//////////////////////////(&///#@@@@(*(/(*(@@@@@@&#/%#////////////////////#%&%(%.(#/(////(((((////////// &(((((((((((((((((((((///////////////////////////////&(/((@@@%&*****,&#%@@@%&/#(/////////////////////((##/*#%%(((///////////////// &(((((((/(((((((/////////////////////////////////////#(/#/%&&&,/&%.&%#(%@@@&@(((&&&&&(/////////(((////(%###%*#//////////////////// &((((((((((((/////////////////////////////////////////(/#(%@,....,(,..,/(##&&&#&&&&&#&&((((((/////////(###%/%///////////////////// %(((((((///////////////////////////////////////%&&&&&&&&&&&# ..,(,^/..,&&&&&&&&&&&&&&&&(//////////////#(#%%////////////////////// /*(((///////////////////////////////////////(&&((&&&&&&&%#(/#&&&&(%&%*&&&&&&&&&&&&&&&&&&&&/////////////(,##%(////////////////////// %///////////////////////////////////////(&&&&&&&&&&&&&&&&&&&&&&(%&&&&%(&&&&//&&&&%&&&&&&&#////////////&%#%&/////////////////////// %/////////////(///////////////////////&&&&&&&&&&&&&&&&&&&&&&&&(%&&&&&&&&&%&&&&&&@@&&&&&%%&(//////////#%&#%#/////////////////////// %(////////((///////////////////////(&//#&&&&&&&&&&&(&&&&&&&&&/&&&&&&&&&&&&%//%&&&@&&&&&&/(&/////////(&&&###/////////////////////// %(///((((////////////////////////&&/%&&&&&&&&&&&@@&@&&&&&&&#&&&&&&&&&&&&&&&&&%#&&&@&&&&&&/(&///////(&&&&##%/////////////////////// %((((/////////////////////////(&&(&&&&&&&&&&&@(////&&&&&&&(%&&&&&&&&&&&(/&&&&&/%#&&&@&&&&&%(&//////&(&&&(#%/////////////////////// %#//////((//////////////////&&&&&&&&&&&&&&&(//////%&&&&&(&&&&&&&&&&&&&&&&&&&&&////##&&&&&&&%%&////(%%&&&&#%/////////////////////// %#/(((///////////////////#&&%&&&&&&&&&&%////////((&&&/%%/&&&&&&&&&&&&&&&&&&&&&&&&&&&&%&#&&&&%&&///&/&&&&&&%/////////////////////// %#////////////////////(&&%%&&&&&&&&&%///////(((((&#%&&%((&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&/(&&&&&&&&#(////////////////////// #%//////////////////&&&&&&&&#&&&&(//////(((//////&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&@&&&&&&&&%&#&&&&&&&#(////////////////////// #%///////////////(&&&&&&&&&&&&(/////(((//////////#&&&&&&&&&&&%///(.......(*^/(#&&&&&&&&&&&&&&&&&@&&%&&&&&&##////////////////////// #%///////////////(&&&&&%#&&(/////((////////////////&&#**,,****^//..........,*(##(#%////(@&&&&&%&&&&%&&&&&%&#////////////////////// #%////////////////&&&&&//&%//((///////////////////////%(///((**...................#//////%&&&&&&%%&&&&&&&%&(////////////////////// #%////////////////(&&&&&#/&%///////////////////////////(*((/***...................(////////&&&&&%#&&&&&%#&&/////////////////////// #&/////////////////%&&&&&%#&(/////////////////////////////^/.*.***..............*%///////////%&&&#&&&&&%&%//////////////////////// #&//////////////////%&&&&&%&&///////////////////////////#,&/.*,...**...........(%//////////////#((#&&&&%////////////////////////// (&///////////////////%&&&&&&&&////////////////////////////.,,.............*(./,(%////////////////%%###//////////////////////////// (%////////////////////(&&&&&&&#//////////////////////////% ............*,.(..**(#/////////////////#%////////////////////////////// (%//////////////////////%&&&&&&////////////////////////#*. ...........(*..//././#/////////////////(/////////////////////////////// (%///////////////////////(&&&&&&////////////////////(/. .....................*%/////////////////(/////////////////////////////// (%/////////////////////////%&&&&&/////////////////#.@&........................,*(/////////////////#/////////////////////////////// (%//////////////////////////(&&&&&////(%/..,(,.#. .&%...............*.......,**(//////////////////////////////////////////////// (%////////////////////////////@&@//(...*#(#&&@%.* ...#&............ *,.......,*.&//////////////////////////////////////////////// (%//////////////////////////////*... .,,... .*&@&%,....#@.....................*.@%*/////////////////////////////////////////////// /*//////////////////////////////^**....,,***.,,&&&&&&,..&@%..................,%%....#////////////////////////////////////////////( /#///////////////////////////////#%#/**,,#&@#&/&&&,.&&&&%@@@&...............&&.... ..%(//////////////////////////////////////////( /(//////////////////////////////&@&&&%%@%.@&&%,&%&&&&&&&&*&&&@@&,.......*&@@,.../&&&&&&&&////////////////////////////////////////( /(////////////////////////////(%&&&&///#@*%&&&&*&@@@@@&%&&&&&&###&&&&&&(#%&&#&&&&&(.&&&##(,./////////////////////////////////////( /////////////////////////////(&%&&#///%&&&&&&&&&&&&&&&&@@@@@@@##&(#&%%&##&&&&##&&&&&&(&@@%//////////////////////////////////////// /////////////////////////////&&#&(///&&&&&&&&&&&&&&&&&&&&&&&&&&&&%&&@#@@&@@@@@@@&@@&@&&&&&#/////////////////////////////////////// ////////////////////////////%&@&(//#&&&&&&&&&&&&%&&&&&&&&&&&&&&%/%&&&/&&&&&&&@&&&&&&&&&&&&&%////////////////////////////////////// ////////////////////////////&&&&(#/&&&&&&&&&&&&&&&&&&&&&&&&&*#&&%&&&@@%#&%&&&&&&&&&&&&&&&&&&%////////////////////////////////////( ///////////////////////////%&&&//%@%#&&&&&&&&&&&&&&&&&&&(&&@@&&%&&&&&&@&%#&&&&&&&&&&&&&(/&&&&#///////////////////////////////////( ///////////////////////////@&&(//&&&&&&&(*@&&&&&&&,%&#&&@@@&&&&&&&&@&&&&@&%/&&&&&&&&&&&///&&&&///////////////////////////////////( //////////////////////////(&&&//%&&&&&&&&&&&&@@@@@@@@@&&&@//(%&%&&&&&&&&&&@@&%&&&&&&&&#////&&&&//////////////////////////////////# //////////////////////////#&&&//&&&&&&&&&&&&&&&&&&&&&&&&&&//////&&&&&&&&&&&&&@&#*&&&&&&/////&&&%/////////////////////////////////# (/////////////////////////%&&&//&&&&&&&&&&&&&&&&&&&&&&&&&&///////&&&&&&&&&&&&&&&@&%&&&&&////&&&&/////////////////////////////////# #/////////////////////////&&&&/#&&&&&&&&&&&&&&&&&&&&&&&&&(///////%&&&&&&&&&&&&&&&&&@&%%#*///(&&&&////////////////////////////////% /*/////////////////////////&&&&(%&&&&&&&&&&&&&&&&&&&&&&&&&/////////&&&&&&&&&&&&&&&&&&&&&&&%(##&@@&@@@@@@&&&&&&&%#///////////////#&%*/ // ******** DEVIL CHICKS ********* pragma solidity ^0.8.10; contract DevilChicks is Ownable, ERC721B { using Strings for uint256; uint256 private constant MAX_MINT = 2666; uint256 private constant MINT_PRICE = 0.02 ether; uint256 private constant T_MINT = 10; uint256 private _available; string private _contractURI; string private _baseURI; string private _notRevealedURI = "ipfs://QmUvCeboAPHDj5magQddFj9Z5mKb4yEzwBb8Q5qpkX84jj"; string private _baseExtension = ".json"; address private _vaultAddress = 0x94FAeC8839C37dA88b495243b85A75d06bdD6dab; bool private saleActive; bool private revealed; constructor() ERC721B("Devil Chicks", "DVLCKS") { _owners.push(address(0)); } function mint(uint256 _amount) external payable { require(saleActive, "SALE_CLOSED"); require(_amount * MINT_PRICE <= msg.value, "INSUFFICIENT_ETH"); require(_amount <= T_MINT, "MAX_AMOUNT_PER_MINT"); require(_amount <= _available, "MAX_SALE_SUPPLY"); for(uint256 i = 0; i < _amount; i++) { _safeMint(msg.sender, _owners.length); } _available -= _amount; } function setVaultAddress(address addr) external onlyOwner { _vaultAddress = addr; } function setBaseURI(string memory URI) external onlyOwner { _baseURI = URI; } function setNotRevealURI(string memory URI) external onlyOwner { _notRevealedURI = URI; } function setBaseExtension(string memory extension) external onlyOwner { _baseExtension = extension; } function setReserve(uint256 reserve) external onlyOwner { _available = MAX_MINT - reserve - _owners.length + 1; } function setContractURI(string calldata URI) external onlyOwner { _contractURI = URI; } function totalSupply() external view returns (uint256) { return _owners.length - 1; } function contractURI() external view returns (string memory) { return _contractURI; } function tokenURI(uint256 tokenId) external view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); if (!revealed) { return _notRevealedURI; } return string(abi.encodePacked(_baseURI, tokenId.toString(), _baseExtension)); } // admin commands function gift(address[] calldata receivers) external onlyOwner { require(receivers.length + _owners.length - 1 <= MAX_MINT, "MAX_MINT"); for (uint256 i = 0; i < receivers.length; i++) { _safeMint(receivers[i], _owners.length); } _available = _available < receivers.length ? 0 : _available - receivers.length; } function switchSale() external onlyOwner { saleActive = !saleActive; } function reveal() external onlyOwner { revealed = !revealed; } function withdraw() external onlyOwner { (bool success, ) = payable(_vaultAddress).call{value: address(this).balance}(""); require(success); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"extension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setNotRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"reserve","type":"uint256"}],"name":"setReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setVaultAddress","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":"switchSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040526035608081815290620023d360a03980516200002991600991602090910190620001b3565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200005891600a91620001b3565b50600b80546001600160a01b0319167394faec8839c37da88b495243b85a75d06bdd6dab1790553480156200008c57600080fd5b506040518060400160405280600c81526020016b446576696c20436869636b7360a01b8152506040518060400160405280600681526020016544564c434b5360d01b815250620000eb620000e56200015f60201b60201c565b62000163565b815162000100906001906020850190620001b3565b50805162000116906002906020840190620001b3565b5050600380546001810182556000919091527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b03191690555062000296565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001c19062000259565b90600052602060002090601f016020900481019282620001e5576000855562000230565b82601f106200020057805160ff191683800117855562000230565b8280016001018555821562000230579182015b828111156200023057825182559160200191906001019062000213565b506200023e92915062000242565b5090565b5b808211156200023e576000815560010162000243565b600181811c908216806200026e57607f821691505b602082108114156200029057634e487b7160e01b600052602260045260246000fd5b50919050565b61212d80620002a66000396000f3fe6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063da3ef23f11610064578063da3ef23f146104d5578063e8a3d485146104f5578063e985e9c51461050a578063f2fde38b1461055357600080fd5b8063a22cb46514610460578063a475b5dd14610480578063b88d4fde14610495578063c87b56dd146104b557600080fd5b80638da5cb5b116100d15780638da5cb5b146103fa578063938e3d7b1461041857806395d89b4114610438578063a0712d681461044d57600080fd5b806370a08231146103a5578063715018a6146103c557806385535cc5146103da57600080fd5b80633ccfd60b116101645780635322f9d11161013e5780635322f9d11461033057806355f804b3146103455780635accac99146103655780636352211e1461038557600080fd5b80633ccfd60b146102db5780634256dbe3146102f057806342842e0e1461031057600080fd5b8063095ea7b3116101a0578063095ea7b314610256578063163e1e611461027857806318160ddd1461029857806323b872dd146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611a10565b610573565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105c5565b6040516101f39190611a8c565b34801561022a57600080fd5b5061023e610239366004611a9f565b610657565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611ad4565b6106e4565b005b34801561028457600080fd5b50610276610293366004611afe565b6107fa565b3480156102a457600080fd5b506102ad6108f1565b6040519081526020016101f3565b3480156102c757600080fd5b506102766102d6366004611b73565b610908565b3480156102e757600080fd5b50610276610939565b3480156102fc57600080fd5b5061027661030b366004611a9f565b6109c6565b34801561031c57600080fd5b5061027661032b366004611b73565b610a1a565b34801561033c57600080fd5b50610276610a35565b34801561035157600080fd5b50610276610360366004611c3b565b610a80565b34801561037157600080fd5b50610276610380366004611c3b565b610ac1565b34801561039157600080fd5b5061023e6103a0366004611a9f565b610afe565b3480156103b157600080fd5b506102ad6103c0366004611c84565b610b8a565b3480156103d157600080fd5b50610276610c5c565b3480156103e657600080fd5b506102766103f5366004611c84565b610c92565b34801561040657600080fd5b506000546001600160a01b031661023e565b34801561042457600080fd5b50610276610433366004611c9f565b610cde565b34801561044457600080fd5b50610211610d14565b61027661045b366004611a9f565b610d23565b34801561046c57600080fd5b5061027661047b366004611cff565b610e8e565b34801561048c57600080fd5b50610276610f53565b3480156104a157600080fd5b506102766104b0366004611d3b565b610f9e565b3480156104c157600080fd5b506102116104d0366004611a9f565b610fd6565b3480156104e157600080fd5b506102766104f0366004611c3b565b61111d565b34801561050157600080fd5b5061021161115a565b34801561051657600080fd5b506101e7610525366004611db7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055f57600080fd5b5061027661056e366004611c84565b611169565b60006001600160e01b031982166380ac58cd60e01b14806105a457506001600160e01b03198216635b5e139f60e01b145b806105bf57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105d490611dea565b80601f016020809104026020016040519081016040528092919081815260200182805461060090611dea565b801561064d5780601f106106225761010080835404028352916020019161064d565b820191906000526020600020905b81548152906001019060200180831161063057829003601f168201915b5050505050905090565b600061066282611201565b6106c85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ef82610afe565b9050806001600160a01b0316836001600160a01b0316141561075d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106bf565b336001600160a01b038216148061077957506107798133610525565b6107eb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106bf565b6107f5838361124b565b505050565b6000546001600160a01b031633146108245760405162461bcd60e51b81526004016106bf90611e25565b600354610a6a906001906108389084611e70565b6108429190611e88565b111561087b5760405162461bcd60e51b815260206004820152600860248201526713505617d352539560c21b60448201526064016106bf565b60005b818110156108ca576108b883838381811061089b5761089b611e9f565b90506020020160208101906108b09190611c84565b6003546112b9565b806108c281611eb5565b91505061087e565b5060065481116108e7576006546108e2908290611e88565b6108ea565b60005b6006555050565b60035460009061090390600190611e88565b905090565b61091233826112d3565b61092e5760405162461bcd60e51b81526004016106bf90611ed0565b6107f58383836113bd565b6000546001600160a01b031633146109635760405162461bcd60e51b81526004016106bf90611e25565b600b546040516000916001600160a01b03169047908381818185875af1925050503d80600081146109b0576040519150601f19603f3d011682016040523d82523d6000602084013e6109b5565b606091505b50509050806109c357600080fd5b50565b6000546001600160a01b031633146109f05760405162461bcd60e51b81526004016106bf90611e25565b6003546109ff82610a6a611e88565b610a099190611e88565b610a14906001611e70565b60065550565b6107f583838360405180602001604052806000815250610f9e565b6000546001600160a01b03163314610a5f5760405162461bcd60e51b81526004016106bf90611e25565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6000546001600160a01b03163314610aaa5760405162461bcd60e51b81526004016106bf90611e25565b8051610abd9060089060208401906118ed565b5050565b6000546001600160a01b03163314610aeb5760405162461bcd60e51b81526004016106bf90611e25565b8051610abd9060099060208401906118ed565b60008060038381548110610b1457610b14611e9f565b6000918252602090912001546001600160a01b03169050806105bf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106bf565b60006001600160a01b038216610bf55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106bf565b600354600090815b81811015610c535760038181548110610c1857610c18611e9f565b6000918252602090912001546001600160a01b0386811691161415610c4357610c4083611eb5565b92505b610c4c81611eb5565b9050610bfd565b50909392505050565b6000546001600160a01b03163314610c865760405162461bcd60e51b81526004016106bf90611e25565b610c906000611513565b565b6000546001600160a01b03163314610cbc5760405162461bcd60e51b81526004016106bf90611e25565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610d085760405162461bcd60e51b81526004016106bf90611e25565b6107f560078383611971565b6060600280546105d490611dea565b600b54600160a01b900460ff16610d6a5760405162461bcd60e51b815260206004820152600b60248201526a14d0531157d0d313d4d15160aa1b60448201526064016106bf565b34610d7c66470de4df82000083611f21565b1115610dbd5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b60448201526064016106bf565b600a811115610e045760405162461bcd60e51b815260206004820152601360248201527213505617d05353d5539517d4115497d3525395606a1b60448201526064016106bf565b600654811115610e485760405162461bcd60e51b815260206004820152600f60248201526e4d41585f53414c455f535550504c5960881b60448201526064016106bf565b60005b81811015610e7357600354610e619033906112b9565b80610e6b81611eb5565b915050610e4b565b508060066000828254610e869190611e88565b909155505050565b6001600160a01b038216331415610ee75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106bf565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610f7d5760405162461bcd60e51b81526004016106bf90611e25565b600b805460ff60a81b198116600160a81b9182900460ff1615909102179055565b610fa833836112d3565b610fc45760405162461bcd60e51b81526004016106bf90611ed0565b610fd084848484611563565b50505050565b6060610fe182611201565b6110455760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106bf565b600b54600160a81b900460ff166110e8576009805461106390611dea565b80601f016020809104026020016040519081016040528092919081815260200182805461108f90611dea565b80156110dc5780601f106110b1576101008083540402835291602001916110dc565b820191906000526020600020905b8154815290600101906020018083116110bf57829003601f168201915b50505050509050919050565b60086110f383611596565b600a60405160200161110793929190611fda565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146111475760405162461bcd60e51b81526004016106bf90611e25565b8051610abd90600a9060208401906118ed565b6060600780546105d490611dea565b6000546001600160a01b031633146111935760405162461bcd60e51b81526004016106bf90611e25565b6001600160a01b0381166111f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bf565b6109c381611513565b600354600090821080156105bf575060006001600160a01b03166003838154811061122e5761122e611e9f565b6000918252602090912001546001600160a01b0316141592915050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061128082610afe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610abd828260405180602001604052806000815250611694565b60006112de82611201565b61133f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106bf565b600061134a83610afe565b9050806001600160a01b0316846001600160a01b031614806113855750836001600160a01b031661137a84610657565b6001600160a01b0316145b806113b557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113d082610afe565b6001600160a01b0316146114385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106bf565b6001600160a01b03821661149a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106bf565b6114a560008261124b565b81600382815481106114b9576114b9611e9f565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61156e8484846113bd565b61157a848484846116c7565b610fd05760405162461bcd60e51b81526004016106bf9061200d565b6060816115ba5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115e457806115ce81611eb5565b91506115dd9050600a83612075565b91506115be565b60008167ffffffffffffffff8111156115ff576115ff611baf565b6040519080825280601f01601f191660200182016040528015611629576020820181803683370190505b5090505b84156113b55761163e600183611e88565b915061164b600a86612089565b611656906030611e70565b60f81b81838151811061166b5761166b611e9f565b60200101906001600160f81b031916908160001a90535061168d600a86612075565b945061162d565b61169e83836117c5565b6116ab60008484846116c7565b6107f55760405162461bcd60e51b81526004016106bf9061200d565b60006001600160a01b0384163b156117ba57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061170b90339089908890889060040161209d565b6020604051808303816000875af1925050508015611746575060408051601f3d908101601f19168201909252611743918101906120da565b60015b6117a0573d808015611774576040519150601f19603f3d011682016040523d82523d6000602084013e611779565b606091505b5080516117985760405162461bcd60e51b81526004016106bf9061200d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113b5565b506001949350505050565b6001600160a01b03821661181b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106bf565b61182481611201565b156118715760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106bf565b6003805460018101825560009182527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546118f990611dea565b90600052602060002090601f01602090048101928261191b5760008555611961565b82601f1061193457805160ff1916838001178555611961565b82800160010185558215611961579182015b82811115611961578251825591602001919060010190611946565b5061196d9291506119e5565b5090565b82805461197d90611dea565b90600052602060002090601f01602090048101928261199f5760008555611961565b82601f106119b85782800160ff19823516178555611961565b82800160010185558215611961579182015b828111156119615782358255916020019190600101906119ca565b5b8082111561196d57600081556001016119e6565b6001600160e01b0319811681146109c357600080fd5b600060208284031215611a2257600080fd5b8135611a2d816119fa565b9392505050565b60005b83811015611a4f578181015183820152602001611a37565b83811115610fd05750506000910152565b60008151808452611a78816020860160208601611a34565b601f01601f19169290920160200192915050565b602081526000611a2d6020830184611a60565b600060208284031215611ab157600080fd5b5035919050565b80356001600160a01b0381168114611acf57600080fd5b919050565b60008060408385031215611ae757600080fd5b611af083611ab8565b946020939093013593505050565b60008060208385031215611b1157600080fd5b823567ffffffffffffffff80821115611b2957600080fd5b818501915085601f830112611b3d57600080fd5b813581811115611b4c57600080fd5b8660208260051b8501011115611b6157600080fd5b60209290920196919550909350505050565b600080600060608486031215611b8857600080fd5b611b9184611ab8565b9250611b9f60208501611ab8565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611be057611be0611baf565b604051601f8501601f19908116603f01168101908282118183101715611c0857611c08611baf565b81604052809350858152868686011115611c2157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c4d57600080fd5b813567ffffffffffffffff811115611c6457600080fd5b8201601f81018413611c7557600080fd5b6113b584823560208401611bc5565b600060208284031215611c9657600080fd5b611a2d82611ab8565b60008060208385031215611cb257600080fd5b823567ffffffffffffffff80821115611cca57600080fd5b818501915085601f830112611cde57600080fd5b813581811115611ced57600080fd5b866020828501011115611b6157600080fd5b60008060408385031215611d1257600080fd5b611d1b83611ab8565b915060208301358015158114611d3057600080fd5b809150509250929050565b60008060008060808587031215611d5157600080fd5b611d5a85611ab8565b9350611d6860208601611ab8565b925060408501359150606085013567ffffffffffffffff811115611d8b57600080fd5b8501601f81018713611d9c57600080fd5b611dab87823560208401611bc5565b91505092959194509250565b60008060408385031215611dca57600080fd5b611dd383611ab8565b9150611de160208401611ab8565b90509250929050565b600181811c90821680611dfe57607f821691505b60208210811415611e1f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e8357611e83611e5a565b500190565b600082821015611e9a57611e9a611e5a565b500390565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611ec957611ec9611e5a565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000816000190483118215151615611f3b57611f3b611e5a565b500290565b8054600090600181811c9080831680611f5a57607f831692505b6020808410821415611f7c57634e487b7160e01b600052602260045260246000fd5b818015611f905760018114611fa157611fce565b60ff19861689528489019650611fce565b60008881526020902060005b86811015611fc65781548b820152908501908301611fad565b505084890196505b50505050505092915050565b6000611fe68286611f40565b8451611ff6818360208901611a34565b61200281830186611f40565b979650505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826120845761208461205f565b500490565b6000826120985761209861205f565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120d090830184611a60565b9695505050505050565b6000602082840312156120ec57600080fd5b8151611a2d816119fa56fea2646970667358221220de3736e2d33b7e861b9983f7c46fc6cb5d2420c0fb48f3f5e23880588042271164736f6c634300080a0033697066733a2f2f516d55764365626f415048446a356d6167516464466a395a356d4b623479457a77426238513571706b5838346a6a
Deployed Bytecode
0x6080604052600436106101c25760003560e01c806370a08231116100f7578063a22cb46511610095578063da3ef23f11610064578063da3ef23f146104d5578063e8a3d485146104f5578063e985e9c51461050a578063f2fde38b1461055357600080fd5b8063a22cb46514610460578063a475b5dd14610480578063b88d4fde14610495578063c87b56dd146104b557600080fd5b80638da5cb5b116100d15780638da5cb5b146103fa578063938e3d7b1461041857806395d89b4114610438578063a0712d681461044d57600080fd5b806370a08231146103a5578063715018a6146103c557806385535cc5146103da57600080fd5b80633ccfd60b116101645780635322f9d11161013e5780635322f9d11461033057806355f804b3146103455780635accac99146103655780636352211e1461038557600080fd5b80633ccfd60b146102db5780634256dbe3146102f057806342842e0e1461031057600080fd5b8063095ea7b3116101a0578063095ea7b314610256578063163e1e611461027857806318160ddd1461029857806323b872dd146102bb57600080fd5b806301ffc9a7146101c757806306fdde03146101fc578063081812fc1461021e575b600080fd5b3480156101d357600080fd5b506101e76101e2366004611a10565b610573565b60405190151581526020015b60405180910390f35b34801561020857600080fd5b506102116105c5565b6040516101f39190611a8c565b34801561022a57600080fd5b5061023e610239366004611a9f565b610657565b6040516001600160a01b0390911681526020016101f3565b34801561026257600080fd5b50610276610271366004611ad4565b6106e4565b005b34801561028457600080fd5b50610276610293366004611afe565b6107fa565b3480156102a457600080fd5b506102ad6108f1565b6040519081526020016101f3565b3480156102c757600080fd5b506102766102d6366004611b73565b610908565b3480156102e757600080fd5b50610276610939565b3480156102fc57600080fd5b5061027661030b366004611a9f565b6109c6565b34801561031c57600080fd5b5061027661032b366004611b73565b610a1a565b34801561033c57600080fd5b50610276610a35565b34801561035157600080fd5b50610276610360366004611c3b565b610a80565b34801561037157600080fd5b50610276610380366004611c3b565b610ac1565b34801561039157600080fd5b5061023e6103a0366004611a9f565b610afe565b3480156103b157600080fd5b506102ad6103c0366004611c84565b610b8a565b3480156103d157600080fd5b50610276610c5c565b3480156103e657600080fd5b506102766103f5366004611c84565b610c92565b34801561040657600080fd5b506000546001600160a01b031661023e565b34801561042457600080fd5b50610276610433366004611c9f565b610cde565b34801561044457600080fd5b50610211610d14565b61027661045b366004611a9f565b610d23565b34801561046c57600080fd5b5061027661047b366004611cff565b610e8e565b34801561048c57600080fd5b50610276610f53565b3480156104a157600080fd5b506102766104b0366004611d3b565b610f9e565b3480156104c157600080fd5b506102116104d0366004611a9f565b610fd6565b3480156104e157600080fd5b506102766104f0366004611c3b565b61111d565b34801561050157600080fd5b5061021161115a565b34801561051657600080fd5b506101e7610525366004611db7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561055f57600080fd5b5061027661056e366004611c84565b611169565b60006001600160e01b031982166380ac58cd60e01b14806105a457506001600160e01b03198216635b5e139f60e01b145b806105bf57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546105d490611dea565b80601f016020809104026020016040519081016040528092919081815260200182805461060090611dea565b801561064d5780601f106106225761010080835404028352916020019161064d565b820191906000526020600020905b81548152906001019060200180831161063057829003601f168201915b5050505050905090565b600061066282611201565b6106c85760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106ef82610afe565b9050806001600160a01b0316836001600160a01b0316141561075d5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106bf565b336001600160a01b038216148061077957506107798133610525565b6107eb5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106bf565b6107f5838361124b565b505050565b6000546001600160a01b031633146108245760405162461bcd60e51b81526004016106bf90611e25565b600354610a6a906001906108389084611e70565b6108429190611e88565b111561087b5760405162461bcd60e51b815260206004820152600860248201526713505617d352539560c21b60448201526064016106bf565b60005b818110156108ca576108b883838381811061089b5761089b611e9f565b90506020020160208101906108b09190611c84565b6003546112b9565b806108c281611eb5565b91505061087e565b5060065481116108e7576006546108e2908290611e88565b6108ea565b60005b6006555050565b60035460009061090390600190611e88565b905090565b61091233826112d3565b61092e5760405162461bcd60e51b81526004016106bf90611ed0565b6107f58383836113bd565b6000546001600160a01b031633146109635760405162461bcd60e51b81526004016106bf90611e25565b600b546040516000916001600160a01b03169047908381818185875af1925050503d80600081146109b0576040519150601f19603f3d011682016040523d82523d6000602084013e6109b5565b606091505b50509050806109c357600080fd5b50565b6000546001600160a01b031633146109f05760405162461bcd60e51b81526004016106bf90611e25565b6003546109ff82610a6a611e88565b610a099190611e88565b610a14906001611e70565b60065550565b6107f583838360405180602001604052806000815250610f9e565b6000546001600160a01b03163314610a5f5760405162461bcd60e51b81526004016106bf90611e25565b600b805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6000546001600160a01b03163314610aaa5760405162461bcd60e51b81526004016106bf90611e25565b8051610abd9060089060208401906118ed565b5050565b6000546001600160a01b03163314610aeb5760405162461bcd60e51b81526004016106bf90611e25565b8051610abd9060099060208401906118ed565b60008060038381548110610b1457610b14611e9f565b6000918252602090912001546001600160a01b03169050806105bf5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106bf565b60006001600160a01b038216610bf55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106bf565b600354600090815b81811015610c535760038181548110610c1857610c18611e9f565b6000918252602090912001546001600160a01b0386811691161415610c4357610c4083611eb5565b92505b610c4c81611eb5565b9050610bfd565b50909392505050565b6000546001600160a01b03163314610c865760405162461bcd60e51b81526004016106bf90611e25565b610c906000611513565b565b6000546001600160a01b03163314610cbc5760405162461bcd60e51b81526004016106bf90611e25565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b03163314610d085760405162461bcd60e51b81526004016106bf90611e25565b6107f560078383611971565b6060600280546105d490611dea565b600b54600160a01b900460ff16610d6a5760405162461bcd60e51b815260206004820152600b60248201526a14d0531157d0d313d4d15160aa1b60448201526064016106bf565b34610d7c66470de4df82000083611f21565b1115610dbd5760405162461bcd60e51b815260206004820152601060248201526f0929ca6aa8c8c9286928a9ca8be8aa8960831b60448201526064016106bf565b600a811115610e045760405162461bcd60e51b815260206004820152601360248201527213505617d05353d5539517d4115497d3525395606a1b60448201526064016106bf565b600654811115610e485760405162461bcd60e51b815260206004820152600f60248201526e4d41585f53414c455f535550504c5960881b60448201526064016106bf565b60005b81811015610e7357600354610e619033906112b9565b80610e6b81611eb5565b915050610e4b565b508060066000828254610e869190611e88565b909155505050565b6001600160a01b038216331415610ee75760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106bf565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6000546001600160a01b03163314610f7d5760405162461bcd60e51b81526004016106bf90611e25565b600b805460ff60a81b198116600160a81b9182900460ff1615909102179055565b610fa833836112d3565b610fc45760405162461bcd60e51b81526004016106bf90611ed0565b610fd084848484611563565b50505050565b6060610fe182611201565b6110455760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106bf565b600b54600160a81b900460ff166110e8576009805461106390611dea565b80601f016020809104026020016040519081016040528092919081815260200182805461108f90611dea565b80156110dc5780601f106110b1576101008083540402835291602001916110dc565b820191906000526020600020905b8154815290600101906020018083116110bf57829003601f168201915b50505050509050919050565b60086110f383611596565b600a60405160200161110793929190611fda565b6040516020818303038152906040529050919050565b6000546001600160a01b031633146111475760405162461bcd60e51b81526004016106bf90611e25565b8051610abd90600a9060208401906118ed565b6060600780546105d490611dea565b6000546001600160a01b031633146111935760405162461bcd60e51b81526004016106bf90611e25565b6001600160a01b0381166111f85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106bf565b6109c381611513565b600354600090821080156105bf575060006001600160a01b03166003838154811061122e5761122e611e9f565b6000918252602090912001546001600160a01b0316141592915050565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061128082610afe565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b610abd828260405180602001604052806000815250611694565b60006112de82611201565b61133f5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106bf565b600061134a83610afe565b9050806001600160a01b0316846001600160a01b031614806113855750836001600160a01b031661137a84610657565b6001600160a01b0316145b806113b557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166113d082610afe565b6001600160a01b0316146114385760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106bf565b6001600160a01b03821661149a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106bf565b6114a560008261124b565b81600382815481106114b9576114b9611e9f565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61156e8484846113bd565b61157a848484846116c7565b610fd05760405162461bcd60e51b81526004016106bf9061200d565b6060816115ba5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156115e457806115ce81611eb5565b91506115dd9050600a83612075565b91506115be565b60008167ffffffffffffffff8111156115ff576115ff611baf565b6040519080825280601f01601f191660200182016040528015611629576020820181803683370190505b5090505b84156113b55761163e600183611e88565b915061164b600a86612089565b611656906030611e70565b60f81b81838151811061166b5761166b611e9f565b60200101906001600160f81b031916908160001a90535061168d600a86612075565b945061162d565b61169e83836117c5565b6116ab60008484846116c7565b6107f55760405162461bcd60e51b81526004016106bf9061200d565b60006001600160a01b0384163b156117ba57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061170b90339089908890889060040161209d565b6020604051808303816000875af1925050508015611746575060408051601f3d908101601f19168201909252611743918101906120da565b60015b6117a0573d808015611774576040519150601f19603f3d011682016040523d82523d6000602084013e611779565b606091505b5080516117985760405162461bcd60e51b81526004016106bf9061200d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506113b5565b506001949350505050565b6001600160a01b03821661181b5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106bf565b61182481611201565b156118715760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106bf565b6003805460018101825560009182527fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546118f990611dea565b90600052602060002090601f01602090048101928261191b5760008555611961565b82601f1061193457805160ff1916838001178555611961565b82800160010185558215611961579182015b82811115611961578251825591602001919060010190611946565b5061196d9291506119e5565b5090565b82805461197d90611dea565b90600052602060002090601f01602090048101928261199f5760008555611961565b82601f106119b85782800160ff19823516178555611961565b82800160010185558215611961579182015b828111156119615782358255916020019190600101906119ca565b5b8082111561196d57600081556001016119e6565b6001600160e01b0319811681146109c357600080fd5b600060208284031215611a2257600080fd5b8135611a2d816119fa565b9392505050565b60005b83811015611a4f578181015183820152602001611a37565b83811115610fd05750506000910152565b60008151808452611a78816020860160208601611a34565b601f01601f19169290920160200192915050565b602081526000611a2d6020830184611a60565b600060208284031215611ab157600080fd5b5035919050565b80356001600160a01b0381168114611acf57600080fd5b919050565b60008060408385031215611ae757600080fd5b611af083611ab8565b946020939093013593505050565b60008060208385031215611b1157600080fd5b823567ffffffffffffffff80821115611b2957600080fd5b818501915085601f830112611b3d57600080fd5b813581811115611b4c57600080fd5b8660208260051b8501011115611b6157600080fd5b60209290920196919550909350505050565b600080600060608486031215611b8857600080fd5b611b9184611ab8565b9250611b9f60208501611ab8565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611be057611be0611baf565b604051601f8501601f19908116603f01168101908282118183101715611c0857611c08611baf565b81604052809350858152868686011115611c2157600080fd5b858560208301376000602087830101525050509392505050565b600060208284031215611c4d57600080fd5b813567ffffffffffffffff811115611c6457600080fd5b8201601f81018413611c7557600080fd5b6113b584823560208401611bc5565b600060208284031215611c9657600080fd5b611a2d82611ab8565b60008060208385031215611cb257600080fd5b823567ffffffffffffffff80821115611cca57600080fd5b818501915085601f830112611cde57600080fd5b813581811115611ced57600080fd5b866020828501011115611b6157600080fd5b60008060408385031215611d1257600080fd5b611d1b83611ab8565b915060208301358015158114611d3057600080fd5b809150509250929050565b60008060008060808587031215611d5157600080fd5b611d5a85611ab8565b9350611d6860208601611ab8565b925060408501359150606085013567ffffffffffffffff811115611d8b57600080fd5b8501601f81018713611d9c57600080fd5b611dab87823560208401611bc5565b91505092959194509250565b60008060408385031215611dca57600080fd5b611dd383611ab8565b9150611de160208401611ab8565b90509250929050565b600181811c90821680611dfe57607f821691505b60208210811415611e1f57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b60008219821115611e8357611e83611e5a565b500190565b600082821015611e9a57611e9a611e5a565b500390565b634e487b7160e01b600052603260045260246000fd5b6000600019821415611ec957611ec9611e5a565b5060010190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000816000190483118215151615611f3b57611f3b611e5a565b500290565b8054600090600181811c9080831680611f5a57607f831692505b6020808410821415611f7c57634e487b7160e01b600052602260045260246000fd5b818015611f905760018114611fa157611fce565b60ff19861689528489019650611fce565b60008881526020902060005b86811015611fc65781548b820152908501908301611fad565b505084890196505b50505050505092915050565b6000611fe68286611f40565b8451611ff6818360208901611a34565b61200281830186611f40565b979650505050505050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826120845761208461205f565b500490565b6000826120985761209861205f565b500690565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906120d090830184611a60565b9695505050505050565b6000602082840312156120ec57600080fd5b8151611a2d816119fa56fea2646970667358221220de3736e2d33b7e861b9983f7c46fc6cb5d2420c0fb48f3f5e23880588042271164736f6c634300080a0033
Deployed Bytecode Sourcemap
44066:3200:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20732:305;;;;;;;;;;-1:-1:-1;20732:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;20732:305:0;;;;;;;;21887:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22700:221::-;;;;;;;;;;-1:-1:-1;22700:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;22700:221:0;1528:203:1;22222:412:0;;;;;;;;;;-1:-1:-1;22222:412:0;;;;;:::i;:::-;;:::i;:::-;;46538:376;;;;;;;;;;-1:-1:-1;46538:376:0;;;;;:::i;:::-;;:::i;45933:99::-;;;;;;;;;;;;;:::i;:::-;;;2939:25:1;;;2927:2;2912:18;45933:99:0;2793:177:1;23592:339:0;;;;;;;;;;-1:-1:-1;23592:339:0;;;;;:::i;:::-;;:::i;47098:165::-;;;;;;;;;;;;;:::i;45681:127::-;;;;;;;;;;-1:-1:-1;45681:127:0;;;;;:::i;:::-;;:::i;24002:185::-;;;;;;;;;;-1:-1:-1;24002:185:0;;;;;:::i;:::-;;:::i;46922:84::-;;;;;;;;;;;;;:::i;45347:91::-;;;;;;;;;;-1:-1:-1;45347:91:0;;;;;:::i;:::-;;:::i;45446:103::-;;;;;;;;;;-1:-1:-1;45446:103:0;;;;;:::i;:::-;;:::i;21581:239::-;;;;;;;;;;-1:-1:-1;21581:239:0;;;;;:::i;:::-;;:::i;21101:418::-;;;;;;;;;;-1:-1:-1;21101:418:0;;;;;:::i;:::-;;:::i;33936:103::-;;;;;;;;;;;;;:::i;45242:97::-;;;;;;;;;;-1:-1:-1;45242:97:0;;;;;:::i;:::-;;:::i;33285:87::-;;;;;;;;;;-1:-1:-1;33331:7:0;33358:6;-1:-1:-1;;;;;33358:6:0;33285:87;;45820:101;;;;;;;;;;-1:-1:-1;45820:101:0;;;;;:::i;:::-;;:::i;22056:104::-;;;;;;;;;;;;;:::i;44792:441::-;;;;;;:::i;:::-;;:::i;22993:295::-;;;;;;;;;;-1:-1:-1;22993:295:0;;;;;:::i;:::-;;:::i;47014:76::-;;;;;;;;;;;;;:::i;24258:328::-;;;;;;;;;;-1:-1:-1;24258:328:0;;;;;:::i;:::-;;:::i;46148:363::-;;;;;;;;;;-1:-1:-1;46148:363:0;;;;;:::i;:::-;;:::i;45557:116::-;;;;;;;;;;-1:-1:-1;45557:116:0;;;;;:::i;:::-;;:::i;46040:99::-;;;;;;;;;;;;;:::i;23359:164::-;;;;;;;;;;-1:-1:-1;23359:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;23480:25:0;;;23456:4;23480:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23359:164;34194:201;;;;;;;;;;-1:-1:-1;34194:201:0;;;;;:::i;:::-;;:::i;20732:305::-;20834:4;-1:-1:-1;;;;;;20871:40:0;;-1:-1:-1;;;20871:40:0;;:105;;-1:-1:-1;;;;;;;20928:48:0;;-1:-1:-1;;;20928:48:0;20871:105;:158;;;-1:-1:-1;;;;;;;;;;13221:40:0;;;20993:36;20851:178;20732:305;-1:-1:-1;;20732:305:0:o;21887:100::-;21941:13;21974:5;21967:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21887:100;:::o;22700:221::-;22776:7;22804:16;22812:7;22804;:16::i;:::-;22796:73;;;;-1:-1:-1;;;22796:73:0;;7197:2:1;22796:73:0;;;7179:21:1;7236:2;7216:18;;;7209:30;7275:34;7255:18;;;7248:62;-1:-1:-1;;;7326:18:1;;;7319:42;7378:19;;22796:73:0;;;;;;;;;-1:-1:-1;22889:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22889:24:0;;22700:221::o;22222:412::-;22303:13;22319:24;22335:7;22319:15;:24::i;:::-;22303:40;;22368:5;-1:-1:-1;;;;;22362:11:0;:2;-1:-1:-1;;;;;22362:11:0;;;22354:57;;;;-1:-1:-1;;;22354:57:0;;7610:2:1;22354:57:0;;;7592:21:1;7649:2;7629:18;;;7622:30;7688:34;7668:18;;;7661:62;-1:-1:-1;;;7739:18:1;;;7732:31;7780:19;;22354:57:0;7408:397:1;22354:57:0;19700:10;-1:-1:-1;;;;;22446:21:0;;;;:62;;-1:-1:-1;22471:37:0;22488:5;19700:10;23359:164;:::i;22471:37::-;22424:168;;;;-1:-1:-1;;;22424:168:0;;8012:2:1;22424:168:0;;;7994:21:1;8051:2;8031:18;;;8024:30;8090:34;8070:18;;;8063:62;8161:26;8141:18;;;8134:54;8205:19;;22424:168:0;7810:420:1;22424:168:0;22605:21;22614:2;22618:7;22605:8;:21::i;:::-;22292:342;22222:412;;:::o;46538:376::-;33331:7;33358:6;-1:-1:-1;;;;;33358:6:0;19700:10;33505:23;33497:68;;;;-1:-1:-1;;;33497:68:0;;;;;;;:::i;:::-;46639:7:::1;:14:::0;44184:4:::1;::::0;46656:1:::1;::::0;46620:33:::1;::::0;:9;:33:::1;:::i;:::-;:37;;;;:::i;:::-;:49;;46612:70;;;::::0;-1:-1:-1;;;46612:70:0;;9193:2:1;46612:70:0::1;::::0;::::1;9175:21:1::0;9232:1;9212:18;;;9205:29;-1:-1:-1;;;9250:18:1;;;9243:38;9298:18;;46612:70:0::1;8991:331:1::0;46612:70:0::1;46708:9;46703:113;46723:20:::0;;::::1;46703:113;;;46765:39;46775:9;;46785:1;46775:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;46789:7;:14:::0;46765:9:::1;:39::i;:::-;46745:3:::0;::::1;::::0;::::1;:::i;:::-;;;;46703:113;;;-1:-1:-1::0;46841:10:0::1;::::0;:29;-1:-1:-1;46841:65:0::1;;46877:10;::::0;:29:::1;::::0;46890:9;;46877:29:::1;:::i;:::-;46841:65;;;46873:1;46841:65;46828:10;:78:::0;-1:-1:-1;;46538:376:0:o;45933:99::-;46006:7;:14;45979:7;;46006:18;;46023:1;;46006:18;:::i;:::-;45999:25;;45933:99;:::o;23592:339::-;23787:41;19700:10;23820:7;23787:18;:41::i;:::-;23779:103;;;;-1:-1:-1;;;23779:103:0;;;;;;;:::i;:::-;23895:28;23905:4;23911:2;23915:7;23895:9;:28::i;47098:165::-;33331:7;33358:6;-1:-1:-1;;;;;33358:6:0;19700:10;33505:23;33497:68;;;;-1:-1:-1;;;33497:68:0;;;;;;;:::i;:::-;47175:13:::1;::::0;47167:61:::1;::::0;47149:12:::1;::::0;-1:-1:-1;;;;;47175:13:0::1;::::0;47202:21:::1;::::0;47149:12;47167:61;47149:12;47167:61;47202:21;47175:13;47167:61:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47148:80;;;47247:7;47239:16;;;::::0;::::1;;47137:126;47098:165::o:0;45681:127::-;33331:7;33358:6;-1:-1:-1;;;;;33358:6:0;19700:10;33505:23;33497:68;;;;-1:-1:-1;;;33497:68:0;;;;;;;:::i;:::-;45782:7:::1;:14:::0;45761:18:::1;45772:7:::0;44184:4:::1;45761:18;:::i;:::-;:35;;;;:::i;:::-;:39;::::0;45799:1:::1;45761:39;:::i;:::-;45748:10;:52:::0;-1:-1:-1;45681:127:0:o;24002:185::-;24140:39;24157:4;24163:2;24167:7;24140:39;;;;;;;;;;;;:16;:39::i;46922:84::-;33331:7;33358:6;-1:-1:-1;;;;;33358:6:0;19700:10;33505:23;33497:68;;;;-1:-1:-1;;;33497:68:0;;;;;;;:::i;:::-;46988:10:::1;::::0;;-1:-1:-1;;;;46974:24:0;::::1;-1:-1:-1::0;;;46988:10:0;;;::::1;;;46987:11;46974:24:::0;;::::1;;::::0;;46922:84::o;45347:91::-;33331:7;33358:6;-1:-1:-1;;;;;33358:6:0;19700:10;33505:23;33497:68;;;;-1:-1:-1;;;33497:68:0;;;;;;;:::i;:::-;45416:14;;::::1;::::0;:8:::1;::::0;:14:::1;::::0;::::1;::::0;::::1;:::i;:::-;;45347:91:::0;:::o;45446:103::-;33331:7;33358:6;-1:-1:-1;;;;;33358:6:0;19700:10;33505:23;33497:68;;;;-1:-1:-1;;;33497:68:0;;;;;;;:::i;:::-;45520:21;;::::1;::::0;:15:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;21581:239::-:0;21653:7;21673:13;21689:7;21697;21689:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;21689:16:0;;-1:-1:-1;21724:19:0;21716:73;;;;-1:-1:-1;;;21716:73:0;;10429:2:1;21716:73:0;;;10411:21:1;10468:2;10448:18;;;10441:30;10507:34;10487:18;;;10480:62;-1:-1:-1;;;10558:18:1;;;10551:39;10607:19;;21716:73:0;10227:405:1;21101:418:0;21173:7;-1:-1:-1;;;;;21201:19:0;;21193:74;;;;-1:-1:-1;;;21193:74:0;;10839:2:1;21193:74:0;;;10821:21:1;10878:2;10858:18;;;10851:30;10917:34;10897:18;;;10890:62;-1:-1:-1;;;10968:18:1;;;10961:40;11018:19;;21193:74:0;10637:406:1;21193:74:0;21319:7;:14;21280:10;;;21344:119;21365:6;21361:1;:10;21344:119;;;21404:7;21412:1;21404:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;21395:19:0;;;21404:10;;21395:19;21391:61;;;21431:7;;;:::i;:::-;;;21391:61;21373:3;;;:::i;:::-;;;21344:119;;;-1:-1:-1;21506:5:0;;21101:418;-1:-1:-1;;;21101:418:0:o;33936:103::-;33331:7;33358:6;-1:-1:-1;;;;;33358:6:0;19700:10;33505:23;33497:68;;;;-1:-1:-1;;;33497:68:0;;;;;;;:::i;:::-;34001:30:::1;34028:1;34001:18;:30::i;:::-;33936:103::o:0;45242:97::-;33331:7;33358:6;-1:-1:-1;;;;;33358:6:0;19700:10;33505:23;33497:68;;;;-1:-1:-1;;;33497:68:0;;;;;;;:::i;:::-;45311:13:::1;:20:::0;;-1:-1:-1;;;;;;45311:20:0::1;-1:-1:-1::0;;;;;45311:20:0;;;::::1;::::0;;;::::1;::::0;;45242:97::o;45820:101::-;33331:7;33358:6;-1:-1:-1;;;;;33358:6:0;19700:10;33505:23;33497:68;;;;-1:-1:-1;;;33497:68:0;;;;;;;:::i;:::-;45895:18:::1;:12;45910:3:::0;;45895:18:::1;:::i;22056:104::-:0;22112:13;22145:7;22138:14;;;;;:::i;44792:441::-;44859:10;;-1:-1:-1;;;44859:10:0;;;;44851:34;;;;-1:-1:-1;;;44851:34:0;;11250:2:1;44851:34:0;;;11232:21:1;11289:2;11269:18;;;11262:30;-1:-1:-1;;;11308:18:1;;;11301:41;11359:18;;44851:34:0;11048:335:1;44851:34:0;44928:9;44904:20;44233:10;44904:7;:20;:::i;:::-;:33;;44896:62;;;;-1:-1:-1;;;44896:62:0;;11763:2:1;44896:62:0;;;11745:21:1;11802:2;11782:18;;;11775:30;-1:-1:-1;;;11821:18:1;;;11814:46;11877:18;;44896:62:0;11561:340:1;44896:62:0;44284:2;44977:7;:17;;44969:49;;;;-1:-1:-1;;;44969:49:0;;12108:2:1;44969:49:0;;;12090:21:1;12147:2;12127:18;;;12120:30;-1:-1:-1;;;12166:18:1;;;12159:49;12225:18;;44969:49:0;11906:343:1;44969:49:0;45048:10;;45037:7;:21;;45029:49;;;;-1:-1:-1;;;45029:49:0;;12456:2:1;45029:49:0;;;12438:21:1;12495:2;12475:18;;;12468:30;-1:-1:-1;;;12514:18:1;;;12507:45;12569:18;;45029:49:0;12254:339:1;45029:49:0;45095:9;45091:101;45114:7;45110:1;:11;45091:101;;;45165:7;:14;45143:37;;45153:10;;45143:9;:37::i;:::-;45123:3;;;;:::i;:::-;;;;45091:101;;;;45218:7;45204:10;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;;;44792:441:0:o;22993:295::-;-1:-1:-1;;;;;23096:24:0;;19700:10;23096:24;;23088:62;;;;-1:-1:-1;;;23088:62:0;;12800:2:1;23088:62:0;;;12782:21:1;12839:2;12819:18;;;12812:30;12878:27;12858:18;;;12851:55;12923:18;;23088:62:0;12598:349:1;23088:62:0;19700:10;23163:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;23163:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;23163:53:0;;;;;;;;;;23232:48;;540:41:1;;;23163:42:0;;19700:10;23232:48;;513:18:1;23232:48:0;;;;;;;22993:295;;:::o;47014:76::-;33331:7;33358:6;-1:-1:-1;;;;;33358:6:0;19700:10;33505:23;33497:68;;;;-1:-1:-1;;;33497:68:0;;;;;;;:::i;:::-;47074:8:::1;::::0;;-1:-1:-1;;;;47062:20:0;::::1;-1:-1:-1::0;;;47074:8:0;;;::::1;;;47073:9;47062:20:::0;;::::1;;::::0;;47014:76::o;24258:328::-;24433:41;19700:10;24466:7;24433:18;:41::i;:::-;24425:103;;;;-1:-1:-1;;;24425:103:0;;;;;;;:::i;:::-;24539:39;24553:4;24559:2;24563:7;24572:5;24539:13;:39::i;:::-;24258:328;;;;:::o;46148:363::-;46223:13;46257:16;46265:7;46257;:16::i;:::-;46249:76;;;;-1:-1:-1;;;46249:76:0;;13154:2:1;46249:76:0;;;13136:21:1;13193:2;13173:18;;;13166:30;13232:34;13212:18;;;13205:62;-1:-1:-1;;;13283:18:1;;;13276:45;13338:19;;46249:76:0;12952:411:1;46249:76:0;46343:8;;-1:-1:-1;;;46343:8:0;;;;46338:64;;46375:15;46368:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46148:363;;;:::o;46338:64::-;46453:8;46463:18;:7;:16;:18::i;:::-;46483:14;46436:62;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46422:77;;46148:363;;;:::o;45557:116::-;33331:7;33358:6;-1:-1:-1;;;;;33358:6:0;19700:10;33505:23;33497:68;;;;-1:-1:-1;;;33497:68:0;;;;;;;:::i;:::-;45639:26;;::::1;::::0;:14:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;46040:99::-:0;46086:13;46119:12;46112:19;;;;;:::i;34194:201::-;33331:7;33358:6;-1:-1:-1;;;;;33358:6:0;19700:10;33505:23;33497:68;;;;-1:-1:-1;;;33497:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34283:22:0;::::1;34275:73;;;::::0;-1:-1:-1;;;34275:73:0;;15135:2:1;34275:73:0::1;::::0;::::1;15117:21:1::0;15174:2;15154:18;;;15147:30;15213:34;15193:18;;;15186:62;-1:-1:-1;;;15264:18:1;;;15257:36;15310:19;;34275:73:0::1;14933:402:1::0;34275:73:0::1;34359:28;34378:8;34359:18;:28::i;26096:155::-:0;26195:7;:14;26161:4;;26185:24;;:58;;;;;26241:1;-1:-1:-1;;;;;26213:30:0;:7;26221;26213:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;26213:16:0;:30;;26178:65;26096:155;-1:-1:-1;;26096:155:0:o;29985:175::-;30060:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30060:29:0;-1:-1:-1;;;;;30060:29:0;;;;;;;;:24;;30114;30060;30114:15;:24::i;:::-;-1:-1:-1;;;;;30105:47:0;;;;;;;;;;;29985:175;;:::o;27109:110::-;27185:26;27195:2;27199:7;27185:26;;;;;;;;;;;;:9;:26::i;26418:349::-;26511:4;26536:16;26544:7;26536;:16::i;:::-;26528:73;;;;-1:-1:-1;;;26528:73:0;;15542:2:1;26528:73:0;;;15524:21:1;15581:2;15561:18;;;15554:30;15620:34;15600:18;;;15593:62;-1:-1:-1;;;15671:18:1;;;15664:42;15723:19;;26528:73:0;15340:408:1;26528:73:0;26612:13;26628:24;26644:7;26628:15;:24::i;:::-;26612:40;;26682:5;-1:-1:-1;;;;;26671:16:0;:7;-1:-1:-1;;;;;26671:16:0;;:51;;;;26715:7;-1:-1:-1;;;;;26691:31:0;:20;26703:7;26691:11;:20::i;:::-;-1:-1:-1;;;;;26691:31:0;;26671:51;:87;;;-1:-1:-1;;;;;;23480:25:0;;;23456:4;23480:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;26726:32;26663:96;26418:349;-1:-1:-1;;;;26418:349:0:o;29350:517::-;29510:4;-1:-1:-1;;;;;29482:32:0;:24;29498:7;29482:15;:24::i;:::-;-1:-1:-1;;;;;29482:32:0;;29474:86;;;;-1:-1:-1;;;29474:86:0;;15955:2:1;29474:86:0;;;15937:21:1;15994:2;15974:18;;;15967:30;16033:34;16013:18;;;16006:62;-1:-1:-1;;;16084:18:1;;;16077:39;16133:19;;29474:86:0;15753:405:1;29474:86:0;-1:-1:-1;;;;;29579:16:0;;29571:65;;;;-1:-1:-1;;;29571:65:0;;16365:2:1;29571:65:0;;;16347:21:1;16404:2;16384:18;;;16377:30;16443:34;16423:18;;;16416:62;-1:-1:-1;;;16494:18:1;;;16487:34;16538:19;;29571:65:0;16163:400:1;29571:65:0;29753:29;29770:1;29774:7;29753:8;:29::i;:::-;29812:2;29793:7;29801;29793:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;29793:21:0;-1:-1:-1;;;;;29793:21:0;;;;;;29832:27;;29851:7;;29832:27;;;;;;;;;;29793:16;29832:27;29350:517;;;:::o;34555:191::-;34629:16;34648:6;;-1:-1:-1;;;;;34665:17:0;;;-1:-1:-1;;;;;;34665:17:0;;;;;;34698:40;;34648:6;;;;;;;34698:40;;34629:16;34698:40;34618:128;34555:191;:::o;25468:315::-;25625:28;25635:4;25641:2;25645:7;25625:9;:28::i;:::-;25672:48;25695:4;25701:2;25705:7;25714:5;25672:22;:48::i;:::-;25664:111;;;;-1:-1:-1;;;25664:111:0;;;;;;;:::i;405:723::-;461:13;682:10;678:53;;-1:-1:-1;;709:10:0;;;;;;;;;;;;-1:-1:-1;;;709:10:0;;;;;405:723::o;678:53::-;756:5;741:12;797:78;804:9;;797:78;;830:8;;;;:::i;:::-;;-1:-1:-1;853:10:0;;-1:-1:-1;861:2:0;853:10;;:::i;:::-;;;797:78;;;885:19;917:6;907:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;907:17:0;;885:39;;935:154;942:10;;935:154;;969:11;979:1;969:11;;:::i;:::-;;-1:-1:-1;1038:10:0;1046:2;1038:5;:10;:::i;:::-;1025:24;;:2;:24;:::i;:::-;1012:39;;995:6;1002;995:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;995:56:0;;;;;;;;-1:-1:-1;1066:11:0;1075:2;1066:11;;:::i;:::-;;;935:154;;27448:321;27578:18;27584:2;27588:7;27578:5;:18::i;:::-;27629:54;27660:1;27664:2;27668:7;27677:5;27629:22;:54::i;:::-;27607:154;;;;-1:-1:-1;;;27607:154:0;;;;;;;:::i;30725:799::-;30880:4;-1:-1:-1;;;;;30901:13:0;;3303:20;3351:8;30897:620;;30937:72;;-1:-1:-1;;;30937:72:0;;-1:-1:-1;;;;;30937:36:0;;;;;:72;;19700:10;;30988:4;;30994:7;;31003:5;;30937:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30937:72:0;;;;;;;;-1:-1:-1;;30937:72:0;;;;;;;;;;;;:::i;:::-;;;30933:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31179:13:0;;31175:272;;31222:60;;-1:-1:-1;;;31222:60:0;;;;;;;:::i;31175:272::-;31397:6;31391:13;31382:6;31378:2;31374:15;31367:38;30933:529;-1:-1:-1;;;;;;31060:51:0;-1:-1:-1;;;31060:51:0;;-1:-1:-1;31053:58:0;;30897:620;-1:-1:-1;31501:4:0;30725:799;;;;;;:::o;28105:346::-;-1:-1:-1;;;;;28185:16:0;;28177:61;;;;-1:-1:-1;;;28177:61:0;;18311:2:1;28177:61:0;;;18293:21:1;;;18330:18;;;18323:30;18389:34;18369:18;;;18362:62;18441:18;;28177:61:0;18109:356:1;28177:61:0;28258:16;28266:7;28258;:16::i;:::-;28257:17;28249:58;;;;-1:-1:-1;;;28249:58:0;;18672:2:1;28249:58:0;;;18654:21:1;18711:2;18691:18;;;18684:30;18750;18730:18;;;18723:58;18798:18;;28249:58:0;18470:352:1;28249:58:0;28376:7;:16;;;;;;;-1:-1:-1;28376:16:0;;;;;;;-1:-1:-1;;;;;;28376:16:0;-1:-1:-1;;;;;28376:16:0;;;;;;;;28410:33;;28435:7;;-1:-1:-1;28410:33:0;;-1:-1:-1;;28410:33:0;28105:346;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2173:615::-;2259:6;2267;2320:2;2308:9;2299:7;2295:23;2291:32;2288:52;;;2336:1;2333;2326:12;2288:52;2376:9;2363:23;2405:18;2446:2;2438:6;2435:14;2432:34;;;2462:1;2459;2452:12;2432:34;2500:6;2489:9;2485:22;2475:32;;2545:7;2538:4;2534:2;2530:13;2526:27;2516:55;;2567:1;2564;2557:12;2516:55;2607:2;2594:16;2633:2;2625:6;2622:14;2619:34;;;2649:1;2646;2639:12;2619:34;2702:7;2697:2;2687:6;2684:1;2680:14;2676:2;2672:23;2668:32;2665:45;2662:65;;;2723:1;2720;2713:12;2662:65;2754:2;2746:11;;;;;2776:6;;-1:-1:-1;2173:615:1;;-1:-1:-1;;;;2173:615:1:o;2975:328::-;3052:6;3060;3068;3121:2;3109:9;3100:7;3096:23;3092:32;3089:52;;;3137:1;3134;3127:12;3089:52;3160:29;3179:9;3160:29;:::i;:::-;3150:39;;3208:38;3242:2;3231:9;3227:18;3208:38;:::i;:::-;3198:48;;3293:2;3282:9;3278:18;3265:32;3255:42;;2975:328;;;;;:::o;3308:127::-;3369:10;3364:3;3360:20;3357:1;3350:31;3400:4;3397:1;3390:15;3424:4;3421:1;3414:15;3440:632;3505:5;3535:18;3576:2;3568:6;3565:14;3562:40;;;3582:18;;:::i;:::-;3657:2;3651:9;3625:2;3711:15;;-1:-1:-1;;3707:24:1;;;3733:2;3703:33;3699:42;3687:55;;;3757:18;;;3777:22;;;3754:46;3751:72;;;3803:18;;:::i;:::-;3843:10;3839:2;3832:22;3872:6;3863:15;;3902:6;3894;3887:22;3942:3;3933:6;3928:3;3924:16;3921:25;3918:45;;;3959:1;3956;3949:12;3918:45;4009:6;4004:3;3997:4;3989:6;3985:17;3972:44;4064:1;4057:4;4048:6;4040;4036:19;4032:30;4025:41;;;;3440:632;;;;;:::o;4077:451::-;4146:6;4199:2;4187:9;4178:7;4174:23;4170:32;4167:52;;;4215:1;4212;4205:12;4167:52;4255:9;4242:23;4288:18;4280:6;4277:30;4274:50;;;4320:1;4317;4310:12;4274:50;4343:22;;4396:4;4388:13;;4384:27;-1:-1:-1;4374:55:1;;4425:1;4422;4415:12;4374:55;4448:74;4514:7;4509:2;4496:16;4491:2;4487;4483:11;4448:74;:::i;4533:186::-;4592:6;4645:2;4633:9;4624:7;4620:23;4616:32;4613:52;;;4661:1;4658;4651:12;4613:52;4684:29;4703:9;4684:29;:::i;4724:592::-;4795:6;4803;4856:2;4844:9;4835:7;4831:23;4827:32;4824:52;;;4872:1;4869;4862:12;4824:52;4912:9;4899:23;4941:18;4982:2;4974:6;4971:14;4968:34;;;4998:1;4995;4988:12;4968:34;5036:6;5025:9;5021:22;5011:32;;5081:7;5074:4;5070:2;5066:13;5062:27;5052:55;;5103:1;5100;5093:12;5052:55;5143:2;5130:16;5169:2;5161:6;5158:14;5155:34;;;5185:1;5182;5175:12;5155:34;5230:7;5225:2;5216:6;5212:2;5208:15;5204:24;5201:37;5198:57;;;5251:1;5248;5241:12;5321:347;5386:6;5394;5447:2;5435:9;5426:7;5422:23;5418:32;5415:52;;;5463:1;5460;5453:12;5415:52;5486:29;5505:9;5486:29;:::i;:::-;5476:39;;5565:2;5554:9;5550:18;5537:32;5612:5;5605:13;5598:21;5591:5;5588:32;5578:60;;5634:1;5631;5624:12;5578:60;5657:5;5647:15;;;5321:347;;;;;:::o;5673:667::-;5768:6;5776;5784;5792;5845:3;5833:9;5824:7;5820:23;5816:33;5813:53;;;5862:1;5859;5852:12;5813:53;5885:29;5904:9;5885:29;:::i;:::-;5875:39;;5933:38;5967:2;5956:9;5952:18;5933:38;:::i;:::-;5923:48;;6018:2;6007:9;6003:18;5990:32;5980:42;;6073:2;6062:9;6058:18;6045:32;6100:18;6092:6;6089:30;6086:50;;;6132:1;6129;6122:12;6086:50;6155:22;;6208:4;6200:13;;6196:27;-1:-1:-1;6186:55:1;;6237:1;6234;6227:12;6186:55;6260:74;6326:7;6321:2;6308:16;6303:2;6299;6295:11;6260:74;:::i;:::-;6250:84;;;5673:667;;;;;;;:::o;6345:260::-;6413:6;6421;6474:2;6462:9;6453:7;6449:23;6445:32;6442:52;;;6490:1;6487;6480:12;6442:52;6513:29;6532:9;6513:29;:::i;:::-;6503:39;;6561:38;6595:2;6584:9;6580:18;6561:38;:::i;:::-;6551:48;;6345:260;;;;;:::o;6610:380::-;6689:1;6685:12;;;;6732;;;6753:61;;6807:4;6799:6;6795:17;6785:27;;6753:61;6860:2;6852:6;6849:14;6829:18;6826:38;6823:161;;;6906:10;6901:3;6897:20;6894:1;6887:31;6941:4;6938:1;6931:15;6969:4;6966:1;6959:15;6823:161;;6610:380;;;:::o;8235:356::-;8437:2;8419:21;;;8456:18;;;8449:30;8515:34;8510:2;8495:18;;8488:62;8582:2;8567:18;;8235:356::o;8596:127::-;8657:10;8652:3;8648:20;8645:1;8638:31;8688:4;8685:1;8678:15;8712:4;8709:1;8702:15;8728:128;8768:3;8799:1;8795:6;8792:1;8789:13;8786:39;;;8805:18;;:::i;:::-;-1:-1:-1;8841:9:1;;8728:128::o;8861:125::-;8901:4;8929:1;8926;8923:8;8920:34;;;8934:18;;:::i;:::-;-1:-1:-1;8971:9:1;;8861:125::o;9327:127::-;9388:10;9383:3;9379:20;9376:1;9369:31;9419:4;9416:1;9409:15;9443:4;9440:1;9433:15;9459:135;9498:3;-1:-1:-1;;9519:17:1;;9516:43;;;9539:18;;:::i;:::-;-1:-1:-1;9586:1:1;9575:13;;9459:135::o;9599:413::-;9801:2;9783:21;;;9840:2;9820:18;;;9813:30;9879:34;9874:2;9859:18;;9852:62;-1:-1:-1;;;9945:2:1;9930:18;;9923:47;10002:3;9987:19;;9599:413::o;11388:168::-;11428:7;11494:1;11490;11486:6;11482:14;11479:1;11476:21;11471:1;11464:9;11457:17;11453:45;11450:71;;;11501:18;;:::i;:::-;-1:-1:-1;11541:9:1;;11388:168::o;13494:973::-;13579:12;;13544:3;;13634:1;13654:18;;;;13707;;;;13734:61;;13788:4;13780:6;13776:17;13766:27;;13734:61;13814:2;13862;13854:6;13851:14;13831:18;13828:38;13825:161;;;13908:10;13903:3;13899:20;13896:1;13889:31;13943:4;13940:1;13933:15;13971:4;13968:1;13961:15;13825:161;14002:18;14029:104;;;;14147:1;14142:319;;;;13995:466;;14029:104;-1:-1:-1;;14062:24:1;;14050:37;;14107:16;;;;-1:-1:-1;14029:104:1;;14142:319;13441:1;13434:14;;;13478:4;13465:18;;14236:1;14250:165;14264:6;14261:1;14258:13;14250:165;;;14342:14;;14329:11;;;14322:35;14385:16;;;;14279:10;;14250:165;;;14254:3;;14444:6;14439:3;14435:16;14428:23;;13995:466;;;;;;;13494:973;;;;:::o;14472:456::-;14693:3;14721:38;14755:3;14747:6;14721:38;:::i;:::-;14788:6;14782:13;14804:52;14849:6;14845:2;14838:4;14830:6;14826:17;14804:52;:::i;:::-;14872:50;14914:6;14910:2;14906:15;14898:6;14872:50;:::i;:::-;14865:57;14472:456;-1:-1:-1;;;;;;;14472:456:1:o;16568:414::-;16770:2;16752:21;;;16809:2;16789:18;;;16782:30;16848:34;16843:2;16828:18;;16821:62;-1:-1:-1;;;16914:2:1;16899:18;;16892:48;16972:3;16957:19;;16568:414::o;16987:127::-;17048:10;17043:3;17039:20;17036:1;17029:31;17079:4;17076:1;17069:15;17103:4;17100:1;17093:15;17119:120;17159:1;17185;17175:35;;17190:18;;:::i;:::-;-1:-1:-1;17224:9:1;;17119:120::o;17244:112::-;17276:1;17302;17292:35;;17307:18;;:::i;:::-;-1:-1:-1;17341:9:1;;17244:112::o;17361:489::-;-1:-1:-1;;;;;17630:15:1;;;17612:34;;17682:15;;17677:2;17662:18;;17655:43;17729:2;17714:18;;17707:34;;;17777:3;17772:2;17757:18;;17750:31;;;17555:4;;17798:46;;17824:19;;17816:6;17798:46;:::i;:::-;17790:54;17361:489;-1:-1:-1;;;;;;17361:489:1:o;17855:249::-;17924:6;17977:2;17965:9;17956:7;17952:23;17948:32;17945:52;;;17993:1;17990;17983:12;17945:52;18025:9;18019:16;18044:30;18068:5;18044:30;:::i
Swarm Source
ipfs://de3736e2d33b7e861b9983f7c46fc6cb5d2420c0fb48f3f5e238805880422711
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.