ERC-721
Overview
Max Total Supply
359 PEN15
Holders
173
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
4 PEN15Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Dickheads
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-08-15 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}( data ); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev 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); } } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { 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 _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev 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 {} } /** * @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() { _setOwner(_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 { _setOwner(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" ); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract Dickheads is ERC721, Ownable { event Mint(address indexed from, uint256 indexed tokenId); modifier mintingStarted() { require(mintingEnabled, "You are too early"); _; } modifier callerNotAContract() { require( tx.origin == msg.sender, "The caller can only be a user and not a contract" ); _; } uint16 private totalTokens = 6969; uint256 private maxTokensPerWallet = 150; uint256 private maxTokensPerTransaction = 10; bool private mintingEnabled = false; // Price per NFT: 0.03 ETH uint256 private tokenPrice = 30000000000000000; uint256 private totalMintedTokens = 0; string private baseURI; mapping(address => uint256) private claimedTokensPerWallet; uint256 public nextTokenToMint; constructor(string memory _initialBaseURI) ERC721("Dickheads", "PEN15") { baseURI = _initialBaseURI; nextTokenToMint = 1; } // ONLY OWNER /** * @dev Allows to withdraw the Ether in the contract to the address of the owner. */ function withdraw() external onlyOwner { uint256 totalBalance = address(this).balance; payable(msg.sender).transfer(totalBalance); } /** * @dev Sets the base URI for the API that provides the NFT data. */ function setBaseTokenURI(string memory _uri) external onlyOwner { baseURI = _uri; } /** * @dev Sets mintingEnabled */ function setMintingEnabled(bool _mintingEnabled) external onlyOwner { mintingEnabled = _mintingEnabled; } /** * @dev Sets maxTokensPerTransaction */ function setMaxTokensPerTransaction(uint256 _maxTokensPerTransaction) external onlyOwner { maxTokensPerTransaction = _maxTokensPerTransaction; } /** * @dev Sets the mint price for each token */ function setTokenPrice(uint256 _tokenPrice) external onlyOwner { tokenPrice = _tokenPrice; } // END ONLY OWNER FUNCTIONS /** * @dev Claim bulk tokens at once */ function mintTokens(uint256 amount) external payable callerNotAContract mintingStarted { require( msg.value >= tokenPrice * amount, "Not enough Ether to claim the tokens" ); require(amount <= maxTokensPerTransaction, "Unable to mint this many"); require( claimedTokensPerWallet[msg.sender] + amount <= maxTokensPerWallet, "You cannot claim more tokens" ); require( totalTokens - (nextTokenToMint - 1) > amount, "No tokens left to be claimed" ); uint256[] memory tokenIds = new uint256[](amount); claimedTokensPerWallet[msg.sender] += amount; totalMintedTokens += amount; for (uint256 i; i < amount; i++) { tokenIds[i] = getTokenToBeClaimed(); } _batchMint(msg.sender, tokenIds); } function _batchMint(address to, uint256[] memory tokenIds) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); for (uint256 i; i < tokenIds.length; i++) { require(!_exists(tokenIds[i]), "ERC721: token already minted"); _safeMint(to, tokenIds[i]); } } /** * @dev Returns the tokenId by index */ function tokenByIndex(uint256 tokenId) external view returns (uint256) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); return tokenId; } /** * @dev Returns the base URI for the tokens API. */ function baseTokenURI() external view returns (string memory) { return baseURI; } /** * @dev Returns how many tokens are still available to be claimed */ function getAvailableTokens() external view returns (uint256) { return totalTokens - (nextTokenToMint - 1); } /** * @dev Returns the claim price */ function getTokenPrice() external view returns (uint256) { return tokenPrice; } /** * @dev Returns the minting start date */ function getMintingEnabled() external view returns (bool) { return mintingEnabled; } /** * @dev Returns the total supply */ function totalSupply() external view virtual returns (uint256) { return totalMintedTokens; } // Private and Internal functions /** * @dev Returns a random available token to be claimed */ function getTokenToBeClaimed() private returns (uint256) { uint256 tokenId = nextTokenToMint; nextTokenToMint++; return tokenId; } /** * @dev See {ERC721}. */ function _baseURI() internal view virtual override returns (string memory) { return baseURI; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"}],"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":"from","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","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":"baseTokenURI","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":[],"name":"getAvailableTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintingEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextTokenToMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTokensPerTransaction","type":"uint256"}],"name":"setMaxTokensPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_mintingEnabled","type":"bool"}],"name":"setMintingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenPrice","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052611b39600660146101000a81548161ffff021916908361ffff1602179055506096600755600a6008556000600960006101000a81548160ff021916908315150217905550666a94d74f430000600a556000600b553480156200006557600080fd5b50604051620042503803806200425083398181016040528101906200008b919062000363565b6040518060400160405280600981526020017f4469636b686561647300000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f50454e313500000000000000000000000000000000000000000000000000000081525081600090805190602001906200010f92919062000241565b5080600190805190602001906200012892919062000241565b5050506200014b6200013f6200017360201b60201c565b6200017b60201b60201c565b80600c90805190602001906200016392919062000241565b506001600e819055505062000518565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200024f906200043d565b90600052602060002090601f016020900481019282620002735760008555620002bf565b82601f106200028e57805160ff1916838001178555620002bf565b82800160010185558215620002bf579182015b82811115620002be578251825591602001919060010190620002a1565b5b509050620002ce9190620002d2565b5090565b5b80821115620002ed576000816000905550600101620002d3565b5090565b6000620003086200030284620003d1565b620003a8565b9050828152602081018484840111156200032157600080fd5b6200032e84828562000407565b509392505050565b600082601f8301126200034857600080fd5b81516200035a848260208601620002f1565b91505092915050565b6000602082840312156200037657600080fd5b600082015167ffffffffffffffff8111156200039157600080fd5b6200039f8482850162000336565b91505092915050565b6000620003b4620003c7565b9050620003c2828262000473565b919050565b6000604051905090565b600067ffffffffffffffff821115620003ef57620003ee620004d8565b5b620003fa8262000507565b9050602081019050919050565b60005b83811015620004275780820151818401526020810190506200040a565b8381111562000437576000848401525b50505050565b600060028204905060018216806200045657607f821691505b602082108114156200046d576200046c620004a9565b5b50919050565b6200047e8262000507565b810181811067ffffffffffffffff82111715620004a0576200049f620004d8565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b613d2880620005286000396000f3fe6080604052600436106101c25760003560e01c80636352211e116100f757806397304ced11610095578063d547cfb711610064578063d547cfb71461061d578063e35568cb14610648578063e985e9c514610673578063f2fde38b146106b0576101c2565b806397304ced14610572578063a22cb4651461058e578063b88d4fde146105b7578063c87b56dd146105e0576101c2565b806370a08231116100d157806370a08231146104c8578063715018a6146105055780638da5cb5b1461051c57806395d89b4114610547576101c2565b80636352211e14610437578063687e7c43146104745780636a61e5fc1461049f576101c2565b806330176e131161016457806342842e0e1161013e57806342842e0e1461037d5780634b94f50e146103a65780634ea3871a146103d15780634f6ccce7146103fa576101c2565b806330176e13146103125780633ccfd60b1461033b5780633ce3ca9314610352576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780631449d3e61461029557806318160ddd146102be57806323b872dd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612a8c565b6106d9565b6040516101fb9190612fa5565b60405180910390f35b34801561021057600080fd5b506102196107bb565b6040516102269190612fc0565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612b1f565b61084d565b6040516102639190612f3e565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612a27565b6108d2565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612b1f565b6109ea565b005b3480156102ca57600080fd5b506102d3610a70565b6040516102e091906132a2565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612921565b610a7a565b005b34801561031e57600080fd5b5061033960048036038101906103349190612ade565b610ada565b005b34801561034757600080fd5b50610350610b70565b005b34801561035e57600080fd5b50610367610c3b565b6040516103749190612fa5565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f9190612921565b610c52565b005b3480156103b257600080fd5b506103bb610c72565b6040516103c891906132a2565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190612a63565b610c7c565b005b34801561040657600080fd5b50610421600480360381019061041c9190612b1f565b610d15565b60405161042e91906132a2565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190612b1f565b610d67565b60405161046b9190612f3e565b60405180910390f35b34801561048057600080fd5b50610489610e19565b60405161049691906132a2565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190612b1f565b610e1f565b005b3480156104d457600080fd5b506104ef60048036038101906104ea91906128bc565b610ea5565b6040516104fc91906132a2565b60405180910390f35b34801561051157600080fd5b5061051a610f5d565b005b34801561052857600080fd5b50610531610fe5565b60405161053e9190612f3e565b60405180910390f35b34801561055357600080fd5b5061055c61100f565b6040516105699190612fc0565b60405180910390f35b61058c60048036038101906105879190612b1f565b6110a1565b005b34801561059a57600080fd5b506105b560048036038101906105b091906129eb565b61144d565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612970565b6115ce565b005b3480156105ec57600080fd5b5061060760048036038101906106029190612b1f565b611630565b6040516106149190612fc0565b60405180910390f35b34801561062957600080fd5b506106326116d7565b60405161063f9190612fc0565b60405180910390f35b34801561065457600080fd5b5061065d611769565b60405161066a91906132a2565b60405180910390f35b34801561067f57600080fd5b5061069a600480360381019061069591906128e5565b61179e565b6040516106a79190612fa5565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906128bc565b611832565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b457506107b38261192a565b5b9050919050565b6060600080546107ca90613552565b80601f01602080910402602001604051908101604052809291908181526020018280546107f690613552565b80156108435780601f1061081857610100808354040283529160200191610843565b820191906000526020600020905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b600061085882611994565b610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e906131c2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108dd82610d67565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094590613242565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661096d611a00565b73ffffffffffffffffffffffffffffffffffffffff16148061099c575061099b81610996611a00565b61179e565b5b6109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d290613102565b60405180910390fd5b6109e58383611a08565b505050565b6109f2611a00565b73ffffffffffffffffffffffffffffffffffffffff16610a10610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d906131e2565b60405180910390fd5b8060088190555050565b6000600b54905090565b610a8b610a85611a00565b82611ac1565b610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190613282565b60405180910390fd5b610ad5838383611b9f565b505050565b610ae2611a00565b73ffffffffffffffffffffffffffffffffffffffff16610b00610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d906131e2565b60405180910390fd5b80600c9080519060200190610b6c9291906126e0565b5050565b610b78611a00565b73ffffffffffffffffffffffffffffffffffffffff16610b96610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be3906131e2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c37573d6000803e3d6000fd5b5050565b6000600960009054906101000a900460ff16905090565b610c6d838383604051806020016040528060008152506115ce565b505050565b6000600a54905090565b610c84611a00565b73ffffffffffffffffffffffffffffffffffffffff16610ca2610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef906131e2565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b6000610d2082611994565b610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d56906130e2565b60405180910390fd5b819050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790613182565b60405180910390fd5b80915050919050565b600e5481565b610e27611a00565b73ffffffffffffffffffffffffffffffffffffffff16610e45610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e92906131e2565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90613162565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f65611a00565b73ffffffffffffffffffffffffffffffffffffffff16610f83610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd0906131e2565b60405180910390fd5b610fe36000611dfb565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461101e90613552565b80601f016020809104026020016040519081016040528092919081815260200182805461104a90613552565b80156110975780601f1061106c57610100808354040283529160200191611097565b820191906000526020600020905b81548152906001019060200180831161107a57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690613002565b60405180910390fd5b600960009054906101000a900460ff1661115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590613142565b60405180910390fd5b80600a5461116c919061340e565b3410156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590613262565b60405180910390fd5b6008548111156111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90613122565b60405180910390fd5b60075481600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112419190613387565b1115611282576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611279906130c2565b60405180910390fd5b806001600e546112929190613468565b600660149054906101000a900461ffff1661ffff166112b19190613468565b116112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890613022565b60405180910390fd5b60008167ffffffffffffffff811115611333577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113615781602001602082028036833780820191505090505b50905081600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113b39190613387565b9250508190555081600b60008282546113cc9190613387565b9250508190555060005b8281101561143e576113e6611ec1565b82828151811061141f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611436906135b5565b9150506113d6565b506114493382611ee8565b5050565b611455611a00565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba906130a2565b60405180910390fd5b80600560006114d0611a00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157d611a00565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c29190612fa5565b60405180910390a35050565b6115df6115d9611a00565b83611ac1565b61161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590613282565b60405180910390fd5b61162a8484848461204f565b50505050565b606061163b82611994565b61167a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167190613222565b60405180910390fd5b60006116846120ab565b905060008151116116a457604051806020016040528060008152506116cf565b806116ae8461213d565b6040516020016116bf929190612f1a565b6040516020818303038152906040525b915050919050565b6060600c80546116e690613552565b80601f016020809104026020016040519081016040528092919081815260200182805461171290613552565b801561175f5780601f106117345761010080835404028352916020019161175f565b820191906000526020600020905b81548152906001019060200180831161174257829003601f168201915b5050505050905090565b60006001600e5461177a9190613468565b600660149054906101000a900461ffff1661ffff166117999190613468565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61183a611a00565b73ffffffffffffffffffffffffffffffffffffffff16611858610fe5565b73ffffffffffffffffffffffffffffffffffffffff16146118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a5906131e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613042565b60405180910390fd5b61192781611dfb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a7b83610d67565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611acc82611994565b611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b02906130e2565b60405180910390fd5b6000611b1683610d67565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b8557508373ffffffffffffffffffffffffffffffffffffffff16611b6d8461084d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b965750611b95818561179e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bbf82610d67565b73ffffffffffffffffffffffffffffffffffffffff1614611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c90613202565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90613082565b60405180910390fd5b611c908383836122ea565b611c9b600082611a08565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ceb9190613468565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d429190613387565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600e549050600e6000815480929190611edc906135b5565b91905055508091505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f906131a2565b60405180910390fd5b60005b815181101561204a57611fad828281518110611fa0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611994565b15611fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe490613062565b60405180910390fd5b6120378383838151811061202a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516122ef565b8080612042906135b5565b915050611f5b565b505050565b61205a848484611b9f565b6120668484848461230d565b6120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90612fe2565b60405180910390fd5b50505050565b6060600c80546120ba90613552565b80601f01602080910402602001604051908101604052809291908181526020018280546120e690613552565b80156121335780601f1061210857610100808354040283529160200191612133565b820191906000526020600020905b81548152906001019060200180831161211657829003601f168201915b5050505050905090565b60606000821415612185576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122e5565b600082905060005b600082146121b75780806121a0906135b5565b915050600a826121b091906133dd565b915061218d565b60008167ffffffffffffffff8111156121f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561222b5781602001600182028036833780820191505090505b5090505b600085146122de576001826122449190613468565b9150600a8561225391906135fe565b603061225f9190613387565b60f81b81838151811061229b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122d791906133dd565b945061222f565b8093505050505b919050565b505050565b6123098282604051806020016040528060008152506124a4565b5050565b600061232e8473ffffffffffffffffffffffffffffffffffffffff166124ff565b15612497578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612357611a00565b8786866040518563ffffffff1660e01b81526004016123799493929190612f59565b602060405180830381600087803b15801561239357600080fd5b505af19250505080156123c457506040513d601f19601f820116820180604052508101906123c19190612ab5565b60015b612447573d80600081146123f4576040519150601f19603f3d011682016040523d82523d6000602084013e6123f9565b606091505b5060008151141561243f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243690612fe2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061249c565b600190505b949350505050565b6124ae8383612512565b6124bb600084848461230d565b6124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f190612fe2565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612579906131a2565b60405180910390fd5b61258b81611994565b156125cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c290613062565b60405180910390fd5b6125d7600083836122ea565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126279190613387565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546126ec90613552565b90600052602060002090601f01602090048101928261270e5760008555612755565b82601f1061272757805160ff1916838001178555612755565b82800160010185558215612755579182015b82811115612754578251825591602001919060010190612739565b5b5090506127629190612766565b5090565b5b8082111561277f576000816000905550600101612767565b5090565b6000612796612791846132e2565b6132bd565b9050828152602081018484840111156127ae57600080fd5b6127b9848285613510565b509392505050565b60006127d46127cf84613313565b6132bd565b9050828152602081018484840111156127ec57600080fd5b6127f7848285613510565b509392505050565b60008135905061280e81613c96565b92915050565b60008135905061282381613cad565b92915050565b60008135905061283881613cc4565b92915050565b60008151905061284d81613cc4565b92915050565b600082601f83011261286457600080fd5b8135612874848260208601612783565b91505092915050565b600082601f83011261288e57600080fd5b813561289e8482602086016127c1565b91505092915050565b6000813590506128b681613cdb565b92915050565b6000602082840312156128ce57600080fd5b60006128dc848285016127ff565b91505092915050565b600080604083850312156128f857600080fd5b6000612906858286016127ff565b9250506020612917858286016127ff565b9150509250929050565b60008060006060848603121561293657600080fd5b6000612944868287016127ff565b9350506020612955868287016127ff565b9250506040612966868287016128a7565b9150509250925092565b6000806000806080858703121561298657600080fd5b6000612994878288016127ff565b94505060206129a5878288016127ff565b93505060406129b6878288016128a7565b925050606085013567ffffffffffffffff8111156129d357600080fd5b6129df87828801612853565b91505092959194509250565b600080604083850312156129fe57600080fd5b6000612a0c858286016127ff565b9250506020612a1d85828601612814565b9150509250929050565b60008060408385031215612a3a57600080fd5b6000612a48858286016127ff565b9250506020612a59858286016128a7565b9150509250929050565b600060208284031215612a7557600080fd5b6000612a8384828501612814565b91505092915050565b600060208284031215612a9e57600080fd5b6000612aac84828501612829565b91505092915050565b600060208284031215612ac757600080fd5b6000612ad58482850161283e565b91505092915050565b600060208284031215612af057600080fd5b600082013567ffffffffffffffff811115612b0a57600080fd5b612b168482850161287d565b91505092915050565b600060208284031215612b3157600080fd5b6000612b3f848285016128a7565b91505092915050565b612b518161349c565b82525050565b612b60816134ae565b82525050565b6000612b7182613344565b612b7b818561335a565b9350612b8b81856020860161351f565b612b94816136eb565b840191505092915050565b6000612baa8261334f565b612bb4818561336b565b9350612bc481856020860161351f565b612bcd816136eb565b840191505092915050565b6000612be38261334f565b612bed818561337c565b9350612bfd81856020860161351f565b80840191505092915050565b6000612c1660328361336b565b9150612c21826136fc565b604082019050919050565b6000612c3960308361336b565b9150612c448261374b565b604082019050919050565b6000612c5c601c8361336b565b9150612c678261379a565b602082019050919050565b6000612c7f60268361336b565b9150612c8a826137c3565b604082019050919050565b6000612ca2601c8361336b565b9150612cad82613812565b602082019050919050565b6000612cc560248361336b565b9150612cd08261383b565b604082019050919050565b6000612ce860198361336b565b9150612cf38261388a565b602082019050919050565b6000612d0b601c8361336b565b9150612d16826138b3565b602082019050919050565b6000612d2e602c8361336b565b9150612d39826138dc565b604082019050919050565b6000612d5160388361336b565b9150612d5c8261392b565b604082019050919050565b6000612d7460188361336b565b9150612d7f8261397a565b602082019050919050565b6000612d9760118361336b565b9150612da2826139a3565b602082019050919050565b6000612dba602a8361336b565b9150612dc5826139cc565b604082019050919050565b6000612ddd60298361336b565b9150612de882613a1b565b604082019050919050565b6000612e0060208361336b565b9150612e0b82613a6a565b602082019050919050565b6000612e23602c8361336b565b9150612e2e82613a93565b604082019050919050565b6000612e4660208361336b565b9150612e5182613ae2565b602082019050919050565b6000612e6960298361336b565b9150612e7482613b0b565b604082019050919050565b6000612e8c602f8361336b565b9150612e9782613b5a565b604082019050919050565b6000612eaf60218361336b565b9150612eba82613ba9565b604082019050919050565b6000612ed260248361336b565b9150612edd82613bf8565b604082019050919050565b6000612ef560318361336b565b9150612f0082613c47565b604082019050919050565b612f1481613506565b82525050565b6000612f268285612bd8565b9150612f328284612bd8565b91508190509392505050565b6000602082019050612f536000830184612b48565b92915050565b6000608082019050612f6e6000830187612b48565b612f7b6020830186612b48565b612f886040830185612f0b565b8181036060830152612f9a8184612b66565b905095945050505050565b6000602082019050612fba6000830184612b57565b92915050565b60006020820190508181036000830152612fda8184612b9f565b905092915050565b60006020820190508181036000830152612ffb81612c09565b9050919050565b6000602082019050818103600083015261301b81612c2c565b9050919050565b6000602082019050818103600083015261303b81612c4f565b9050919050565b6000602082019050818103600083015261305b81612c72565b9050919050565b6000602082019050818103600083015261307b81612c95565b9050919050565b6000602082019050818103600083015261309b81612cb8565b9050919050565b600060208201905081810360008301526130bb81612cdb565b9050919050565b600060208201905081810360008301526130db81612cfe565b9050919050565b600060208201905081810360008301526130fb81612d21565b9050919050565b6000602082019050818103600083015261311b81612d44565b9050919050565b6000602082019050818103600083015261313b81612d67565b9050919050565b6000602082019050818103600083015261315b81612d8a565b9050919050565b6000602082019050818103600083015261317b81612dad565b9050919050565b6000602082019050818103600083015261319b81612dd0565b9050919050565b600060208201905081810360008301526131bb81612df3565b9050919050565b600060208201905081810360008301526131db81612e16565b9050919050565b600060208201905081810360008301526131fb81612e39565b9050919050565b6000602082019050818103600083015261321b81612e5c565b9050919050565b6000602082019050818103600083015261323b81612e7f565b9050919050565b6000602082019050818103600083015261325b81612ea2565b9050919050565b6000602082019050818103600083015261327b81612ec5565b9050919050565b6000602082019050818103600083015261329b81612ee8565b9050919050565b60006020820190506132b76000830184612f0b565b92915050565b60006132c76132d8565b90506132d38282613584565b919050565b6000604051905090565b600067ffffffffffffffff8211156132fd576132fc6136bc565b5b613306826136eb565b9050602081019050919050565b600067ffffffffffffffff82111561332e5761332d6136bc565b5b613337826136eb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061339282613506565b915061339d83613506565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133d2576133d161362f565b5b828201905092915050565b60006133e882613506565b91506133f383613506565b9250826134035761340261365e565b5b828204905092915050565b600061341982613506565b915061342483613506565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561345d5761345c61362f565b5b828202905092915050565b600061347382613506565b915061347e83613506565b9250828210156134915761349061362f565b5b828203905092915050565b60006134a7826134e6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561353d578082015181840152602081019050613522565b8381111561354c576000848401525b50505050565b6000600282049050600182168061356a57607f821691505b6020821081141561357e5761357d61368d565b5b50919050565b61358d826136eb565b810181811067ffffffffffffffff821117156135ac576135ab6136bc565b5b80604052505050565b60006135c082613506565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135f3576135f261362f565b5b600182019050919050565b600061360982613506565b915061361483613506565b9250826136245761362361365e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f5468652063616c6c65722063616e206f6e6c792062652061207573657220616e60008201527f64206e6f74206120636f6e747261637400000000000000000000000000000000602082015250565b7f4e6f20746f6b656e73206c65667420746f20626520636c61696d656400000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f752063616e6e6f7420636c61696d206d6f726520746f6b656e7300000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f556e61626c6520746f206d696e742074686973206d616e790000000000000000600082015250565b7f596f752061726520746f6f206561726c79000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820457468657220746f20636c61696d2074686520746f60008201527f6b656e7300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613c9f8161349c565b8114613caa57600080fd5b50565b613cb6816134ae565b8114613cc157600080fd5b50565b613ccd816134ba565b8114613cd857600080fd5b50565b613ce481613506565b8114613cef57600080fd5b5056fea2646970667358221220104135e1a88d11b8ec457b1cdd777cfd6c70116051e7074b700e45cba9e521e964736f6c634300080400330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001668747470733a2f2f6469636b68656164732e636c756200000000000000000000
Deployed Bytecode
0x6080604052600436106101c25760003560e01c80636352211e116100f757806397304ced11610095578063d547cfb711610064578063d547cfb71461061d578063e35568cb14610648578063e985e9c514610673578063f2fde38b146106b0576101c2565b806397304ced14610572578063a22cb4651461058e578063b88d4fde146105b7578063c87b56dd146105e0576101c2565b806370a08231116100d157806370a08231146104c8578063715018a6146105055780638da5cb5b1461051c57806395d89b4114610547576101c2565b80636352211e14610437578063687e7c43146104745780636a61e5fc1461049f576101c2565b806330176e131161016457806342842e0e1161013e57806342842e0e1461037d5780634b94f50e146103a65780634ea3871a146103d15780634f6ccce7146103fa576101c2565b806330176e13146103125780633ccfd60b1461033b5780633ce3ca9314610352576101c2565b8063095ea7b3116101a0578063095ea7b31461026c5780631449d3e61461029557806318160ddd146102be57806323b872dd146102e9576101c2565b806301ffc9a7146101c757806306fdde0314610204578063081812fc1461022f575b600080fd5b3480156101d357600080fd5b506101ee60048036038101906101e99190612a8c565b6106d9565b6040516101fb9190612fa5565b60405180910390f35b34801561021057600080fd5b506102196107bb565b6040516102269190612fc0565b60405180910390f35b34801561023b57600080fd5b5061025660048036038101906102519190612b1f565b61084d565b6040516102639190612f3e565b60405180910390f35b34801561027857600080fd5b50610293600480360381019061028e9190612a27565b6108d2565b005b3480156102a157600080fd5b506102bc60048036038101906102b79190612b1f565b6109ea565b005b3480156102ca57600080fd5b506102d3610a70565b6040516102e091906132a2565b60405180910390f35b3480156102f557600080fd5b50610310600480360381019061030b9190612921565b610a7a565b005b34801561031e57600080fd5b5061033960048036038101906103349190612ade565b610ada565b005b34801561034757600080fd5b50610350610b70565b005b34801561035e57600080fd5b50610367610c3b565b6040516103749190612fa5565b60405180910390f35b34801561038957600080fd5b506103a4600480360381019061039f9190612921565b610c52565b005b3480156103b257600080fd5b506103bb610c72565b6040516103c891906132a2565b60405180910390f35b3480156103dd57600080fd5b506103f860048036038101906103f39190612a63565b610c7c565b005b34801561040657600080fd5b50610421600480360381019061041c9190612b1f565b610d15565b60405161042e91906132a2565b60405180910390f35b34801561044357600080fd5b5061045e60048036038101906104599190612b1f565b610d67565b60405161046b9190612f3e565b60405180910390f35b34801561048057600080fd5b50610489610e19565b60405161049691906132a2565b60405180910390f35b3480156104ab57600080fd5b506104c660048036038101906104c19190612b1f565b610e1f565b005b3480156104d457600080fd5b506104ef60048036038101906104ea91906128bc565b610ea5565b6040516104fc91906132a2565b60405180910390f35b34801561051157600080fd5b5061051a610f5d565b005b34801561052857600080fd5b50610531610fe5565b60405161053e9190612f3e565b60405180910390f35b34801561055357600080fd5b5061055c61100f565b6040516105699190612fc0565b60405180910390f35b61058c60048036038101906105879190612b1f565b6110a1565b005b34801561059a57600080fd5b506105b560048036038101906105b091906129eb565b61144d565b005b3480156105c357600080fd5b506105de60048036038101906105d99190612970565b6115ce565b005b3480156105ec57600080fd5b5061060760048036038101906106029190612b1f565b611630565b6040516106149190612fc0565b60405180910390f35b34801561062957600080fd5b506106326116d7565b60405161063f9190612fc0565b60405180910390f35b34801561065457600080fd5b5061065d611769565b60405161066a91906132a2565b60405180910390f35b34801561067f57600080fd5b5061069a600480360381019061069591906128e5565b61179e565b6040516106a79190612fa5565b60405180910390f35b3480156106bc57600080fd5b506106d760048036038101906106d291906128bc565b611832565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a457507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806107b457506107b38261192a565b5b9050919050565b6060600080546107ca90613552565b80601f01602080910402602001604051908101604052809291908181526020018280546107f690613552565b80156108435780601f1061081857610100808354040283529160200191610843565b820191906000526020600020905b81548152906001019060200180831161082657829003601f168201915b5050505050905090565b600061085882611994565b610897576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088e906131c2565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006108dd82610d67565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561094e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094590613242565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661096d611a00565b73ffffffffffffffffffffffffffffffffffffffff16148061099c575061099b81610996611a00565b61179e565b5b6109db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d290613102565b60405180910390fd5b6109e58383611a08565b505050565b6109f2611a00565b73ffffffffffffffffffffffffffffffffffffffff16610a10610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610a66576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5d906131e2565b60405180910390fd5b8060088190555050565b6000600b54905090565b610a8b610a85611a00565b82611ac1565b610aca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ac190613282565b60405180910390fd5b610ad5838383611b9f565b505050565b610ae2611a00565b73ffffffffffffffffffffffffffffffffffffffff16610b00610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610b56576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4d906131e2565b60405180910390fd5b80600c9080519060200190610b6c9291906126e0565b5050565b610b78611a00565b73ffffffffffffffffffffffffffffffffffffffff16610b96610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610bec576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610be3906131e2565b60405180910390fd5b60004790503373ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015610c37573d6000803e3d6000fd5b5050565b6000600960009054906101000a900460ff16905090565b610c6d838383604051806020016040528060008152506115ce565b505050565b6000600a54905090565b610c84611a00565b73ffffffffffffffffffffffffffffffffffffffff16610ca2610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610cf8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cef906131e2565b60405180910390fd5b80600960006101000a81548160ff02191690831515021790555050565b6000610d2082611994565b610d5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d56906130e2565b60405180910390fd5b819050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0790613182565b60405180910390fd5b80915050919050565b600e5481565b610e27611a00565b73ffffffffffffffffffffffffffffffffffffffff16610e45610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610e9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e92906131e2565b60405180910390fd5b80600a8190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f16576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0d90613162565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610f65611a00565b73ffffffffffffffffffffffffffffffffffffffff16610f83610fe5565b73ffffffffffffffffffffffffffffffffffffffff1614610fd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd0906131e2565b60405180910390fd5b610fe36000611dfb565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461101e90613552565b80601f016020809104026020016040519081016040528092919081815260200182805461104a90613552565b80156110975780601f1061106c57610100808354040283529160200191611097565b820191906000526020600020905b81548152906001019060200180831161107a57829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff161461110f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110690613002565b60405180910390fd5b600960009054906101000a900460ff1661115e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115590613142565b60405180910390fd5b80600a5461116c919061340e565b3410156111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a590613262565b60405180910390fd5b6008548111156111f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ea90613122565b60405180910390fd5b60075481600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546112419190613387565b1115611282576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611279906130c2565b60405180910390fd5b806001600e546112929190613468565b600660149054906101000a900461ffff1661ffff166112b19190613468565b116112f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e890613022565b60405180910390fd5b60008167ffffffffffffffff811115611333577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113615781602001602082028036833780820191505090505b50905081600d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113b39190613387565b9250508190555081600b60008282546113cc9190613387565b9250508190555060005b8281101561143e576113e6611ec1565b82828151811061141f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508080611436906135b5565b9150506113d6565b506114493382611ee8565b5050565b611455611a00565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ba906130a2565b60405180910390fd5b80600560006114d0611a00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661157d611a00565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115c29190612fa5565b60405180910390a35050565b6115df6115d9611a00565b83611ac1565b61161e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161590613282565b60405180910390fd5b61162a8484848461204f565b50505050565b606061163b82611994565b61167a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167190613222565b60405180910390fd5b60006116846120ab565b905060008151116116a457604051806020016040528060008152506116cf565b806116ae8461213d565b6040516020016116bf929190612f1a565b6040516020818303038152906040525b915050919050565b6060600c80546116e690613552565b80601f016020809104026020016040519081016040528092919081815260200182805461171290613552565b801561175f5780601f106117345761010080835404028352916020019161175f565b820191906000526020600020905b81548152906001019060200180831161174257829003601f168201915b5050505050905090565b60006001600e5461177a9190613468565b600660149054906101000a900461ffff1661ffff166117999190613468565b905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61183a611a00565b73ffffffffffffffffffffffffffffffffffffffff16611858610fe5565b73ffffffffffffffffffffffffffffffffffffffff16146118ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a5906131e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561191e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191590613042565b60405180910390fd5b61192781611dfb565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611a7b83610d67565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611acc82611994565b611b0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b02906130e2565b60405180910390fd5b6000611b1683610d67565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611b8557508373ffffffffffffffffffffffffffffffffffffffff16611b6d8461084d565b73ffffffffffffffffffffffffffffffffffffffff16145b80611b965750611b95818561179e565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611bbf82610d67565b73ffffffffffffffffffffffffffffffffffffffff1614611c15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0c90613202565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7c90613082565b60405180910390fd5b611c908383836122ea565b611c9b600082611a08565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611ceb9190613468565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d429190613387565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600080600e549050600e6000815480929190611edc906135b5565b91905055508091505090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4f906131a2565b60405180910390fd5b60005b815181101561204a57611fad828281518110611fa0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611994565b15611fed576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fe490613062565b60405180910390fd5b6120378383838151811061202a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516122ef565b8080612042906135b5565b915050611f5b565b505050565b61205a848484611b9f565b6120668484848461230d565b6120a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209c90612fe2565b60405180910390fd5b50505050565b6060600c80546120ba90613552565b80601f01602080910402602001604051908101604052809291908181526020018280546120e690613552565b80156121335780601f1061210857610100808354040283529160200191612133565b820191906000526020600020905b81548152906001019060200180831161211657829003601f168201915b5050505050905090565b60606000821415612185576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506122e5565b600082905060005b600082146121b75780806121a0906135b5565b915050600a826121b091906133dd565b915061218d565b60008167ffffffffffffffff8111156121f9577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561222b5781602001600182028036833780820191505090505b5090505b600085146122de576001826122449190613468565b9150600a8561225391906135fe565b603061225f9190613387565b60f81b81838151811061229b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856122d791906133dd565b945061222f565b8093505050505b919050565b505050565b6123098282604051806020016040528060008152506124a4565b5050565b600061232e8473ffffffffffffffffffffffffffffffffffffffff166124ff565b15612497578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612357611a00565b8786866040518563ffffffff1660e01b81526004016123799493929190612f59565b602060405180830381600087803b15801561239357600080fd5b505af19250505080156123c457506040513d601f19601f820116820180604052508101906123c19190612ab5565b60015b612447573d80600081146123f4576040519150601f19603f3d011682016040523d82523d6000602084013e6123f9565b606091505b5060008151141561243f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161243690612fe2565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061249c565b600190505b949350505050565b6124ae8383612512565b6124bb600084848461230d565b6124fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124f190612fe2565b60405180910390fd5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612582576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612579906131a2565b60405180910390fd5b61258b81611994565b156125cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125c290613062565b60405180910390fd5b6125d7600083836122ea565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126279190613387565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b8280546126ec90613552565b90600052602060002090601f01602090048101928261270e5760008555612755565b82601f1061272757805160ff1916838001178555612755565b82800160010185558215612755579182015b82811115612754578251825591602001919060010190612739565b5b5090506127629190612766565b5090565b5b8082111561277f576000816000905550600101612767565b5090565b6000612796612791846132e2565b6132bd565b9050828152602081018484840111156127ae57600080fd5b6127b9848285613510565b509392505050565b60006127d46127cf84613313565b6132bd565b9050828152602081018484840111156127ec57600080fd5b6127f7848285613510565b509392505050565b60008135905061280e81613c96565b92915050565b60008135905061282381613cad565b92915050565b60008135905061283881613cc4565b92915050565b60008151905061284d81613cc4565b92915050565b600082601f83011261286457600080fd5b8135612874848260208601612783565b91505092915050565b600082601f83011261288e57600080fd5b813561289e8482602086016127c1565b91505092915050565b6000813590506128b681613cdb565b92915050565b6000602082840312156128ce57600080fd5b60006128dc848285016127ff565b91505092915050565b600080604083850312156128f857600080fd5b6000612906858286016127ff565b9250506020612917858286016127ff565b9150509250929050565b60008060006060848603121561293657600080fd5b6000612944868287016127ff565b9350506020612955868287016127ff565b9250506040612966868287016128a7565b9150509250925092565b6000806000806080858703121561298657600080fd5b6000612994878288016127ff565b94505060206129a5878288016127ff565b93505060406129b6878288016128a7565b925050606085013567ffffffffffffffff8111156129d357600080fd5b6129df87828801612853565b91505092959194509250565b600080604083850312156129fe57600080fd5b6000612a0c858286016127ff565b9250506020612a1d85828601612814565b9150509250929050565b60008060408385031215612a3a57600080fd5b6000612a48858286016127ff565b9250506020612a59858286016128a7565b9150509250929050565b600060208284031215612a7557600080fd5b6000612a8384828501612814565b91505092915050565b600060208284031215612a9e57600080fd5b6000612aac84828501612829565b91505092915050565b600060208284031215612ac757600080fd5b6000612ad58482850161283e565b91505092915050565b600060208284031215612af057600080fd5b600082013567ffffffffffffffff811115612b0a57600080fd5b612b168482850161287d565b91505092915050565b600060208284031215612b3157600080fd5b6000612b3f848285016128a7565b91505092915050565b612b518161349c565b82525050565b612b60816134ae565b82525050565b6000612b7182613344565b612b7b818561335a565b9350612b8b81856020860161351f565b612b94816136eb565b840191505092915050565b6000612baa8261334f565b612bb4818561336b565b9350612bc481856020860161351f565b612bcd816136eb565b840191505092915050565b6000612be38261334f565b612bed818561337c565b9350612bfd81856020860161351f565b80840191505092915050565b6000612c1660328361336b565b9150612c21826136fc565b604082019050919050565b6000612c3960308361336b565b9150612c448261374b565b604082019050919050565b6000612c5c601c8361336b565b9150612c678261379a565b602082019050919050565b6000612c7f60268361336b565b9150612c8a826137c3565b604082019050919050565b6000612ca2601c8361336b565b9150612cad82613812565b602082019050919050565b6000612cc560248361336b565b9150612cd08261383b565b604082019050919050565b6000612ce860198361336b565b9150612cf38261388a565b602082019050919050565b6000612d0b601c8361336b565b9150612d16826138b3565b602082019050919050565b6000612d2e602c8361336b565b9150612d39826138dc565b604082019050919050565b6000612d5160388361336b565b9150612d5c8261392b565b604082019050919050565b6000612d7460188361336b565b9150612d7f8261397a565b602082019050919050565b6000612d9760118361336b565b9150612da2826139a3565b602082019050919050565b6000612dba602a8361336b565b9150612dc5826139cc565b604082019050919050565b6000612ddd60298361336b565b9150612de882613a1b565b604082019050919050565b6000612e0060208361336b565b9150612e0b82613a6a565b602082019050919050565b6000612e23602c8361336b565b9150612e2e82613a93565b604082019050919050565b6000612e4660208361336b565b9150612e5182613ae2565b602082019050919050565b6000612e6960298361336b565b9150612e7482613b0b565b604082019050919050565b6000612e8c602f8361336b565b9150612e9782613b5a565b604082019050919050565b6000612eaf60218361336b565b9150612eba82613ba9565b604082019050919050565b6000612ed260248361336b565b9150612edd82613bf8565b604082019050919050565b6000612ef560318361336b565b9150612f0082613c47565b604082019050919050565b612f1481613506565b82525050565b6000612f268285612bd8565b9150612f328284612bd8565b91508190509392505050565b6000602082019050612f536000830184612b48565b92915050565b6000608082019050612f6e6000830187612b48565b612f7b6020830186612b48565b612f886040830185612f0b565b8181036060830152612f9a8184612b66565b905095945050505050565b6000602082019050612fba6000830184612b57565b92915050565b60006020820190508181036000830152612fda8184612b9f565b905092915050565b60006020820190508181036000830152612ffb81612c09565b9050919050565b6000602082019050818103600083015261301b81612c2c565b9050919050565b6000602082019050818103600083015261303b81612c4f565b9050919050565b6000602082019050818103600083015261305b81612c72565b9050919050565b6000602082019050818103600083015261307b81612c95565b9050919050565b6000602082019050818103600083015261309b81612cb8565b9050919050565b600060208201905081810360008301526130bb81612cdb565b9050919050565b600060208201905081810360008301526130db81612cfe565b9050919050565b600060208201905081810360008301526130fb81612d21565b9050919050565b6000602082019050818103600083015261311b81612d44565b9050919050565b6000602082019050818103600083015261313b81612d67565b9050919050565b6000602082019050818103600083015261315b81612d8a565b9050919050565b6000602082019050818103600083015261317b81612dad565b9050919050565b6000602082019050818103600083015261319b81612dd0565b9050919050565b600060208201905081810360008301526131bb81612df3565b9050919050565b600060208201905081810360008301526131db81612e16565b9050919050565b600060208201905081810360008301526131fb81612e39565b9050919050565b6000602082019050818103600083015261321b81612e5c565b9050919050565b6000602082019050818103600083015261323b81612e7f565b9050919050565b6000602082019050818103600083015261325b81612ea2565b9050919050565b6000602082019050818103600083015261327b81612ec5565b9050919050565b6000602082019050818103600083015261329b81612ee8565b9050919050565b60006020820190506132b76000830184612f0b565b92915050565b60006132c76132d8565b90506132d38282613584565b919050565b6000604051905090565b600067ffffffffffffffff8211156132fd576132fc6136bc565b5b613306826136eb565b9050602081019050919050565b600067ffffffffffffffff82111561332e5761332d6136bc565b5b613337826136eb565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061339282613506565b915061339d83613506565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156133d2576133d161362f565b5b828201905092915050565b60006133e882613506565b91506133f383613506565b9250826134035761340261365e565b5b828204905092915050565b600061341982613506565b915061342483613506565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561345d5761345c61362f565b5b828202905092915050565b600061347382613506565b915061347e83613506565b9250828210156134915761349061362f565b5b828203905092915050565b60006134a7826134e6565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561353d578082015181840152602081019050613522565b8381111561354c576000848401525b50505050565b6000600282049050600182168061356a57607f821691505b6020821081141561357e5761357d61368d565b5b50919050565b61358d826136eb565b810181811067ffffffffffffffff821117156135ac576135ab6136bc565b5b80604052505050565b60006135c082613506565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156135f3576135f261362f565b5b600182019050919050565b600061360982613506565b915061361483613506565b9250826136245761362361365e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f5468652063616c6c65722063616e206f6e6c792062652061207573657220616e60008201527f64206e6f74206120636f6e747261637400000000000000000000000000000000602082015250565b7f4e6f20746f6b656e73206c65667420746f20626520636c61696d656400000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f752063616e6e6f7420636c61696d206d6f726520746f6b656e7300000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f556e61626c6520746f206d696e742074686973206d616e790000000000000000600082015250565b7f596f752061726520746f6f206561726c79000000000000000000000000000000600082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f75676820457468657220746f20636c61696d2074686520746f60008201527f6b656e7300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b613c9f8161349c565b8114613caa57600080fd5b50565b613cb6816134ae565b8114613cc157600080fd5b50565b613ccd816134ba565b8114613cd857600080fd5b50565b613ce481613506565b8114613cef57600080fd5b5056fea2646970667358221220104135e1a88d11b8ec457b1cdd777cfd6c70116051e7074b700e45cba9e521e964736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001668747470733a2f2f6469636b68656164732e636c756200000000000000000000
-----Decoded View---------------
Arg [0] : _initialBaseURI (string): https://dickheads.club
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000016
Arg [2] : 68747470733a2f2f6469636b68656164732e636c756200000000000000000000
Deployed Bytecode Sourcemap
35879:5142:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20544:355;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21713:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23406:308;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22929:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37606:181;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40462:106;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24465:376;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37263:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37011:155;;;;;;;;;;;;;:::i;:::-;;40300:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24912:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40137:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37419:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39452:227;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21320:326;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36692:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37861:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20963:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35213:94;;;;;;;;;;;;;:::i;:::-;;34562:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21882:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38067:948;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23786:327;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25168:365;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22057:468;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39759:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39951:123;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24184:214;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35462:229;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20544:355;20691:4;20748:25;20733:40;;;:11;:40;;;;:105;;;;20805:33;20790:48;;;:11;:48;;;;20733:105;:158;;;;20855:36;20879:11;20855:23;:36::i;:::-;20733:158;20713:178;;20544:355;;;:::o;21713:100::-;21767:13;21800:5;21793:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21713:100;:::o;23406:308::-;23527:7;23574:16;23582:7;23574;:16::i;:::-;23552:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;23682:15;:24;23698:7;23682:24;;;;;;;;;;;;;;;;;;;;;23675:31;;23406:308;;;:::o;22929:411::-;23010:13;23026:23;23041:7;23026:14;:23::i;:::-;23010:39;;23074:5;23068:11;;:2;:11;;;;23060:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;23168:5;23152:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;23177:37;23194:5;23201:12;:10;:12::i;:::-;23177:16;:37::i;:::-;23152:62;23130:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;23311:21;23320:2;23324:7;23311:8;:21::i;:::-;22929:411;;;:::o;37606:181::-;34793:12;:10;:12::i;:::-;34782:23;;:7;:5;:7::i;:::-;:23;;;34774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37755:24:::1;37729:23;:50;;;;37606:181:::0;:::o;40462:106::-;40516:7;40543:17;;40536:24;;40462:106;:::o;24465:376::-;24674:41;24693:12;:10;:12::i;:::-;24707:7;24674:18;:41::i;:::-;24652:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;24805:28;24815:4;24821:2;24825:7;24805:9;:28::i;:::-;24465:376;;;:::o;37263:97::-;34793:12;:10;:12::i;:::-;34782:23;;:7;:5;:7::i;:::-;:23;;;34774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37348:4:::1;37338:7;:14;;;;;;;;;;;;:::i;:::-;;37263:97:::0;:::o;37011:155::-;34793:12;:10;:12::i;:::-;34782:23;;:7;:5;:7::i;:::-;:23;;;34774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37061:20:::1;37084:21;37061:44;;37124:10;37116:28;;:42;37145:12;37116:42;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;34853:1;37011:155::o:0;40300:98::-;40352:4;40376:14;;;;;;;;;;;40369:21;;40300:98;:::o;24912:185::-;25050:39;25067:4;25073:2;25077:7;25050:39;;;;;;;;;;;;:16;:39::i;:::-;24912:185;;;:::o;40137:93::-;40185:7;40212:10;;40205:17;;40137:93;:::o;37419:119::-;34793:12;:10;:12::i;:::-;34782:23;;:7;:5;:7::i;:::-;:23;;;34774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37515:15:::1;37498:14;;:32;;;;;;;;;;;;;;;;;;37419:119:::0;:::o;39452:227::-;39514:7;39556:16;39564:7;39556;:16::i;:::-;39534:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;39664:7;39657:14;;39452:227;;;:::o;21320:326::-;21437:7;21462:13;21478:7;:16;21486:7;21478:16;;;;;;;;;;;;;;;;;;;;;21462:32;;21544:1;21527:19;;:5;:19;;;;21505:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;21633:5;21626:12;;;21320:326;;;:::o;36692:30::-;;;;:::o;37861:106::-;34793:12;:10;:12::i;:::-;34782:23;;:7;:5;:7::i;:::-;:23;;;34774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37948:11:::1;37935:10;:24;;;;37861:106:::0;:::o;20963:295::-;21080:7;21144:1;21127:19;;:5;:19;;;;21105:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;21234:9;:16;21244:5;21234:16;;;;;;;;;;;;;;;;21227:23;;20963:295;;;:::o;35213:94::-;34793:12;:10;:12::i;:::-;34782:23;;:7;:5;:7::i;:::-;:23;;;34774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35278:21:::1;35296:1;35278:9;:21::i;:::-;35213:94::o:0;34562:87::-;34608:7;34635:6;;;;;;;;;;;34628:13;;34562:87;:::o;21882:104::-;21938:13;21971:7;21964:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21882:104;:::o;38067:948::-;36175:10;36162:23;;:9;:23;;;36140:121;;;;;;;;;;;;:::i;:::-;;;;;;;;;36035:14:::1;;;;;;;;;;;36027:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;38254:6:::2;38241:10;;:19;;;;:::i;:::-;38228:9;:32;;38206:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;38355:23;;38345:6;:33;;38337:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;38489:18;;38479:6;38442:22;:34;38465:10;38442:34;;;;;;;;;;;;;;;;:43;;;;:::i;:::-;:65;;38420:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;38636:6;38631:1;38613:15;;:19;;;;:::i;:::-;38598:11;;;;;;;;;;;:35;;;;;;:::i;:::-;:44;38576:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;38711:25;38753:6;38739:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38711:49;;38811:6;38773:22;:34;38796:10;38773:34;;;;;;;;;;;;;;;;:44;;;;;;;:::i;:::-;;;;;;;;38849:6;38828:17;;:27;;;;;;;:::i;:::-;;;;;;;;38873:9;38868:95;38888:6;38884:1;:10;38868:95;;;38930:21;:19;:21::i;:::-;38916:8;38925:1;38916:11;;;;;;;;;;;;;;;;;;;;;:35;;;::::0;::::2;38896:3;;;;;:::i;:::-;;;;38868:95;;;;38975:32;38986:10;38998:8;38975:10;:32::i;:::-;36082:1;38067:948:::0;:::o;23786:327::-;23933:12;:10;:12::i;:::-;23921:24;;:8;:24;;;;23913:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;24033:8;23988:18;:32;24007:12;:10;:12::i;:::-;23988:32;;;;;;;;;;;;;;;:42;24021:8;23988:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24086:8;24057:48;;24072:12;:10;:12::i;:::-;24057:48;;;24096:8;24057:48;;;;;;:::i;:::-;;;;;;;;23786:327;;:::o;25168:365::-;25357:41;25376:12;:10;:12::i;:::-;25390:7;25357:18;:41::i;:::-;25335:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;25486:39;25500:4;25506:2;25510:7;25519:5;25486:13;:39::i;:::-;25168:365;;;;:::o;22057:468::-;22175:13;22228:16;22236:7;22228;:16::i;:::-;22206:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;22332:21;22356:10;:8;:10::i;:::-;22332:34;;22421:1;22403:7;22397:21;:25;:120;;;;;;;;;;;;;;;;;22466:7;22475:18;:7;:16;:18::i;:::-;22449:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22397:120;22377:140;;;22057:468;;;:::o;39759:95::-;39806:13;39839:7;39832:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39759:95;:::o;39951:123::-;40004:7;40064:1;40046:15;;:19;;;;:::i;:::-;40031:11;;;;;;;;;;;:35;;;;;;:::i;:::-;40024:42;;39951:123;:::o;24184:214::-;24326:4;24355:18;:25;24374:5;24355:25;;;;;;;;;;;;;;;:35;24381:8;24355:35;;;;;;;;;;;;;;;;;;;;;;;;;24348:42;;24184:214;;;;:::o;35462:229::-;34793:12;:10;:12::i;:::-;34782:23;;:7;:5;:7::i;:::-;:23;;;34774:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;35585:1:::1;35565:22;;:8;:22;;;;35543:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;35664:19;35674:8;35664:9;:19::i;:::-;35462:229:::0;:::o;19103:207::-;19233:4;19277:25;19262:40;;;:11;:40;;;;19255:47;;19103:207;;;:::o;27080:127::-;27145:4;27197:1;27169:30;;:7;:16;27177:7;27169:16;;;;;;;;;;;;;;;;;;;;;:30;;;;27162:37;;27080:127;;;:::o;16174:98::-;16227:7;16254:10;16247:17;;16174:98;:::o;31203:174::-;31305:2;31278:15;:24;31294:7;31278:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;31361:7;31357:2;31323:46;;31332:23;31347:7;31332:14;:23::i;:::-;31323:46;;;;;;;;;;;;31203:174;;:::o;27374:452::-;27503:4;27547:16;27555:7;27547;:16::i;:::-;27525:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;27646:13;27662:23;27677:7;27662:14;:23::i;:::-;27646:39;;27715:5;27704:16;;:7;:16;;;:64;;;;27761:7;27737:31;;:20;27749:7;27737:11;:20::i;:::-;:31;;;27704:64;:113;;;;27785:32;27802:5;27809:7;27785:16;:32::i;:::-;27704:113;27696:122;;;27374:452;;;;:::o;30470:615::-;30643:4;30616:31;;:23;30631:7;30616:14;:23::i;:::-;:31;;;30594:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;30749:1;30735:16;;:2;:16;;;;30727:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;30805:39;30826:4;30832:2;30836:7;30805:20;:39::i;:::-;30909:29;30926:1;30930:7;30909:8;:29::i;:::-;30970:1;30951:9;:15;30961:4;30951:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;30999:1;30982:9;:13;30992:2;30982:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31030:2;31011:7;:16;31019:7;31011:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31069:7;31065:2;31050:27;;31059:4;31050:27;;;;;;;;;;;;30470:615;;;:::o;35699:173::-;35755:16;35774:6;;;;;;;;;;;35755:25;;35800:8;35791:6;;:17;;;;;;;;;;;;;;;;;;35855:8;35824:40;;35845:8;35824:40;;;;;;;;;;;;35699:173;;:::o;40695:162::-;40743:7;40763:15;40781;;40763:33;;40807:15;;:17;;;;;;;;;:::i;:::-;;;;;;40842:7;40835:14;;;40695:162;:::o;39023:361::-;39155:1;39141:16;;:2;:16;;;;39133:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39210:9;39205:172;39225:8;:15;39221:1;:19;39205:172;;;39271:20;39279:8;39288:1;39279:11;;;;;;;;;;;;;;;;;;;;;;39271:7;:20::i;:::-;39270:21;39262:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;39339:26;39349:2;39353:8;39362:1;39353:11;;;;;;;;;;;;;;;;;;;;;;39339:9;:26::i;:::-;39242:3;;;;;:::i;:::-;;;;39205:172;;;;39023:361;;:::o;26415:352::-;26572:28;26582:4;26588:2;26592:7;26572:9;:28::i;:::-;26633:48;26656:4;26662:2;26666:7;26675:5;26633:22;:48::i;:::-;26611:148;;;;;;;;;;;;:::i;:::-;;;;;;;;;26415:352;;;;:::o;40910:108::-;40970:13;41003:7;40996:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40910:108;:::o;16614:723::-;16670:13;16900:1;16891:5;:10;16887:53;;;16918:10;;;;;;;;;;;;;;;;;;;;;16887:53;16950:12;16965:5;16950:20;;16981:14;17006:78;17021:1;17013:4;:9;17006:78;;17039:8;;;;;:::i;:::-;;;;17070:2;17062:10;;;;;:::i;:::-;;;17006:78;;;17094:19;17126:6;17116:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17094:39;;17144:154;17160:1;17151:5;:10;17144:154;;17188:1;17178:11;;;;;:::i;:::-;;;17255:2;17247:5;:10;;;;:::i;:::-;17234:2;:24;;;;:::i;:::-;17221:39;;17204:6;17211;17204:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17284:2;17275:11;;;;;:::i;:::-;;;17144:154;;;17322:6;17308:21;;;;;16614:723;;;;:::o;33494:126::-;;;;:::o;28168:110::-;28244:26;28254:2;28258:7;28244:26;;;;;;;;;;;;:9;:26::i;:::-;28168:110;;:::o;31942:980::-;32097:4;32118:15;:2;:13;;;:15::i;:::-;32114:801;;;32187:2;32171:36;;;32230:12;:10;:12::i;:::-;32265:4;32292:7;32322:5;32171:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;32150:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32546:1;32529:6;:13;:18;32525:320;;;32572:108;;;;;;;;;;:::i;:::-;;;;;;;;32525:320;32795:6;32789:13;32780:6;32776:2;32772:15;32765:38;32150:710;32420:41;;;32410:51;;;:6;:51;;;;32403:58;;;;;32114:801;32899:4;32892:11;;31942:980;;;;;;;:::o;28505:321::-;28635:18;28641:2;28645:7;28635:5;:18::i;:::-;28686:54;28717:1;28721:2;28725:7;28734:5;28686:22;:54::i;:::-;28664:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;28505:321;;;:::o;7836:387::-;7896:4;8104:12;8171:7;8159:20;8151:28;;8214:1;8207:4;:8;8200:15;;;7836:387;;;:::o;29162:382::-;29256:1;29242:16;;:2;:16;;;;29234:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;29315:16;29323:7;29315;:16::i;:::-;29314:17;29306:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;29377:45;29406:1;29410:2;29414:7;29377:20;:45::i;:::-;29452:1;29435:9;:13;29445:2;29435:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29483:2;29464:7;:16;29472:7;29464:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29528:7;29524:2;29503:33;;29520:1;29503:33;;;;;;;;;;;;29162:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:256::-;4939:6;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:50;5114:7;5105:6;5094:9;5090:22;5072:50;:::i;:::-;5062:60;;5018:114;4946:193;;;;:::o;5145:260::-;5203:6;5252:2;5240:9;5231:7;5227:23;5223:32;5220:2;;;5268:1;5265;5258:12;5220:2;5311:1;5336:52;5380:7;5371:6;5360:9;5356:22;5336:52;:::i;:::-;5326:62;;5282:116;5210:195;;;;:::o;5411:282::-;5480:6;5529:2;5517:9;5508:7;5504:23;5500:32;5497:2;;;5545:1;5542;5535:12;5497:2;5588:1;5613:63;5668:7;5659:6;5648:9;5644:22;5613:63;:::i;:::-;5603:73;;5559:127;5487:206;;;;:::o;5699:375::-;5768:6;5817:2;5805:9;5796:7;5792:23;5788:32;5785:2;;;5833:1;5830;5823:12;5785:2;5904:1;5893:9;5889:17;5876:31;5934:18;5926:6;5923:30;5920:2;;;5966:1;5963;5956:12;5920:2;5994:63;6049:7;6040:6;6029:9;6025:22;5994:63;:::i;:::-;5984:73;;5847:220;5775:299;;;;:::o;6080:262::-;6139:6;6188:2;6176:9;6167:7;6163:23;6159:32;6156:2;;;6204:1;6201;6194:12;6156:2;6247:1;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6218:117;6146:196;;;;:::o;6348:118::-;6435:24;6453:5;6435:24;:::i;:::-;6430:3;6423:37;6413:53;;:::o;6472:109::-;6553:21;6568:5;6553:21;:::i;:::-;6548:3;6541:34;6531:50;;:::o;6587:360::-;6673:3;6701:38;6733:5;6701:38;:::i;:::-;6755:70;6818:6;6813:3;6755:70;:::i;:::-;6748:77;;6834:52;6879:6;6874:3;6867:4;6860:5;6856:16;6834:52;:::i;:::-;6911:29;6933:6;6911:29;:::i;:::-;6906:3;6902:39;6895:46;;6677:270;;;;;:::o;6953:364::-;7041:3;7069:39;7102:5;7069:39;:::i;:::-;7124:71;7188:6;7183:3;7124:71;:::i;:::-;7117:78;;7204:52;7249:6;7244:3;7237:4;7230:5;7226:16;7204:52;:::i;:::-;7281:29;7303:6;7281:29;:::i;:::-;7276:3;7272:39;7265:46;;7045:272;;;;;:::o;7323:377::-;7429:3;7457:39;7490:5;7457:39;:::i;:::-;7512:89;7594:6;7589:3;7512:89;:::i;:::-;7505:96;;7610:52;7655:6;7650:3;7643:4;7636:5;7632:16;7610:52;:::i;:::-;7687:6;7682:3;7678:16;7671:23;;7433:267;;;;;:::o;7706:366::-;7848:3;7869:67;7933:2;7928:3;7869:67;:::i;:::-;7862:74;;7945:93;8034:3;7945:93;:::i;:::-;8063:2;8058:3;8054:12;8047:19;;7852:220;;;:::o;8078:366::-;8220:3;8241:67;8305:2;8300:3;8241:67;:::i;:::-;8234:74;;8317:93;8406:3;8317:93;:::i;:::-;8435:2;8430:3;8426:12;8419:19;;8224:220;;;:::o;8450:366::-;8592:3;8613:67;8677:2;8672:3;8613:67;:::i;:::-;8606:74;;8689:93;8778:3;8689:93;:::i;:::-;8807:2;8802:3;8798:12;8791:19;;8596:220;;;:::o;8822:366::-;8964:3;8985:67;9049:2;9044:3;8985:67;:::i;:::-;8978:74;;9061:93;9150:3;9061:93;:::i;:::-;9179:2;9174:3;9170:12;9163:19;;8968:220;;;:::o;9194:366::-;9336:3;9357:67;9421:2;9416:3;9357:67;:::i;:::-;9350:74;;9433:93;9522:3;9433:93;:::i;:::-;9551:2;9546:3;9542:12;9535:19;;9340:220;;;:::o;9566:366::-;9708:3;9729:67;9793:2;9788:3;9729:67;:::i;:::-;9722:74;;9805:93;9894:3;9805:93;:::i;:::-;9923:2;9918:3;9914:12;9907:19;;9712:220;;;:::o;9938:366::-;10080:3;10101:67;10165:2;10160:3;10101:67;:::i;:::-;10094:74;;10177:93;10266:3;10177:93;:::i;:::-;10295:2;10290:3;10286:12;10279:19;;10084:220;;;:::o;10310:366::-;10452:3;10473:67;10537:2;10532:3;10473:67;:::i;:::-;10466:74;;10549:93;10638:3;10549:93;:::i;:::-;10667:2;10662:3;10658:12;10651:19;;10456:220;;;:::o;10682:366::-;10824:3;10845:67;10909:2;10904:3;10845:67;:::i;:::-;10838:74;;10921:93;11010:3;10921:93;:::i;:::-;11039:2;11034:3;11030:12;11023:19;;10828:220;;;:::o;11054:366::-;11196:3;11217:67;11281:2;11276:3;11217:67;:::i;:::-;11210:74;;11293:93;11382:3;11293:93;:::i;:::-;11411:2;11406:3;11402:12;11395:19;;11200:220;;;:::o;11426:366::-;11568:3;11589:67;11653:2;11648:3;11589:67;:::i;:::-;11582:74;;11665:93;11754:3;11665:93;:::i;:::-;11783:2;11778:3;11774:12;11767:19;;11572:220;;;:::o;11798:366::-;11940:3;11961:67;12025:2;12020:3;11961:67;:::i;:::-;11954:74;;12037:93;12126:3;12037:93;:::i;:::-;12155:2;12150:3;12146:12;12139:19;;11944:220;;;:::o;12170:366::-;12312:3;12333:67;12397:2;12392:3;12333:67;:::i;:::-;12326:74;;12409:93;12498:3;12409:93;:::i;:::-;12527:2;12522:3;12518:12;12511:19;;12316:220;;;:::o;12542:366::-;12684:3;12705:67;12769:2;12764:3;12705:67;:::i;:::-;12698:74;;12781:93;12870:3;12781:93;:::i;:::-;12899:2;12894:3;12890:12;12883:19;;12688:220;;;:::o;12914:366::-;13056:3;13077:67;13141:2;13136:3;13077:67;:::i;:::-;13070:74;;13153:93;13242:3;13153:93;:::i;:::-;13271:2;13266:3;13262:12;13255:19;;13060:220;;;:::o;13286:366::-;13428:3;13449:67;13513:2;13508:3;13449:67;:::i;:::-;13442:74;;13525:93;13614:3;13525:93;:::i;:::-;13643:2;13638:3;13634:12;13627:19;;13432:220;;;:::o;13658:366::-;13800:3;13821:67;13885:2;13880:3;13821:67;:::i;:::-;13814:74;;13897:93;13986:3;13897:93;:::i;:::-;14015:2;14010:3;14006:12;13999:19;;13804:220;;;:::o;14030:366::-;14172:3;14193:67;14257:2;14252:3;14193:67;:::i;:::-;14186:74;;14269:93;14358:3;14269:93;:::i;:::-;14387:2;14382:3;14378:12;14371:19;;14176:220;;;:::o;14402:366::-;14544:3;14565:67;14629:2;14624:3;14565:67;:::i;:::-;14558:74;;14641:93;14730:3;14641:93;:::i;:::-;14759:2;14754:3;14750:12;14743:19;;14548:220;;;:::o;14774:366::-;14916:3;14937:67;15001:2;14996:3;14937:67;:::i;:::-;14930:74;;15013:93;15102:3;15013:93;:::i;:::-;15131:2;15126:3;15122:12;15115:19;;14920:220;;;:::o;15146:366::-;15288:3;15309:67;15373:2;15368:3;15309:67;:::i;:::-;15302:74;;15385:93;15474:3;15385:93;:::i;:::-;15503:2;15498:3;15494:12;15487:19;;15292:220;;;:::o;15518:366::-;15660:3;15681:67;15745:2;15740:3;15681:67;:::i;:::-;15674:74;;15757:93;15846:3;15757:93;:::i;:::-;15875:2;15870:3;15866:12;15859:19;;15664:220;;;:::o;15890:118::-;15977:24;15995:5;15977:24;:::i;:::-;15972:3;15965:37;15955:53;;:::o;16014:435::-;16194:3;16216:95;16307:3;16298:6;16216:95;:::i;:::-;16209:102;;16328:95;16419:3;16410:6;16328:95;:::i;:::-;16321:102;;16440:3;16433:10;;16198:251;;;;;:::o;16455:222::-;16548:4;16586:2;16575:9;16571:18;16563:26;;16599:71;16667:1;16656:9;16652:17;16643:6;16599:71;:::i;:::-;16553:124;;;;:::o;16683:640::-;16878:4;16916:3;16905:9;16901:19;16893:27;;16930:71;16998:1;16987:9;16983:17;16974:6;16930:71;:::i;:::-;17011:72;17079:2;17068:9;17064:18;17055:6;17011:72;:::i;:::-;17093;17161:2;17150:9;17146:18;17137:6;17093:72;:::i;:::-;17212:9;17206:4;17202:20;17197:2;17186:9;17182:18;17175:48;17240:76;17311:4;17302:6;17240:76;:::i;:::-;17232:84;;16883:440;;;;;;;:::o;17329:210::-;17416:4;17454:2;17443:9;17439:18;17431:26;;17467:65;17529:1;17518:9;17514:17;17505:6;17467:65;:::i;:::-;17421:118;;;;:::o;17545:313::-;17658:4;17696:2;17685:9;17681:18;17673:26;;17745:9;17739:4;17735:20;17731:1;17720:9;17716:17;17709:47;17773:78;17846:4;17837:6;17773:78;:::i;:::-;17765:86;;17663:195;;;;:::o;17864:419::-;18030:4;18068:2;18057:9;18053:18;18045:26;;18117:9;18111:4;18107:20;18103:1;18092:9;18088:17;18081:47;18145:131;18271:4;18145:131;:::i;:::-;18137:139;;18035:248;;;:::o;18289:419::-;18455:4;18493:2;18482:9;18478:18;18470:26;;18542:9;18536:4;18532:20;18528:1;18517:9;18513:17;18506:47;18570:131;18696:4;18570:131;:::i;:::-;18562:139;;18460:248;;;:::o;18714:419::-;18880:4;18918:2;18907:9;18903:18;18895:26;;18967:9;18961:4;18957:20;18953:1;18942:9;18938:17;18931:47;18995:131;19121:4;18995:131;:::i;:::-;18987:139;;18885:248;;;:::o;19139:419::-;19305:4;19343:2;19332:9;19328:18;19320:26;;19392:9;19386:4;19382:20;19378:1;19367:9;19363:17;19356:47;19420:131;19546:4;19420:131;:::i;:::-;19412:139;;19310:248;;;:::o;19564:419::-;19730:4;19768:2;19757:9;19753:18;19745:26;;19817:9;19811:4;19807:20;19803:1;19792:9;19788:17;19781:47;19845:131;19971:4;19845:131;:::i;:::-;19837:139;;19735:248;;;:::o;19989:419::-;20155:4;20193:2;20182:9;20178:18;20170:26;;20242:9;20236:4;20232:20;20228:1;20217:9;20213:17;20206:47;20270:131;20396:4;20270:131;:::i;:::-;20262:139;;20160:248;;;:::o;20414:419::-;20580:4;20618:2;20607:9;20603:18;20595:26;;20667:9;20661:4;20657:20;20653:1;20642:9;20638:17;20631:47;20695:131;20821:4;20695:131;:::i;:::-;20687:139;;20585:248;;;:::o;20839:419::-;21005:4;21043:2;21032:9;21028:18;21020:26;;21092:9;21086:4;21082:20;21078:1;21067:9;21063:17;21056:47;21120:131;21246:4;21120:131;:::i;:::-;21112:139;;21010:248;;;:::o;21264:419::-;21430:4;21468:2;21457:9;21453:18;21445:26;;21517:9;21511:4;21507:20;21503:1;21492:9;21488:17;21481:47;21545:131;21671:4;21545:131;:::i;:::-;21537:139;;21435:248;;;:::o;21689:419::-;21855:4;21893:2;21882:9;21878:18;21870:26;;21942:9;21936:4;21932:20;21928:1;21917:9;21913:17;21906:47;21970:131;22096:4;21970:131;:::i;:::-;21962:139;;21860:248;;;:::o;22114:419::-;22280:4;22318:2;22307:9;22303:18;22295:26;;22367:9;22361:4;22357:20;22353:1;22342:9;22338:17;22331:47;22395:131;22521:4;22395:131;:::i;:::-;22387:139;;22285:248;;;:::o;22539:419::-;22705:4;22743:2;22732:9;22728:18;22720:26;;22792:9;22786:4;22782:20;22778:1;22767:9;22763:17;22756:47;22820:131;22946:4;22820:131;:::i;:::-;22812:139;;22710:248;;;:::o;22964:419::-;23130:4;23168:2;23157:9;23153:18;23145:26;;23217:9;23211:4;23207:20;23203:1;23192:9;23188:17;23181:47;23245:131;23371:4;23245:131;:::i;:::-;23237:139;;23135:248;;;:::o;23389:419::-;23555:4;23593:2;23582:9;23578:18;23570:26;;23642:9;23636:4;23632:20;23628:1;23617:9;23613:17;23606:47;23670:131;23796:4;23670:131;:::i;:::-;23662:139;;23560:248;;;:::o;23814:419::-;23980:4;24018:2;24007:9;24003:18;23995:26;;24067:9;24061:4;24057:20;24053:1;24042:9;24038:17;24031:47;24095:131;24221:4;24095:131;:::i;:::-;24087:139;;23985:248;;;:::o;24239:419::-;24405:4;24443:2;24432:9;24428:18;24420:26;;24492:9;24486:4;24482:20;24478:1;24467:9;24463:17;24456:47;24520:131;24646:4;24520:131;:::i;:::-;24512:139;;24410:248;;;:::o;24664:419::-;24830:4;24868:2;24857:9;24853:18;24845:26;;24917:9;24911:4;24907:20;24903:1;24892:9;24888:17;24881:47;24945:131;25071:4;24945:131;:::i;:::-;24937:139;;24835:248;;;:::o;25089:419::-;25255:4;25293:2;25282:9;25278:18;25270:26;;25342:9;25336:4;25332:20;25328:1;25317:9;25313:17;25306:47;25370:131;25496:4;25370:131;:::i;:::-;25362:139;;25260:248;;;:::o;25514:419::-;25680:4;25718:2;25707:9;25703:18;25695:26;;25767:9;25761:4;25757:20;25753:1;25742:9;25738:17;25731:47;25795:131;25921:4;25795:131;:::i;:::-;25787:139;;25685:248;;;:::o;25939:419::-;26105:4;26143:2;26132:9;26128:18;26120:26;;26192:9;26186:4;26182:20;26178:1;26167:9;26163:17;26156:47;26220:131;26346:4;26220:131;:::i;:::-;26212:139;;26110:248;;;:::o;26364:419::-;26530:4;26568:2;26557:9;26553:18;26545:26;;26617:9;26611:4;26607:20;26603:1;26592:9;26588:17;26581:47;26645:131;26771:4;26645:131;:::i;:::-;26637:139;;26535:248;;;:::o;26789:419::-;26955:4;26993:2;26982:9;26978:18;26970:26;;27042:9;27036:4;27032:20;27028:1;27017:9;27013:17;27006:47;27070:131;27196:4;27070:131;:::i;:::-;27062:139;;26960:248;;;:::o;27214:222::-;27307:4;27345:2;27334:9;27330:18;27322:26;;27358:71;27426:1;27415:9;27411:17;27402:6;27358:71;:::i;:::-;27312:124;;;;:::o;27442:129::-;27476:6;27503:20;;:::i;:::-;27493:30;;27532:33;27560:4;27552:6;27532:33;:::i;:::-;27483:88;;;:::o;27577:75::-;27610:6;27643:2;27637:9;27627:19;;27617:35;:::o;27658:307::-;27719:4;27809:18;27801:6;27798:30;27795:2;;;27831:18;;:::i;:::-;27795:2;27869:29;27891:6;27869:29;:::i;:::-;27861:37;;27953:4;27947;27943:15;27935:23;;27724:241;;;:::o;27971:308::-;28033:4;28123:18;28115:6;28112:30;28109:2;;;28145:18;;:::i;:::-;28109:2;28183:29;28205:6;28183:29;:::i;:::-;28175:37;;28267:4;28261;28257:15;28249:23;;28038:241;;;:::o;28285:98::-;28336:6;28370:5;28364:12;28354:22;;28343:40;;;:::o;28389:99::-;28441:6;28475:5;28469:12;28459:22;;28448:40;;;:::o;28494:168::-;28577:11;28611:6;28606:3;28599:19;28651:4;28646:3;28642:14;28627:29;;28589:73;;;;:::o;28668:169::-;28752:11;28786:6;28781:3;28774:19;28826:4;28821:3;28817:14;28802:29;;28764:73;;;;:::o;28843:148::-;28945:11;28982:3;28967:18;;28957:34;;;;:::o;28997:305::-;29037:3;29056:20;29074:1;29056:20;:::i;:::-;29051:25;;29090:20;29108:1;29090:20;:::i;:::-;29085:25;;29244:1;29176:66;29172:74;29169:1;29166:81;29163:2;;;29250:18;;:::i;:::-;29163:2;29294:1;29291;29287:9;29280:16;;29041:261;;;;:::o;29308:185::-;29348:1;29365:20;29383:1;29365:20;:::i;:::-;29360:25;;29399:20;29417:1;29399:20;:::i;:::-;29394:25;;29438:1;29428:2;;29443:18;;:::i;:::-;29428:2;29485:1;29482;29478:9;29473:14;;29350:143;;;;:::o;29499:348::-;29539:7;29562:20;29580:1;29562:20;:::i;:::-;29557:25;;29596:20;29614:1;29596:20;:::i;:::-;29591:25;;29784:1;29716:66;29712:74;29709:1;29706:81;29701:1;29694:9;29687:17;29683:105;29680:2;;;29791:18;;:::i;:::-;29680:2;29839:1;29836;29832:9;29821:20;;29547:300;;;;:::o;29853:191::-;29893:4;29913:20;29931:1;29913:20;:::i;:::-;29908:25;;29947:20;29965:1;29947:20;:::i;:::-;29942:25;;29986:1;29983;29980:8;29977:2;;;29991:18;;:::i;:::-;29977:2;30036:1;30033;30029:9;30021:17;;29898:146;;;;:::o;30050:96::-;30087:7;30116:24;30134:5;30116:24;:::i;:::-;30105:35;;30095:51;;;:::o;30152:90::-;30186:7;30229:5;30222:13;30215:21;30204:32;;30194:48;;;:::o;30248:149::-;30284:7;30324:66;30317:5;30313:78;30302:89;;30292:105;;;:::o;30403:126::-;30440:7;30480:42;30473:5;30469:54;30458:65;;30448:81;;;:::o;30535:77::-;30572:7;30601:5;30590:16;;30580:32;;;:::o;30618:154::-;30702:6;30697:3;30692;30679:30;30764:1;30755:6;30750:3;30746:16;30739:27;30669:103;;;:::o;30778:307::-;30846:1;30856:113;30870:6;30867:1;30864:13;30856:113;;;30955:1;30950:3;30946:11;30940:18;30936:1;30931:3;30927:11;30920:39;30892:2;30889:1;30885:10;30880:15;;30856:113;;;30987:6;30984:1;30981:13;30978:2;;;31067:1;31058:6;31053:3;31049:16;31042:27;30978:2;30827:258;;;;:::o;31091:320::-;31135:6;31172:1;31166:4;31162:12;31152:22;;31219:1;31213:4;31209:12;31240:18;31230:2;;31296:4;31288:6;31284:17;31274:27;;31230:2;31358;31350:6;31347:14;31327:18;31324:38;31321:2;;;31377:18;;:::i;:::-;31321:2;31142:269;;;;:::o;31417:281::-;31500:27;31522:4;31500:27;:::i;:::-;31492:6;31488:40;31630:6;31618:10;31615:22;31594:18;31582:10;31579:34;31576:62;31573:2;;;31641:18;;:::i;:::-;31573:2;31681:10;31677:2;31670:22;31460:238;;;:::o;31704:233::-;31743:3;31766:24;31784:5;31766:24;:::i;:::-;31757:33;;31812:66;31805:5;31802:77;31799:2;;;31882:18;;:::i;:::-;31799:2;31929:1;31922:5;31918:13;31911:20;;31747:190;;;:::o;31943:176::-;31975:1;31992:20;32010:1;31992:20;:::i;:::-;31987:25;;32026:20;32044:1;32026:20;:::i;:::-;32021:25;;32065:1;32055:2;;32070:18;;:::i;:::-;32055:2;32111:1;32108;32104:9;32099:14;;31977:142;;;;:::o;32125:180::-;32173:77;32170:1;32163:88;32270:4;32267:1;32260:15;32294:4;32291:1;32284:15;32311:180;32359:77;32356:1;32349:88;32456:4;32453:1;32446:15;32480:4;32477:1;32470:15;32497:180;32545:77;32542:1;32535:88;32642:4;32639:1;32632:15;32666:4;32663:1;32656:15;32683:180;32731:77;32728:1;32721:88;32828:4;32825:1;32818:15;32852:4;32849:1;32842:15;32869:102;32910:6;32961:2;32957:7;32952:2;32945:5;32941:14;32937:28;32927:38;;32917:54;;;:::o;32977:237::-;33117:34;33113:1;33105:6;33101:14;33094:58;33186:20;33181:2;33173:6;33169:15;33162:45;33083:131;:::o;33220:235::-;33360:34;33356:1;33348:6;33344:14;33337:58;33429:18;33424:2;33416:6;33412:15;33405:43;33326:129;:::o;33461:178::-;33601:30;33597:1;33589:6;33585:14;33578:54;33567:72;:::o;33645:225::-;33785:34;33781:1;33773:6;33769:14;33762:58;33854:8;33849:2;33841:6;33837:15;33830:33;33751:119;:::o;33876:178::-;34016:30;34012:1;34004:6;34000:14;33993:54;33982:72;:::o;34060:223::-;34200:34;34196:1;34188:6;34184:14;34177:58;34269:6;34264:2;34256:6;34252:15;34245:31;34166:117;:::o;34289:175::-;34429:27;34425:1;34417:6;34413:14;34406:51;34395:69;:::o;34470:178::-;34610:30;34606:1;34598:6;34594:14;34587:54;34576:72;:::o;34654:231::-;34794:34;34790:1;34782:6;34778:14;34771:58;34863:14;34858:2;34850:6;34846:15;34839:39;34760:125;:::o;34891:243::-;35031:34;35027:1;35019:6;35015:14;35008:58;35100:26;35095:2;35087:6;35083:15;35076:51;34997:137;:::o;35140:174::-;35280:26;35276:1;35268:6;35264:14;35257:50;35246:68;:::o;35320:167::-;35460:19;35456:1;35448:6;35444:14;35437:43;35426:61;:::o;35493:229::-;35633:34;35629:1;35621:6;35617:14;35610:58;35702:12;35697:2;35689:6;35685:15;35678:37;35599:123;:::o;35728:228::-;35868:34;35864:1;35856:6;35852:14;35845:58;35937:11;35932:2;35924:6;35920:15;35913:36;35834:122;:::o;35962:182::-;36102:34;36098:1;36090:6;36086:14;36079:58;36068:76;:::o;36150:231::-;36290:34;36286:1;36278:6;36274:14;36267:58;36359:14;36354:2;36346:6;36342:15;36335:39;36256:125;:::o;36387:182::-;36527:34;36523:1;36515:6;36511:14;36504:58;36493:76;:::o;36575:228::-;36715:34;36711:1;36703:6;36699:14;36692:58;36784:11;36779:2;36771:6;36767:15;36760:36;36681:122;:::o;36809:234::-;36949:34;36945:1;36937:6;36933:14;36926:58;37018:17;37013:2;37005:6;37001:15;36994:42;36915:128;:::o;37049:220::-;37189:34;37185:1;37177:6;37173:14;37166:58;37258:3;37253:2;37245:6;37241:15;37234:28;37155:114;:::o;37275:223::-;37415:34;37411:1;37403:6;37399:14;37392:58;37484:6;37479:2;37471:6;37467:15;37460:31;37381:117;:::o;37504:236::-;37644:34;37640:1;37632:6;37628:14;37621:58;37713:19;37708:2;37700:6;37696:15;37689:44;37610:130;:::o;37746:122::-;37819:24;37837:5;37819:24;:::i;:::-;37812:5;37809:35;37799:2;;37858:1;37855;37848:12;37799:2;37789:79;:::o;37874:116::-;37944:21;37959:5;37944:21;:::i;:::-;37937:5;37934:32;37924:2;;37980:1;37977;37970:12;37924:2;37914:76;:::o;37996:120::-;38068:23;38085:5;38068:23;:::i;:::-;38061:5;38058:34;38048:2;;38106:1;38103;38096:12;38048:2;38038:78;:::o;38122:122::-;38195:24;38213:5;38195:24;:::i;:::-;38188:5;38185:35;38175:2;;38234:1;38231;38224:12;38175:2;38165:79;:::o
Swarm Source
ipfs://104135e1a88d11b8ec457b1cdd777cfd6c70116051e7074b700e45cba9e521e9
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.