ERC-721
Overview
Max Total Supply
10,000 EB
Holders
2,428
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 EBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
EtherMonkeys
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-11 */ /** *Submitted for verification at Etherscan.io on 2021-10-05 */ // Sources flattened with hardhat v2.5.0 https://hardhat.org // File contracts/utils/introspection/IERC165.sol // 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); } // File contracts/token/ERC721/IERC721.sol pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; } // File contracts/token/ERC721/IERC721Receiver.sol pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); } // File contracts/token/ERC721/extensions/IERC721Metadata.sol pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File contracts/utils/Address.sol pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File contracts/utils/Context.sol pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "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] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File contracts/utils/introspection/ERC165.sol pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File contracts/token/ERC721/ERC721.sol pragma solidity ^0.8.0; /** * @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}. 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly 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` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } } // File contracts/token/ERC721/extensions/ERC721URIStorage.sol pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = _baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } return super.tokenURI(tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), 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 { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } pragma solidity ^0.8.0; contract EtherMonkeys is ERC721URIStorage, Ownable{ event MintMonkeys (address indexed minter, uint256 startWith, uint256 times); uint256 public totalMonkeys; uint256 public totalCount = 10000; //bruhTotal uint256 public maxBatch = 25; // bruhBatch uint256 public price = 50000000000000000; // 0.05 eth string public baseURI; bool public started; uint addressRegistryCount; constructor(string memory name_, string memory symbol_, string memory baseURI_) ERC721(name_, symbol_) { baseURI = baseURI_; } modifier mintEnabled() { require(started, "not started"); _; } function totalSupply() public view virtual returns (uint256) { return totalMonkeys; } function _baseURI() internal view virtual override returns (string memory){ return baseURI; } function setBaseURI(string memory _newURI) public onlyOwner { baseURI = _newURI; } function changePrice(uint256 _newPrice) public onlyOwner { price = _newPrice; } function setTokenURI(uint256 _tokenId, string memory _tokenURI) public onlyOwner { _setTokenURI(_tokenId, _tokenURI); } function setNormalStart(bool _start) public onlyOwner { started = _start; } function mintMonkey(uint256 _times) payable public mintEnabled { require(_times >0 && _times <= maxBatch, "mint wrong number"); require(totalMonkeys + _times <= totalCount, "too much"); require(msg.value == _times * price, "value error"); payable(owner()).transfer(msg.value); emit MintMonkeys(_msgSender(), totalMonkeys+1, _times); for(uint256 i=0; i< _times; i++){ _mint(_msgSender(), 1 + totalMonkeys++); } } address public stacker = address(this); function setStackerAddress(address _stackerAddress) public onlyOwner { stacker = _stackerAddress; } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual override returns (bool) { bool isOwner = super._isApprovedOrOwner(spender, tokenId); return (spender == stacker || isOwner); } function adminMint(uint256 _times) payable public onlyOwner { require(_times >0 && _times <= maxBatch, "mint wrong number"); require(totalMonkeys + _times <= totalCount, "too much"); require(msg.value == _times * price, "value error"); payable(owner()).transfer(msg.value); emit MintMonkeys(_msgSender(), totalMonkeys+1, _times); for(uint256 i=0; i< _times; i++){ _mint(_msgSender(), 1 + totalMonkeys++); } } function adminMintGiveaways(address _addr) public onlyOwner { require(totalMonkeys + 1 <= totalCount, "Mint amount will exceed total collection amount."); emit MintMonkeys(_addr, totalMonkeys+1, 1); _mint(_addr, 1 + totalMonkeys++); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","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":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"startWith","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"times","type":"uint256"}],"name":"MintMonkeys","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":"uint256","name":"_times","type":"uint256"}],"name":"adminMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"adminMintGiveaways","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"changePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_times","type":"uint256"}],"name":"mintMonkey","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_newURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_start","type":"bool"}],"name":"setNormalStart","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stackerAddress","type":"address"}],"name":"setStackerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stacker","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"started","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMonkeys","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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"}]
Contract Creation Code
60806040526127106009556019600a5566b1a2bc2ec50000600b5530600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200006857600080fd5b50604051620045553803806200455583398181016040528101906200008e9190620002c1565b82828160009080519060200190620000a89291906200019f565b508060019080519060200190620000c19291906200019f565b5050506000620000d66200019760201b60201c565b905080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35080600c90805190602001906200018d9291906200019f565b5050505062000493565b600033905090565b828054620001ad90620003ff565b90600052602060002090601f016020900481019282620001d157600085556200021d565b82601f10620001ec57805160ff19168380011785556200021d565b828001600101855582156200021d579182015b828111156200021c578251825591602001919060010190620001ff565b5b5090506200022c919062000230565b5090565b5b808211156200024b57600081600090555060010162000231565b5090565b600062000266620002608462000396565b62000362565b9050828152602081018484840111156200027f57600080fd5b6200028c848285620003c9565b509392505050565b600082601f830112620002a657600080fd5b8151620002b88482602086016200024f565b91505092915050565b600080600060608486031215620002d757600080fd5b600084015167ffffffffffffffff811115620002f257600080fd5b620003008682870162000294565b935050602084015167ffffffffffffffff8111156200031e57600080fd5b6200032c8682870162000294565b925050604084015167ffffffffffffffff8111156200034a57600080fd5b620003588682870162000294565b9150509250925092565b6000604051905081810181811067ffffffffffffffff821117156200038c576200038b62000464565b5b8060405250919050565b600067ffffffffffffffff821115620003b457620003b362000464565b5b601f19601f8301169050602081019050919050565b60005b83811015620003e9578082015181840152602081019050620003cc565b83811115620003f9576000848401525b50505050565b600060028204905060018216806200041857607f821691505b602082108114156200042f576200042e62000435565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6140b280620004a36000396000f3fe6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461069c578063e6fd6bd5146106d9578063e985e9c514610704578063f2fde38b14610741576101e3565b8063a22cb46514610605578063a2b40d191461062e578063b88d4fde14610657578063c1f2612314610680576101e3565b80638dee43be116100d15780638dee43be1461055b578063917bb57f1461058657806395d89b41146105af578063a035b1fe146105da576101e3565b80636c0360eb146104b157806370a08231146104dc578063715018a6146105195780638da5cb5b14610530576101e3565b806334eafb111161017a57806355aabf5b1161014957806355aabf5b1461040457806355f804b3146104205780636352211e1461044957806367765b8714610486576101e3565b806334eafb111461035e578063394565a0146103895780633c49a8a9146103b257806342842e0e146103db576101e3565b8063162094c4116101b6578063162094c4146102b657806318160ddd146102df5780631f2698ab1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612df8565b61076a565b60405161021c919061386c565b60405180910390f35b34801561023157600080fd5b5061023a61084c565b6040516102479190613887565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612e8b565b6108de565b6040516102849190613805565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612d93565b610963565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612eb4565b610a7b565b005b3480156102eb57600080fd5b506102f4610b05565b6040516103019190613b89565b60405180910390f35b34801561031657600080fd5b5061031f610b0f565b60405161032c919061386c565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612c8d565b610b22565b005b34801561036a57600080fd5b50610373610b82565b6040516103809190613b89565b60405180910390f35b34801561039557600080fd5b506103b060048036038101906103ab9190612c28565b610b88565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612c28565b610c48565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612c8d565b610da5565b005b61041e60048036038101906104199190612e8b565b610dc5565b005b34801561042c57600080fd5b5061044760048036038101906104429190612e4a565b61100e565b005b34801561045557600080fd5b50610470600480360381019061046b9190612e8b565b6110a4565b60405161047d9190613805565b60405180910390f35b34801561049257600080fd5b5061049b611156565b6040516104a89190613b89565b60405180910390f35b3480156104bd57600080fd5b506104c661115c565b6040516104d39190613887565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe9190612c28565b6111ea565b6040516105109190613b89565b60405180910390f35b34801561052557600080fd5b5061052e6112a2565b005b34801561053c57600080fd5b506105456113df565b6040516105529190613805565b60405180910390f35b34801561056757600080fd5b50610570611409565b60405161057d9190613b89565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190612dcf565b61140f565b005b3480156105bb57600080fd5b506105c46114a8565b6040516105d19190613887565b60405180910390f35b3480156105e657600080fd5b506105ef61153a565b6040516105fc9190613b89565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190612d57565b611540565b005b34801561063a57600080fd5b5061065560048036038101906106509190612e8b565b6116c1565b005b34801561066357600080fd5b5061067e60048036038101906106799190612cdc565b611747565b005b61069a60048036038101906106959190612e8b565b6117a9565b005b3480156106a857600080fd5b506106c360048036038101906106be9190612e8b565b611a1f565b6040516106d09190613887565b60405180910390f35b3480156106e557600080fd5b506106ee611b71565b6040516106fb9190613805565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190612c51565b611b97565b604051610738919061386c565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190612c28565b611c2b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610845575061084482611dd7565b5b9050919050565b60606000805461085b90613ea7565b80601f016020809104026020016040519081016040528092919081815260200182805461088790613ea7565b80156108d45780601f106108a9576101008083540402835291602001916108d4565b820191906000526020600020905b8154815290600101906020018083116108b757829003601f168201915b5050505050905090565b60006108e982611e41565b610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f90613a69565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096e826110a4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690613ae9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fe611ead565b73ffffffffffffffffffffffffffffffffffffffff161480610a2d5750610a2c81610a27611ead565b611b97565b5b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a63906139a9565b60405180910390fd5b610a768383611eb5565b505050565b610a83611ead565b73ffffffffffffffffffffffffffffffffffffffff16610aa16113df565b73ffffffffffffffffffffffffffffffffffffffff1614610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90613a89565b60405180910390fd5b610b018282611f6e565b5050565b6000600854905090565b600d60009054906101000a900460ff1681565b610b33610b2d611ead565b82611fe2565b610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990613b09565b60405180910390fd5b610b7d838383612053565b505050565b60095481565b610b90611ead565b73ffffffffffffffffffffffffffffffffffffffff16610bae6113df565b73ffffffffffffffffffffffffffffffffffffffff1614610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90613a89565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c50611ead565b73ffffffffffffffffffffffffffffffffffffffff16610c6e6113df565b73ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613a89565b60405180910390fd5b6009546001600854610cd69190613cca565b1115610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613b29565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff167f48cf13e6cf5a1f35533e8646c7359f682b77b35907ce6d9e0ff3619f8eee0dfb6001600854610d5e9190613cca565b6001604051610d6e929190613ba4565b60405180910390a2610da28160086000815480929190610d8d90613ed9565b919050556001610d9d9190613cca565b6122af565b50565b610dc083838360405180602001604052806000815250611747565b505050565b600d60009054906101000a900460ff16610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90613b49565b60405180910390fd5b600081118015610e265750600a548111155b610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c90613929565b60405180910390fd5b60095481600854610e769190613cca565b1115610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae906138a9565b60405180910390fd5b600b5481610ec59190613d51565b3414610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90613b69565b60405180910390fd5b610f0e6113df565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610f53573d6000803e3d6000fd5b50610f5c611ead565b73ffffffffffffffffffffffffffffffffffffffff167f48cf13e6cf5a1f35533e8646c7359f682b77b35907ce6d9e0ff3619f8eee0dfb6001600854610fa29190613cca565b83604051610fb1929190613bcd565b60405180910390a260005b8181101561100a57610ff7610fcf611ead565b60086000815480929190610fe290613ed9565b919050556001610ff29190613cca565b6122af565b808061100290613ed9565b915050610fbc565b5050565b611016611ead565b73ffffffffffffffffffffffffffffffffffffffff166110346113df565b73ffffffffffffffffffffffffffffffffffffffff161461108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190613a89565b60405180910390fd5b80600c90805190602001906110a0929190612a4c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561114d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611144906139e9565b60405180910390fd5b80915050919050565b600a5481565b600c805461116990613ea7565b80601f016020809104026020016040519081016040528092919081815260200182805461119590613ea7565b80156111e25780601f106111b7576101008083540402835291602001916111e2565b820191906000526020600020905b8154815290600101906020018083116111c557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611252906139c9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112aa611ead565b73ffffffffffffffffffffffffffffffffffffffff166112c86113df565b73ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590613a89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b611417611ead565b73ffffffffffffffffffffffffffffffffffffffff166114356113df565b73ffffffffffffffffffffffffffffffffffffffff161461148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290613a89565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6060600180546114b790613ea7565b80601f01602080910402602001604051908101604052809291908181526020018280546114e390613ea7565b80156115305780601f1061150557610100808354040283529160200191611530565b820191906000526020600020905b81548152906001019060200180831161151357829003601f168201915b5050505050905090565b600b5481565b611548611ead565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90613969565b60405180910390fd5b80600560006115c3611ead565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611670611ead565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b5919061386c565b60405180910390a35050565b6116c9611ead565b73ffffffffffffffffffffffffffffffffffffffff166116e76113df565b73ffffffffffffffffffffffffffffffffffffffff161461173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490613a89565b60405180910390fd5b80600b8190555050565b611758611752611ead565b83611fe2565b611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e90613b09565b60405180910390fd5b6117a38484848461247d565b50505050565b6117b1611ead565b73ffffffffffffffffffffffffffffffffffffffff166117cf6113df565b73ffffffffffffffffffffffffffffffffffffffff1614611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c90613a89565b60405180910390fd5b6000811180156118375750600a548111155b611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90613929565b60405180910390fd5b600954816008546118879190613cca565b11156118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf906138a9565b60405180910390fd5b600b54816118d69190613d51565b3414611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90613b69565b60405180910390fd5b61191f6113df565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611964573d6000803e3d6000fd5b5061196d611ead565b73ffffffffffffffffffffffffffffffffffffffff167f48cf13e6cf5a1f35533e8646c7359f682b77b35907ce6d9e0ff3619f8eee0dfb60016008546119b39190613cca565b836040516119c2929190613bcd565b60405180910390a260005b81811015611a1b57611a086119e0611ead565b600860008154809291906119f390613ed9565b919050556001611a039190613cca565b6122af565b8080611a1390613ed9565b9150506119cd565b5050565b6060611a2a82611e41565b611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6090613a49565b60405180910390fd5b6000600660008481526020019081526020016000208054611a8990613ea7565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab590613ea7565b8015611b025780601f10611ad757610100808354040283529160200191611b02565b820191906000526020600020905b815481529060010190602001808311611ae557829003601f168201915b505050505090506000611b136124d9565b9050600081511415611b29578192505050611b6c565b600082511115611b5e578082604051602001611b469291906137e1565b60405160208183030381529060405292505050611b6c565b611b678461256b565b925050505b919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c33611ead565b73ffffffffffffffffffffffffffffffffffffffff16611c516113df565b73ffffffffffffffffffffffffffffffffffffffff1614611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e90613a89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e906138e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f28836110a4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611f7782611e41565b611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad90613a09565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611fdd929190612a4c565b505050565b600080611fef8484612612565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061204a5750805b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612073826110a4565b73ffffffffffffffffffffffffffffffffffffffff16146120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090613aa9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090613949565b60405180910390fd5b6121448383836126f0565b61214f600082611eb5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461219f9190613dab565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f69190613cca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561231f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231690613a29565b60405180910390fd5b61232881611e41565b15612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90613909565b60405180910390fd5b612374600083836126f0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123c49190613cca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612488848484612053565b612494848484846126f5565b6124d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ca906138c9565b60405180910390fd5b50505050565b6060600c80546124e890613ea7565b80601f016020809104026020016040519081016040528092919081815260200182805461251490613ea7565b80156125615780601f1061253657610100808354040283529160200191612561565b820191906000526020600020905b81548152906001019060200180831161254457829003601f168201915b5050505050905090565b606061257682611e41565b6125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac90613ac9565b60405180910390fd5b60006125bf6124d9565b905060008151116125df576040518060200160405280600081525061260a565b806125e98461288c565b6040516020016125fa9291906137e1565b6040516020818303038152906040525b915050919050565b600061261d82611e41565b61265c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265390613989565b60405180910390fd5b6000612667836110a4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126d657508373ffffffffffffffffffffffffffffffffffffffff166126be846108de565b73ffffffffffffffffffffffffffffffffffffffff16145b806126e757506126e68185611b97565b5b91505092915050565b505050565b60006127168473ffffffffffffffffffffffffffffffffffffffff16612a39565b1561287f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261273f611ead565b8786866040518563ffffffff1660e01b81526004016127619493929190613820565b602060405180830381600087803b15801561277b57600080fd5b505af19250505080156127ac57506040513d601f19601f820116820180604052508101906127a99190612e21565b60015b61282f573d80600081146127dc576040519150601f19603f3d011682016040523d82523d6000602084013e6127e1565b606091505b50600081511415612827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281e906138c9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612884565b600190505b949350505050565b606060008214156128d4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a34565b600082905060005b600082146129065780806128ef90613ed9565b915050600a826128ff9190613d20565b91506128dc565b60008167ffffffffffffffff811115612948577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561297a5781602001600182028036833780820191505090505b5090505b60008514612a2d576001826129939190613dab565b9150600a856129a29190613f22565b60306129ae9190613cca565b60f81b8183815181106129ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a269190613d20565b945061297e565b8093505050505b919050565b600080823b905060008111915050919050565b828054612a5890613ea7565b90600052602060002090601f016020900481019282612a7a5760008555612ac1565b82601f10612a9357805160ff1916838001178555612ac1565b82800160010185558215612ac1579182015b82811115612ac0578251825591602001919060010190612aa5565b5b509050612ace9190612ad2565b5090565b5b80821115612aeb576000816000905550600101612ad3565b5090565b6000612b02612afd84613c27565b613bf6565b905082815260208101848484011115612b1a57600080fd5b612b25848285613e65565b509392505050565b6000612b40612b3b84613c57565b613bf6565b905082815260208101848484011115612b5857600080fd5b612b63848285613e65565b509392505050565b600081359050612b7a81614020565b92915050565b600081359050612b8f81614037565b92915050565b600081359050612ba48161404e565b92915050565b600081519050612bb98161404e565b92915050565b600082601f830112612bd057600080fd5b8135612be0848260208601612aef565b91505092915050565b600082601f830112612bfa57600080fd5b8135612c0a848260208601612b2d565b91505092915050565b600081359050612c2281614065565b92915050565b600060208284031215612c3a57600080fd5b6000612c4884828501612b6b565b91505092915050565b60008060408385031215612c6457600080fd5b6000612c7285828601612b6b565b9250506020612c8385828601612b6b565b9150509250929050565b600080600060608486031215612ca257600080fd5b6000612cb086828701612b6b565b9350506020612cc186828701612b6b565b9250506040612cd286828701612c13565b9150509250925092565b60008060008060808587031215612cf257600080fd5b6000612d0087828801612b6b565b9450506020612d1187828801612b6b565b9350506040612d2287828801612c13565b925050606085013567ffffffffffffffff811115612d3f57600080fd5b612d4b87828801612bbf565b91505092959194509250565b60008060408385031215612d6a57600080fd5b6000612d7885828601612b6b565b9250506020612d8985828601612b80565b9150509250929050565b60008060408385031215612da657600080fd5b6000612db485828601612b6b565b9250506020612dc585828601612c13565b9150509250929050565b600060208284031215612de157600080fd5b6000612def84828501612b80565b91505092915050565b600060208284031215612e0a57600080fd5b6000612e1884828501612b95565b91505092915050565b600060208284031215612e3357600080fd5b6000612e4184828501612baa565b91505092915050565b600060208284031215612e5c57600080fd5b600082013567ffffffffffffffff811115612e7657600080fd5b612e8284828501612be9565b91505092915050565b600060208284031215612e9d57600080fd5b6000612eab84828501612c13565b91505092915050565b60008060408385031215612ec757600080fd5b6000612ed585828601612c13565b925050602083013567ffffffffffffffff811115612ef257600080fd5b612efe85828601612be9565b9150509250929050565b612f1181613ddf565b82525050565b612f2081613df1565b82525050565b6000612f3182613c87565b612f3b8185613c9d565b9350612f4b818560208601613e74565b612f548161400f565b840191505092915050565b612f6881613e53565b82525050565b6000612f7982613c92565b612f838185613cae565b9350612f93818560208601613e74565b612f9c8161400f565b840191505092915050565b6000612fb282613c92565b612fbc8185613cbf565b9350612fcc818560208601613e74565b80840191505092915050565b6000612fe5600883613cae565b91507f746f6f206d7563680000000000000000000000000000000000000000000000006000830152602082019050919050565b6000613025603283613cae565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061308b602683613cae565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130f1601c83613cae565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613131601183613cae565b91507f6d696e742077726f6e67206e756d6265720000000000000000000000000000006000830152602082019050919050565b6000613171602483613cae565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131d7601983613cae565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613217602c83613cae565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061327d603883613cae565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006132e3602a83613cae565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613349602983613cae565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006133af602e83613cae565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b6000613415602083613cae565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613455603183613cae565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b60006134bb602c83613cae565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613521602083613cae565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613561602983613cae565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006135c7602f83613cae565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061362d602183613cae565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613693603183613cae565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006136f9603083613cae565b91507f4d696e7420616d6f756e742077696c6c2065786365656420746f74616c20636f60008301527f6c6c656374696f6e20616d6f756e742e000000000000000000000000000000006020830152604082019050919050565b600061375f600b83613cae565b91507f6e6f7420737461727465640000000000000000000000000000000000000000006000830152602082019050919050565b600061379f600b83613cae565b91507f76616c7565206572726f720000000000000000000000000000000000000000006000830152602082019050919050565b6137db81613e49565b82525050565b60006137ed8285612fa7565b91506137f98284612fa7565b91508190509392505050565b600060208201905061381a6000830184612f08565b92915050565b60006080820190506138356000830187612f08565b6138426020830186612f08565b61384f60408301856137d2565b81810360608301526138618184612f26565b905095945050505050565b60006020820190506138816000830184612f17565b92915050565b600060208201905081810360008301526138a18184612f6e565b905092915050565b600060208201905081810360008301526138c281612fd8565b9050919050565b600060208201905081810360008301526138e281613018565b9050919050565b600060208201905081810360008301526139028161307e565b9050919050565b60006020820190508181036000830152613922816130e4565b9050919050565b6000602082019050818103600083015261394281613124565b9050919050565b6000602082019050818103600083015261396281613164565b9050919050565b60006020820190508181036000830152613982816131ca565b9050919050565b600060208201905081810360008301526139a28161320a565b9050919050565b600060208201905081810360008301526139c281613270565b9050919050565b600060208201905081810360008301526139e2816132d6565b9050919050565b60006020820190508181036000830152613a028161333c565b9050919050565b60006020820190508181036000830152613a22816133a2565b9050919050565b60006020820190508181036000830152613a4281613408565b9050919050565b60006020820190508181036000830152613a6281613448565b9050919050565b60006020820190508181036000830152613a82816134ae565b9050919050565b60006020820190508181036000830152613aa281613514565b9050919050565b60006020820190508181036000830152613ac281613554565b9050919050565b60006020820190508181036000830152613ae2816135ba565b9050919050565b60006020820190508181036000830152613b0281613620565b9050919050565b60006020820190508181036000830152613b2281613686565b9050919050565b60006020820190508181036000830152613b42816136ec565b9050919050565b60006020820190508181036000830152613b6281613752565b9050919050565b60006020820190508181036000830152613b8281613792565b9050919050565b6000602082019050613b9e60008301846137d2565b92915050565b6000604082019050613bb960008301856137d2565b613bc66020830184612f5f565b9392505050565b6000604082019050613be260008301856137d2565b613bef60208301846137d2565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715613c1d57613c1c613fe0565b5b8060405250919050565b600067ffffffffffffffff821115613c4257613c41613fe0565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613c7257613c71613fe0565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cd582613e49565b9150613ce083613e49565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1557613d14613f53565b5b828201905092915050565b6000613d2b82613e49565b9150613d3683613e49565b925082613d4657613d45613f82565b5b828204905092915050565b6000613d5c82613e49565b9150613d6783613e49565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613da057613d9f613f53565b5b828202905092915050565b6000613db682613e49565b9150613dc183613e49565b925082821015613dd457613dd3613f53565b5b828203905092915050565b6000613dea82613e29565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613e5e82613e49565b9050919050565b82818337600083830152505050565b60005b83811015613e92578082015181840152602081019050613e77565b83811115613ea1576000848401525b50505050565b60006002820490506001821680613ebf57607f821691505b60208210811415613ed357613ed2613fb1565b5b50919050565b6000613ee482613e49565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1757613f16613f53565b5b600182019050919050565b6000613f2d82613e49565b9150613f3883613e49565b925082613f4857613f47613f82565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61402981613ddf565b811461403457600080fd5b50565b61404081613df1565b811461404b57600080fd5b50565b61405781613dfd565b811461406257600080fd5b50565b61406e81613e49565b811461407957600080fd5b5056fea26469706673582212209b8e08ed1ff3f801f3d2bca58030011e03910411e2b4947a16f6d752782f59c664736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c45746865726d6f6e6b6579730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000245420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106101e35760003560e01c80636c0360eb11610102578063a22cb46511610095578063c87b56dd11610064578063c87b56dd1461069c578063e6fd6bd5146106d9578063e985e9c514610704578063f2fde38b14610741576101e3565b8063a22cb46514610605578063a2b40d191461062e578063b88d4fde14610657578063c1f2612314610680576101e3565b80638dee43be116100d15780638dee43be1461055b578063917bb57f1461058657806395d89b41146105af578063a035b1fe146105da576101e3565b80636c0360eb146104b157806370a08231146104dc578063715018a6146105195780638da5cb5b14610530576101e3565b806334eafb111161017a57806355aabf5b1161014957806355aabf5b1461040457806355f804b3146104205780636352211e1461044957806367765b8714610486576101e3565b806334eafb111461035e578063394565a0146103895780633c49a8a9146103b257806342842e0e146103db576101e3565b8063162094c4116101b6578063162094c4146102b657806318160ddd146102df5780631f2698ab1461030a57806323b872dd14610335576101e3565b806301ffc9a7146101e857806306fdde0314610225578063081812fc14610250578063095ea7b31461028d575b600080fd5b3480156101f457600080fd5b5061020f600480360381019061020a9190612df8565b61076a565b60405161021c919061386c565b60405180910390f35b34801561023157600080fd5b5061023a61084c565b6040516102479190613887565b60405180910390f35b34801561025c57600080fd5b5061027760048036038101906102729190612e8b565b6108de565b6040516102849190613805565b60405180910390f35b34801561029957600080fd5b506102b460048036038101906102af9190612d93565b610963565b005b3480156102c257600080fd5b506102dd60048036038101906102d89190612eb4565b610a7b565b005b3480156102eb57600080fd5b506102f4610b05565b6040516103019190613b89565b60405180910390f35b34801561031657600080fd5b5061031f610b0f565b60405161032c919061386c565b60405180910390f35b34801561034157600080fd5b5061035c60048036038101906103579190612c8d565b610b22565b005b34801561036a57600080fd5b50610373610b82565b6040516103809190613b89565b60405180910390f35b34801561039557600080fd5b506103b060048036038101906103ab9190612c28565b610b88565b005b3480156103be57600080fd5b506103d960048036038101906103d49190612c28565b610c48565b005b3480156103e757600080fd5b5061040260048036038101906103fd9190612c8d565b610da5565b005b61041e60048036038101906104199190612e8b565b610dc5565b005b34801561042c57600080fd5b5061044760048036038101906104429190612e4a565b61100e565b005b34801561045557600080fd5b50610470600480360381019061046b9190612e8b565b6110a4565b60405161047d9190613805565b60405180910390f35b34801561049257600080fd5b5061049b611156565b6040516104a89190613b89565b60405180910390f35b3480156104bd57600080fd5b506104c661115c565b6040516104d39190613887565b60405180910390f35b3480156104e857600080fd5b5061050360048036038101906104fe9190612c28565b6111ea565b6040516105109190613b89565b60405180910390f35b34801561052557600080fd5b5061052e6112a2565b005b34801561053c57600080fd5b506105456113df565b6040516105529190613805565b60405180910390f35b34801561056757600080fd5b50610570611409565b60405161057d9190613b89565b60405180910390f35b34801561059257600080fd5b506105ad60048036038101906105a89190612dcf565b61140f565b005b3480156105bb57600080fd5b506105c46114a8565b6040516105d19190613887565b60405180910390f35b3480156105e657600080fd5b506105ef61153a565b6040516105fc9190613b89565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190612d57565b611540565b005b34801561063a57600080fd5b5061065560048036038101906106509190612e8b565b6116c1565b005b34801561066357600080fd5b5061067e60048036038101906106799190612cdc565b611747565b005b61069a60048036038101906106959190612e8b565b6117a9565b005b3480156106a857600080fd5b506106c360048036038101906106be9190612e8b565b611a1f565b6040516106d09190613887565b60405180910390f35b3480156106e557600080fd5b506106ee611b71565b6040516106fb9190613805565b60405180910390f35b34801561071057600080fd5b5061072b60048036038101906107269190612c51565b611b97565b604051610738919061386c565b60405180910390f35b34801561074d57600080fd5b5061076860048036038101906107639190612c28565b611c2b565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061083557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610845575061084482611dd7565b5b9050919050565b60606000805461085b90613ea7565b80601f016020809104026020016040519081016040528092919081815260200182805461088790613ea7565b80156108d45780601f106108a9576101008083540402835291602001916108d4565b820191906000526020600020905b8154815290600101906020018083116108b757829003601f168201915b5050505050905090565b60006108e982611e41565b610928576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091f90613a69565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061096e826110a4565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d690613ae9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109fe611ead565b73ffffffffffffffffffffffffffffffffffffffff161480610a2d5750610a2c81610a27611ead565b611b97565b5b610a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a63906139a9565b60405180910390fd5b610a768383611eb5565b505050565b610a83611ead565b73ffffffffffffffffffffffffffffffffffffffff16610aa16113df565b73ffffffffffffffffffffffffffffffffffffffff1614610af7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aee90613a89565b60405180910390fd5b610b018282611f6e565b5050565b6000600854905090565b600d60009054906101000a900460ff1681565b610b33610b2d611ead565b82611fe2565b610b72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6990613b09565b60405180910390fd5b610b7d838383612053565b505050565b60095481565b610b90611ead565b73ffffffffffffffffffffffffffffffffffffffff16610bae6113df565b73ffffffffffffffffffffffffffffffffffffffff1614610c04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfb90613a89565b60405180910390fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610c50611ead565b73ffffffffffffffffffffffffffffffffffffffff16610c6e6113df565b73ffffffffffffffffffffffffffffffffffffffff1614610cc4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbb90613a89565b60405180910390fd5b6009546001600854610cd69190613cca565b1115610d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0e90613b29565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff167f48cf13e6cf5a1f35533e8646c7359f682b77b35907ce6d9e0ff3619f8eee0dfb6001600854610d5e9190613cca565b6001604051610d6e929190613ba4565b60405180910390a2610da28160086000815480929190610d8d90613ed9565b919050556001610d9d9190613cca565b6122af565b50565b610dc083838360405180602001604052806000815250611747565b505050565b600d60009054906101000a900460ff16610e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e0b90613b49565b60405180910390fd5b600081118015610e265750600a548111155b610e65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5c90613929565b60405180910390fd5b60095481600854610e769190613cca565b1115610eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eae906138a9565b60405180910390fd5b600b5481610ec59190613d51565b3414610f06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efd90613b69565b60405180910390fd5b610f0e6113df565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610f53573d6000803e3d6000fd5b50610f5c611ead565b73ffffffffffffffffffffffffffffffffffffffff167f48cf13e6cf5a1f35533e8646c7359f682b77b35907ce6d9e0ff3619f8eee0dfb6001600854610fa29190613cca565b83604051610fb1929190613bcd565b60405180910390a260005b8181101561100a57610ff7610fcf611ead565b60086000815480929190610fe290613ed9565b919050556001610ff29190613cca565b6122af565b808061100290613ed9565b915050610fbc565b5050565b611016611ead565b73ffffffffffffffffffffffffffffffffffffffff166110346113df565b73ffffffffffffffffffffffffffffffffffffffff161461108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190613a89565b60405180910390fd5b80600c90805190602001906110a0929190612a4c565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561114d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611144906139e9565b60405180910390fd5b80915050919050565b600a5481565b600c805461116990613ea7565b80601f016020809104026020016040519081016040528092919081815260200182805461119590613ea7565b80156111e25780601f106111b7576101008083540402835291602001916111e2565b820191906000526020600020905b8154815290600101906020018083116111c557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561125b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611252906139c9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6112aa611ead565b73ffffffffffffffffffffffffffffffffffffffff166112c86113df565b73ffffffffffffffffffffffffffffffffffffffff161461131e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161131590613a89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60085481565b611417611ead565b73ffffffffffffffffffffffffffffffffffffffff166114356113df565b73ffffffffffffffffffffffffffffffffffffffff161461148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290613a89565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6060600180546114b790613ea7565b80601f01602080910402602001604051908101604052809291908181526020018280546114e390613ea7565b80156115305780601f1061150557610100808354040283529160200191611530565b820191906000526020600020905b81548152906001019060200180831161151357829003601f168201915b5050505050905090565b600b5481565b611548611ead565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ad90613969565b60405180910390fd5b80600560006115c3611ead565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611670611ead565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516116b5919061386c565b60405180910390a35050565b6116c9611ead565b73ffffffffffffffffffffffffffffffffffffffff166116e76113df565b73ffffffffffffffffffffffffffffffffffffffff161461173d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173490613a89565b60405180910390fd5b80600b8190555050565b611758611752611ead565b83611fe2565b611797576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178e90613b09565b60405180910390fd5b6117a38484848461247d565b50505050565b6117b1611ead565b73ffffffffffffffffffffffffffffffffffffffff166117cf6113df565b73ffffffffffffffffffffffffffffffffffffffff1614611825576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181c90613a89565b60405180910390fd5b6000811180156118375750600a548111155b611876576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186d90613929565b60405180910390fd5b600954816008546118879190613cca565b11156118c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118bf906138a9565b60405180910390fd5b600b54816118d69190613d51565b3414611917576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190e90613b69565b60405180910390fd5b61191f6113df565b73ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015611964573d6000803e3d6000fd5b5061196d611ead565b73ffffffffffffffffffffffffffffffffffffffff167f48cf13e6cf5a1f35533e8646c7359f682b77b35907ce6d9e0ff3619f8eee0dfb60016008546119b39190613cca565b836040516119c2929190613bcd565b60405180910390a260005b81811015611a1b57611a086119e0611ead565b600860008154809291906119f390613ed9565b919050556001611a039190613cca565b6122af565b8080611a1390613ed9565b9150506119cd565b5050565b6060611a2a82611e41565b611a69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6090613a49565b60405180910390fd5b6000600660008481526020019081526020016000208054611a8990613ea7565b80601f0160208091040260200160405190810160405280929190818152602001828054611ab590613ea7565b8015611b025780601f10611ad757610100808354040283529160200191611b02565b820191906000526020600020905b815481529060010190602001808311611ae557829003601f168201915b505050505090506000611b136124d9565b9050600081511415611b29578192505050611b6c565b600082511115611b5e578082604051602001611b469291906137e1565b60405160208183030381529060405292505050611b6c565b611b678461256b565b925050505b919050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611c33611ead565b73ffffffffffffffffffffffffffffffffffffffff16611c516113df565b73ffffffffffffffffffffffffffffffffffffffff1614611ca7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9e90613a89565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0e906138e9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f28836110a4565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611f7782611e41565b611fb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fad90613a09565b60405180910390fd5b80600660008481526020019081526020016000209080519060200190611fdd929190612a4c565b505050565b600080611fef8484612612565b9050600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061204a5750805b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612073826110a4565b73ffffffffffffffffffffffffffffffffffffffff16146120c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120c090613aa9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612139576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213090613949565b60405180910390fd5b6121448383836126f0565b61214f600082611eb5565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461219f9190613dab565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121f69190613cca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561231f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231690613a29565b60405180910390fd5b61232881611e41565b15612368576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161235f90613909565b60405180910390fd5b612374600083836126f0565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123c49190613cca565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b612488848484612053565b612494848484846126f5565b6124d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ca906138c9565b60405180910390fd5b50505050565b6060600c80546124e890613ea7565b80601f016020809104026020016040519081016040528092919081815260200182805461251490613ea7565b80156125615780601f1061253657610100808354040283529160200191612561565b820191906000526020600020905b81548152906001019060200180831161254457829003601f168201915b5050505050905090565b606061257682611e41565b6125b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ac90613ac9565b60405180910390fd5b60006125bf6124d9565b905060008151116125df576040518060200160405280600081525061260a565b806125e98461288c565b6040516020016125fa9291906137e1565b6040516020818303038152906040525b915050919050565b600061261d82611e41565b61265c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161265390613989565b60405180910390fd5b6000612667836110a4565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806126d657508373ffffffffffffffffffffffffffffffffffffffff166126be846108de565b73ffffffffffffffffffffffffffffffffffffffff16145b806126e757506126e68185611b97565b5b91505092915050565b505050565b60006127168473ffffffffffffffffffffffffffffffffffffffff16612a39565b1561287f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261273f611ead565b8786866040518563ffffffff1660e01b81526004016127619493929190613820565b602060405180830381600087803b15801561277b57600080fd5b505af19250505080156127ac57506040513d601f19601f820116820180604052508101906127a99190612e21565b60015b61282f573d80600081146127dc576040519150601f19603f3d011682016040523d82523d6000602084013e6127e1565b606091505b50600081511415612827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161281e906138c9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612884565b600190505b949350505050565b606060008214156128d4576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612a34565b600082905060005b600082146129065780806128ef90613ed9565b915050600a826128ff9190613d20565b91506128dc565b60008167ffffffffffffffff811115612948577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561297a5781602001600182028036833780820191505090505b5090505b60008514612a2d576001826129939190613dab565b9150600a856129a29190613f22565b60306129ae9190613cca565b60f81b8183815181106129ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612a269190613d20565b945061297e565b8093505050505b919050565b600080823b905060008111915050919050565b828054612a5890613ea7565b90600052602060002090601f016020900481019282612a7a5760008555612ac1565b82601f10612a9357805160ff1916838001178555612ac1565b82800160010185558215612ac1579182015b82811115612ac0578251825591602001919060010190612aa5565b5b509050612ace9190612ad2565b5090565b5b80821115612aeb576000816000905550600101612ad3565b5090565b6000612b02612afd84613c27565b613bf6565b905082815260208101848484011115612b1a57600080fd5b612b25848285613e65565b509392505050565b6000612b40612b3b84613c57565b613bf6565b905082815260208101848484011115612b5857600080fd5b612b63848285613e65565b509392505050565b600081359050612b7a81614020565b92915050565b600081359050612b8f81614037565b92915050565b600081359050612ba48161404e565b92915050565b600081519050612bb98161404e565b92915050565b600082601f830112612bd057600080fd5b8135612be0848260208601612aef565b91505092915050565b600082601f830112612bfa57600080fd5b8135612c0a848260208601612b2d565b91505092915050565b600081359050612c2281614065565b92915050565b600060208284031215612c3a57600080fd5b6000612c4884828501612b6b565b91505092915050565b60008060408385031215612c6457600080fd5b6000612c7285828601612b6b565b9250506020612c8385828601612b6b565b9150509250929050565b600080600060608486031215612ca257600080fd5b6000612cb086828701612b6b565b9350506020612cc186828701612b6b565b9250506040612cd286828701612c13565b9150509250925092565b60008060008060808587031215612cf257600080fd5b6000612d0087828801612b6b565b9450506020612d1187828801612b6b565b9350506040612d2287828801612c13565b925050606085013567ffffffffffffffff811115612d3f57600080fd5b612d4b87828801612bbf565b91505092959194509250565b60008060408385031215612d6a57600080fd5b6000612d7885828601612b6b565b9250506020612d8985828601612b80565b9150509250929050565b60008060408385031215612da657600080fd5b6000612db485828601612b6b565b9250506020612dc585828601612c13565b9150509250929050565b600060208284031215612de157600080fd5b6000612def84828501612b80565b91505092915050565b600060208284031215612e0a57600080fd5b6000612e1884828501612b95565b91505092915050565b600060208284031215612e3357600080fd5b6000612e4184828501612baa565b91505092915050565b600060208284031215612e5c57600080fd5b600082013567ffffffffffffffff811115612e7657600080fd5b612e8284828501612be9565b91505092915050565b600060208284031215612e9d57600080fd5b6000612eab84828501612c13565b91505092915050565b60008060408385031215612ec757600080fd5b6000612ed585828601612c13565b925050602083013567ffffffffffffffff811115612ef257600080fd5b612efe85828601612be9565b9150509250929050565b612f1181613ddf565b82525050565b612f2081613df1565b82525050565b6000612f3182613c87565b612f3b8185613c9d565b9350612f4b818560208601613e74565b612f548161400f565b840191505092915050565b612f6881613e53565b82525050565b6000612f7982613c92565b612f838185613cae565b9350612f93818560208601613e74565b612f9c8161400f565b840191505092915050565b6000612fb282613c92565b612fbc8185613cbf565b9350612fcc818560208601613e74565b80840191505092915050565b6000612fe5600883613cae565b91507f746f6f206d7563680000000000000000000000000000000000000000000000006000830152602082019050919050565b6000613025603283613cae565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b600061308b602683613cae565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006130f1601c83613cae565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b6000613131601183613cae565b91507f6d696e742077726f6e67206e756d6265720000000000000000000000000000006000830152602082019050919050565b6000613171602483613cae565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006131d7601983613cae565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000613217602c83613cae565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b600061327d603883613cae565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006132e3602a83613cae565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000613349602983613cae565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006133af602e83613cae565b91507f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60008301527f6578697374656e7420746f6b656e0000000000000000000000000000000000006020830152604082019050919050565b6000613415602083613cae565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000613455603183613cae565b91507f45524337323155524953746f726167653a2055524920717565727920666f722060008301527f6e6f6e6578697374656e7420746f6b656e0000000000000000000000000000006020830152604082019050919050565b60006134bb602c83613cae565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000613521602083613cae565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000613561602983613cae565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006135c7602f83613cae565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b600061362d602183613cae565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613693603183613cae565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b60006136f9603083613cae565b91507f4d696e7420616d6f756e742077696c6c2065786365656420746f74616c20636f60008301527f6c6c656374696f6e20616d6f756e742e000000000000000000000000000000006020830152604082019050919050565b600061375f600b83613cae565b91507f6e6f7420737461727465640000000000000000000000000000000000000000006000830152602082019050919050565b600061379f600b83613cae565b91507f76616c7565206572726f720000000000000000000000000000000000000000006000830152602082019050919050565b6137db81613e49565b82525050565b60006137ed8285612fa7565b91506137f98284612fa7565b91508190509392505050565b600060208201905061381a6000830184612f08565b92915050565b60006080820190506138356000830187612f08565b6138426020830186612f08565b61384f60408301856137d2565b81810360608301526138618184612f26565b905095945050505050565b60006020820190506138816000830184612f17565b92915050565b600060208201905081810360008301526138a18184612f6e565b905092915050565b600060208201905081810360008301526138c281612fd8565b9050919050565b600060208201905081810360008301526138e281613018565b9050919050565b600060208201905081810360008301526139028161307e565b9050919050565b60006020820190508181036000830152613922816130e4565b9050919050565b6000602082019050818103600083015261394281613124565b9050919050565b6000602082019050818103600083015261396281613164565b9050919050565b60006020820190508181036000830152613982816131ca565b9050919050565b600060208201905081810360008301526139a28161320a565b9050919050565b600060208201905081810360008301526139c281613270565b9050919050565b600060208201905081810360008301526139e2816132d6565b9050919050565b60006020820190508181036000830152613a028161333c565b9050919050565b60006020820190508181036000830152613a22816133a2565b9050919050565b60006020820190508181036000830152613a4281613408565b9050919050565b60006020820190508181036000830152613a6281613448565b9050919050565b60006020820190508181036000830152613a82816134ae565b9050919050565b60006020820190508181036000830152613aa281613514565b9050919050565b60006020820190508181036000830152613ac281613554565b9050919050565b60006020820190508181036000830152613ae2816135ba565b9050919050565b60006020820190508181036000830152613b0281613620565b9050919050565b60006020820190508181036000830152613b2281613686565b9050919050565b60006020820190508181036000830152613b42816136ec565b9050919050565b60006020820190508181036000830152613b6281613752565b9050919050565b60006020820190508181036000830152613b8281613792565b9050919050565b6000602082019050613b9e60008301846137d2565b92915050565b6000604082019050613bb960008301856137d2565b613bc66020830184612f5f565b9392505050565b6000604082019050613be260008301856137d2565b613bef60208301846137d2565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715613c1d57613c1c613fe0565b5b8060405250919050565b600067ffffffffffffffff821115613c4257613c41613fe0565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115613c7257613c71613fe0565b5b601f19601f8301169050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cd582613e49565b9150613ce083613e49565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1557613d14613f53565b5b828201905092915050565b6000613d2b82613e49565b9150613d3683613e49565b925082613d4657613d45613f82565b5b828204905092915050565b6000613d5c82613e49565b9150613d6783613e49565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613da057613d9f613f53565b5b828202905092915050565b6000613db682613e49565b9150613dc183613e49565b925082821015613dd457613dd3613f53565b5b828203905092915050565b6000613dea82613e29565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613e5e82613e49565b9050919050565b82818337600083830152505050565b60005b83811015613e92578082015181840152602081019050613e77565b83811115613ea1576000848401525b50505050565b60006002820490506001821680613ebf57607f821691505b60208210811415613ed357613ed2613fb1565b5b50919050565b6000613ee482613e49565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f1757613f16613f53565b5b600182019050919050565b6000613f2d82613e49565b9150613f3883613e49565b925082613f4857613f47613f82565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61402981613ddf565b811461403457600080fd5b50565b61404081613df1565b811461404b57600080fd5b50565b61405781613dfd565b811461406257600080fd5b50565b61406e81613e49565b811461407957600080fd5b5056fea26469706673582212209b8e08ed1ff3f801f3d2bca58030011e03910411e2b4947a16f6d752782f59c664736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000c45746865726d6f6e6b6579730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000245420000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): Ethermonkeys
Arg [1] : symbol_ (string): EB
Arg [2] : baseURI_ (string):
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [4] : 45746865726d6f6e6b6579730000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 4542000000000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
36628:3064:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20593:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21525:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22985:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22522:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37723:133;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37296:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36995:19;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23875:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36808:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38506:113;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39421:266;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24251:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37961:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37518:96;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21219:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36860:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36967:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20949:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36039:148;;;;;;;;;;;;;:::i;:::-;;35388:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36774:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37864:89;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21694:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36908:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23278:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37622:93;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24473:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38920:489;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32813:679;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38461:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23644:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36342:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20593:292;20695:4;20734:25;20719:40;;;:11;:40;;;;:105;;;;20791:33;20776:48;;;:11;:48;;;;20719:105;:158;;;;20841:36;20865:11;20841:23;:36::i;:::-;20719:158;20712:165;;20593:292;;;:::o;21525:100::-;21579:13;21612:5;21605:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21525:100;:::o;22985:221::-;23061:7;23089:16;23097:7;23089;:16::i;:::-;23081:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23174:15;:24;23190:7;23174:24;;;;;;;;;;;;;;;;;;;;;23167:31;;22985:221;;;:::o;22522:397::-;22603:13;22619:23;22634:7;22619:14;:23::i;:::-;22603:39;;22667:5;22661:11;;:2;:11;;;;22653:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22747:5;22731:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22756:37;22773:5;22780:12;:10;:12::i;:::-;22756:16;:37::i;:::-;22731:62;22723:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22890:21;22899:2;22903:7;22890:8;:21::i;:::-;22522:397;;;:::o;37723:133::-;35619:12;:10;:12::i;:::-;35608:23;;:7;:5;:7::i;:::-;:23;;;35600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37815:33:::1;37828:8;37838:9;37815:12;:33::i;:::-;37723:133:::0;;:::o;37296:99::-;37348:7;37375:12;;37368:19;;37296:99;:::o;36995:19::-;;;;;;;;;;;;;:::o;23875:305::-;24036:41;24055:12;:10;:12::i;:::-;24069:7;24036:18;:41::i;:::-;24028:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24144:28;24154:4;24160:2;24164:7;24144:9;:28::i;:::-;23875:305;;;:::o;36808:33::-;;;;:::o;38506:113::-;35619:12;:10;:12::i;:::-;35608:23;;:7;:5;:7::i;:::-;:23;;;35600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38596:15:::1;38586:7;;:25;;;;;;;;;;;;;;;;;;38506:113:::0;:::o;39421:266::-;35619:12;:10;:12::i;:::-;35608:23;;:7;:5;:7::i;:::-;:23;;;35600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39520:10:::1;;39515:1;39500:12;;:16;;;;:::i;:::-;:30;;39492:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;39611:5;39599:37;;;39631:1;39618:12;;:14;;;;:::i;:::-;39634:1;39599:37;;;;;;;:::i;:::-;;;;;;;;39647:32;39653:5;39664:12;;:14;;;;;;;;;:::i;:::-;;;;;39660:1;:18;;;;:::i;:::-;39647:5;:32::i;:::-;39421:266:::0;:::o;24251:151::-;24355:39;24372:4;24378:2;24382:7;24355:39;;;;;;;;;;;;:16;:39::i;:::-;24251:151;;;:::o;37961:492::-;37245:7;;;;;;;;;;;37237:31;;;;;;;;;;;;:::i;:::-;;;;;;;;;38051:1:::1;38043:6;:9;:31;;;;;38066:8;;38056:6;:18;;38043:31;38035:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;38140:10;;38130:6;38115:12;;:21;;;;:::i;:::-;:35;;38107:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;38204:5;;38195:6;:14;;;;:::i;:::-;38182:9;:27;38174:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;38244:7;:5;:7::i;:::-;38236:25;;:36;38262:9;38236:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;38300:12;:10;:12::i;:::-;38288:49;;;38327:1;38314:12;;:14;;;;:::i;:::-;38330:6;38288:49;;;;;;;:::i;:::-;;;;;;;;38352:9;38348:98;38368:6;38365:1;:9;38348:98;;;38395:39;38401:12;:10;:12::i;:::-;38419;;:14;;;;;;;;;:::i;:::-;;;;;38415:1;:18;;;;:::i;:::-;38395:5;:39::i;:::-;38376:3;;;;;:::i;:::-;;;;38348:98;;;;37961:492:::0;:::o;37518:96::-;35619:12;:10;:12::i;:::-;35608:23;;:7;:5;:7::i;:::-;:23;;;35600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37599:7:::1;37589;:17;;;;;;;;;;;;:::i;:::-;;37518:96:::0;:::o;21219:239::-;21291:7;21311:13;21327:7;:16;21335:7;21327:16;;;;;;;;;;;;;;;;;;;;;21311:32;;21379:1;21362:19;;:5;:19;;;;21354:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21445:5;21438:12;;;21219:239;;;:::o;36860:28::-;;;;:::o;36967:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20949:208::-;21021:7;21066:1;21049:19;;:5;:19;;;;21041:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21133:9;:16;21143:5;21133:16;;;;;;;;;;;;;;;;21126:23;;20949:208;;;:::o;36039:148::-;35619:12;:10;:12::i;:::-;35608:23;;:7;:5;:7::i;:::-;:23;;;35600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36146:1:::1;36109:40;;36130:6;;;;;;;;;;;36109:40;;;;;;;;;;;;36177:1;36160:6;;:19;;;;;;;;;;;;;;;;;;36039:148::o:0;35388:87::-;35434:7;35461:6;;;;;;;;;;;35454:13;;35388:87;:::o;36774:27::-;;;;:::o;37864:89::-;35619:12;:10;:12::i;:::-;35608:23;;:7;:5;:7::i;:::-;:23;;;35600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37939:6:::1;37929:7;;:16;;;;;;;;;;;;;;;;;;37864:89:::0;:::o;21694:104::-;21750:13;21783:7;21776:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21694:104;:::o;36908:40::-;;;;:::o;23278:295::-;23393:12;:10;:12::i;:::-;23381:24;;:8;:24;;;;23373:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23493:8;23448:18;:32;23467:12;:10;:12::i;:::-;23448:32;;;;;;;;;;;;;;;:42;23481:8;23448:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23546:8;23517:48;;23532:12;:10;:12::i;:::-;23517:48;;;23556:8;23517:48;;;;;;:::i;:::-;;;;;;;;23278:295;;:::o;37622:93::-;35619:12;:10;:12::i;:::-;35608:23;;:7;:5;:7::i;:::-;:23;;;35600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;37698:9:::1;37690:5;:17;;;;37622:93:::0;:::o;24473:285::-;24605:41;24624:12;:10;:12::i;:::-;24638:7;24605:18;:41::i;:::-;24597:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24711:39;24725:4;24731:2;24735:7;24744:5;24711:13;:39::i;:::-;24473:285;;;;:::o;38920:489::-;35619:12;:10;:12::i;:::-;35608:23;;:7;:5;:7::i;:::-;:23;;;35600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;39007:1:::1;38999:6;:9;:31;;;;;39022:8;;39012:6;:18;;38999:31;38991:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;39096:10;;39086:6;39071:12;;:21;;;;:::i;:::-;:35;;39063:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;39160:5;;39151:6;:14;;;;:::i;:::-;39138:9;:27;39130:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;39200:7;:5;:7::i;:::-;39192:25;;:36;39218:9;39192:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;39256:12;:10;:12::i;:::-;39244:49;;;39283:1;39270:12;;:14;;;;:::i;:::-;39286:6;39244:49;;;;;;;:::i;:::-;;;;;;;;39308:9;39304:98;39324:6;39321:1;:9;39304:98;;;39351:39;39357:12;:10;:12::i;:::-;39375;;:14;;;;;;;;;:::i;:::-;;;;;39371:1;:18;;;;:::i;:::-;39351:5;:39::i;:::-;39332:3;;;;;:::i;:::-;;;;39304:98;;;;38920:489:::0;:::o;32813:679::-;32886:13;32920:16;32928:7;32920;:16::i;:::-;32912:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;33003:23;33029:10;:19;33040:7;33029:19;;;;;;;;;;;33003:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33059:18;33080:10;:8;:10::i;:::-;33059:31;;33188:1;33172:4;33166:18;:23;33162:72;;;33213:9;33206:16;;;;;;33162:72;33364:1;33344:9;33338:23;:27;33334:108;;;33413:4;33419:9;33396:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33382:48;;;;;;33334:108;33461:23;33476:7;33461:14;:23::i;:::-;33454:30;;;;32813:679;;;;:::o;38461:38::-;;;;;;;;;;;;;:::o;23644:164::-;23741:4;23765:18;:25;23784:5;23765:25;;;;;;;;;;;;;;;:35;23791:8;23765:35;;;;;;;;;;;;;;;;;;;;;;;;;23758:42;;23644:164;;;;:::o;36342:244::-;35619:12;:10;:12::i;:::-;35608:23;;:7;:5;:7::i;:::-;:23;;;35600:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;36451:1:::1;36431:22;;:8;:22;;;;36423:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;36541:8;36512:38;;36533:6;;;;;;;;;;;36512:38;;;;;;;;;;;;36570:8;36561:6;;:17;;;;;;;;;;;;;;;;;;36342:244:::0;:::o;19118:157::-;19203:4;19242:25;19227:40;;;:11;:40;;;;19220:47;;19118:157;;;:::o;26225:127::-;26290:4;26342:1;26314:30;;:7;:16;26322:7;26314:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26307:37;;26225:127;;;:::o;15936:98::-;15989:7;16016:10;16009:17;;15936:98;:::o;30102:174::-;30204:2;30177:15;:24;30193:7;30177:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30260:7;30256:2;30222:46;;30231:23;30246:7;30231:14;:23::i;:::-;30222:46;;;;;;;;;;;;30102:174;;:::o;33648:217::-;33748:16;33756:7;33748;:16::i;:::-;33740:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;33848:9;33826:10;:19;33837:7;33826:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;33648:217;;:::o;38627:283::-;38774:4;38796:12;38811:42;38836:7;38845;38811:24;:42::i;:::-;38796:57;;38883:7;;;;;;;;;;;38872:18;;:7;:18;;;:29;;;;38894:7;38872:29;38864:38;;;38627:283;;;;:::o;29440:544::-;29565:4;29538:31;;:23;29553:7;29538:14;:23::i;:::-;:31;;;29530:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29648:1;29634:16;;:2;:16;;;;29626:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29704:39;29725:4;29731:2;29735:7;29704:20;:39::i;:::-;29808:29;29825:1;29829:7;29808:8;:29::i;:::-;29869:1;29850:9;:15;29860:4;29850:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29898:1;29881:9;:13;29891:2;29881:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29929:2;29910:7;:16;29918:7;29910:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29968:7;29964:2;29949:27;;29958:4;29949:27;;;;;;;;;;;;29440:544;;;:::o;28132:382::-;28226:1;28212:16;;:2;:16;;;;28204:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28285:16;28293:7;28285;:16::i;:::-;28284:17;28276:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28347:45;28376:1;28380:2;28384:7;28347:20;:45::i;:::-;28422:1;28405:9;:13;28415:2;28405:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28453:2;28434:7;:16;28442:7;28434:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28498:7;28494:2;28473:33;;28490:1;28473:33;;;;;;;;;;;;28132:382;;:::o;25640:272::-;25754:28;25764:4;25770:2;25774:7;25754:9;:28::i;:::-;25801:48;25824:4;25830:2;25834:7;25843:5;25801:22;:48::i;:::-;25793:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25640:272;;;;:::o;37403:107::-;37463:13;37495:7;37488:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37403:107;:::o;21869:360::-;21942:13;21976:16;21984:7;21976;:16::i;:::-;21968:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22057:21;22081:10;:8;:10::i;:::-;22057:34;;22133:1;22115:7;22109:21;:25;:112;;;;;;;;;;;;;;;;;22174:7;22183:18;:7;:16;:18::i;:::-;22157:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22109:112;22102:119;;;21869:360;;;:::o;26519:348::-;26612:4;26637:16;26645:7;26637;:16::i;:::-;26629:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26713:13;26729:23;26744:7;26729:14;:23::i;:::-;26713:39;;26782:5;26771:16;;:7;:16;;;:51;;;;26815:7;26791:31;;:20;26803:7;26791:11;:20::i;:::-;:31;;;26771:51;:87;;;;26826:32;26843:5;26850:7;26826:16;:32::i;:::-;26771:87;26763:96;;;26519:348;;;;:::o;32297:93::-;;;;:::o;30841:843::-;30962:4;30988:15;:2;:13;;;:15::i;:::-;30984:693;;;31040:2;31024:36;;;31061:12;:10;:12::i;:::-;31075:4;31081:7;31090:5;31024:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31020:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31287:1;31270:6;:13;:18;31266:341;;;31313:60;;;;;;;;;;:::i;:::-;;;;;;;;31266:341;31557:6;31551:13;31542:6;31538:2;31534:15;31527:38;31020:602;31157:45;;;31147:55;;;:6;:55;;;;31140:62;;;;;30984:693;31661:4;31654:11;;30841:843;;;;;;;:::o;16578:723::-;16634:13;16864:1;16855:5;:10;16851:53;;;16882:10;;;;;;;;;;;;;;;;;;;;;16851:53;16914:12;16929:5;16914:20;;16945:14;16970:78;16985:1;16977:4;:9;16970:78;;17003:8;;;;;:::i;:::-;;;;17034:2;17026:10;;;;;:::i;:::-;;;16970:78;;;17058:19;17090:6;17080:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17058:39;;17108:154;17124:1;17115:5;:10;17108:154;;17152:1;17142:11;;;;;:::i;:::-;;;17219:2;17211:5;:10;;;;:::i;:::-;17198:2;:24;;;;:::i;:::-;17185:39;;17168:6;17175;17168:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;17248:2;17239:11;;;;;:::i;:::-;;;17108:154;;;17286:6;17272:21;;;;;16578:723;;;;:::o;8066:422::-;8126:4;8334:12;8445:7;8433:20;8425:28;;8479:1;8472:4;:8;8465:15;;;8066:422;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:256::-;;4986:2;4974:9;4965:7;4961:23;4957:32;4954:2;;;5002:1;4999;4992:12;4954:2;5045:1;5070:50;5112:7;5103:6;5092:9;5088:22;5070:50;:::i;:::-;5060:60;;5016:114;4944:193;;;;:::o;5143:260::-;;5250:2;5238:9;5229:7;5225:23;5221:32;5218:2;;;5266:1;5263;5256:12;5218:2;5309:1;5334:52;5378:7;5369:6;5358:9;5354:22;5334:52;:::i;:::-;5324:62;;5280:116;5208:195;;;;:::o;5409:282::-;;5527:2;5515:9;5506:7;5502:23;5498:32;5495:2;;;5543:1;5540;5533:12;5495:2;5586:1;5611:63;5666:7;5657:6;5646:9;5642:22;5611:63;:::i;:::-;5601:73;;5557:127;5485:206;;;;:::o;5697:375::-;;5815:2;5803:9;5794:7;5790:23;5786:32;5783:2;;;5831:1;5828;5821:12;5783:2;5902:1;5891:9;5887:17;5874:31;5932:18;5924:6;5921:30;5918:2;;;5964:1;5961;5954:12;5918:2;5992:63;6047:7;6038:6;6027:9;6023:22;5992:63;:::i;:::-;5982:73;;5845:220;5773:299;;;;:::o;6078:262::-;;6186:2;6174:9;6165:7;6161:23;6157:32;6154:2;;;6202:1;6199;6192:12;6154:2;6245:1;6270:53;6315:7;6306:6;6295:9;6291:22;6270:53;:::i;:::-;6260:63;;6216:117;6144:196;;;;:::o;6346:520::-;;;6481:2;6469:9;6460:7;6456:23;6452:32;6449:2;;;6497:1;6494;6487:12;6449:2;6540:1;6565:53;6610:7;6601:6;6590:9;6586:22;6565:53;:::i;:::-;6555:63;;6511:117;6695:2;6684:9;6680:18;6667:32;6726:18;6718:6;6715:30;6712:2;;;6758:1;6755;6748:12;6712:2;6786:63;6841:7;6832:6;6821:9;6817:22;6786:63;:::i;:::-;6776:73;;6638:221;6439:427;;;;;:::o;6872:118::-;6959:24;6977:5;6959:24;:::i;:::-;6954:3;6947:37;6937:53;;:::o;6996:109::-;7077:21;7092:5;7077:21;:::i;:::-;7072:3;7065:34;7055:50;;:::o;7111:360::-;;7225:38;7257:5;7225:38;:::i;:::-;7279:70;7342:6;7337:3;7279:70;:::i;:::-;7272:77;;7358:52;7403:6;7398:3;7391:4;7384:5;7380:16;7358:52;:::i;:::-;7435:29;7457:6;7435:29;:::i;:::-;7430:3;7426:39;7419:46;;7201:270;;;;;:::o;7477:147::-;7572:45;7611:5;7572:45;:::i;:::-;7567:3;7560:58;7550:74;;:::o;7630:364::-;;7746:39;7779:5;7746:39;:::i;:::-;7801:71;7865:6;7860:3;7801:71;:::i;:::-;7794:78;;7881:52;7926:6;7921:3;7914:4;7907:5;7903:16;7881:52;:::i;:::-;7958:29;7980:6;7958:29;:::i;:::-;7953:3;7949:39;7942:46;;7722:272;;;;;:::o;8000:377::-;;8134:39;8167:5;8134:39;:::i;:::-;8189:89;8271:6;8266:3;8189:89;:::i;:::-;8182:96;;8287:52;8332:6;8327:3;8320:4;8313:5;8309:16;8287:52;:::i;:::-;8364:6;8359:3;8355:16;8348:23;;8110:267;;;;;:::o;8383:305::-;;8546:66;8610:1;8605:3;8546:66;:::i;:::-;8539:73;;8642:10;8638:1;8633:3;8629:11;8622:31;8679:2;8674:3;8670:12;8663:19;;8529:159;;;:::o;8694:382::-;;8857:67;8921:2;8916:3;8857:67;:::i;:::-;8850:74;;8954:34;8950:1;8945:3;8941:11;8934:55;9020:20;9015:2;9010:3;9006:12;8999:42;9067:2;9062:3;9058:12;9051:19;;8840:236;;;:::o;9082:370::-;;9245:67;9309:2;9304:3;9245:67;:::i;:::-;9238:74;;9342:34;9338:1;9333:3;9329:11;9322:55;9408:8;9403:2;9398:3;9394:12;9387:30;9443:2;9438:3;9434:12;9427:19;;9228:224;;;:::o;9458:326::-;;9621:67;9685:2;9680:3;9621:67;:::i;:::-;9614:74;;9718:30;9714:1;9709:3;9705:11;9698:51;9775:2;9770:3;9766:12;9759:19;;9604:180;;;:::o;9790:315::-;;9953:67;10017:2;10012:3;9953:67;:::i;:::-;9946:74;;10050:19;10046:1;10041:3;10037:11;10030:40;10096:2;10091:3;10087:12;10080:19;;9936:169;;;:::o;10111:368::-;;10274:67;10338:2;10333:3;10274:67;:::i;:::-;10267:74;;10371:34;10367:1;10362:3;10358:11;10351:55;10437:6;10432:2;10427:3;10423:12;10416:28;10470:2;10465:3;10461:12;10454:19;;10257:222;;;:::o;10485:323::-;;10648:67;10712:2;10707:3;10648:67;:::i;:::-;10641:74;;10745:27;10741:1;10736:3;10732:11;10725:48;10799:2;10794:3;10790:12;10783:19;;10631:177;;;:::o;10814:376::-;;10977:67;11041:2;11036:3;10977:67;:::i;:::-;10970:74;;11074:34;11070:1;11065:3;11061:11;11054:55;11140:14;11135:2;11130:3;11126:12;11119:36;11181:2;11176:3;11172:12;11165:19;;10960:230;;;:::o;11196:388::-;;11359:67;11423:2;11418:3;11359:67;:::i;:::-;11352:74;;11456:34;11452:1;11447:3;11443:11;11436:55;11522:26;11517:2;11512:3;11508:12;11501:48;11575:2;11570:3;11566:12;11559:19;;11342:242;;;:::o;11590:374::-;;11753:67;11817:2;11812:3;11753:67;:::i;:::-;11746:74;;11850:34;11846:1;11841:3;11837:11;11830:55;11916:12;11911:2;11906:3;11902:12;11895:34;11955:2;11950:3;11946:12;11939:19;;11736:228;;;:::o;11970:373::-;;12133:67;12197:2;12192:3;12133:67;:::i;:::-;12126:74;;12230:34;12226:1;12221:3;12217:11;12210:55;12296:11;12291:2;12286:3;12282:12;12275:33;12334:2;12329:3;12325:12;12318:19;;12116:227;;;:::o;12349:378::-;;12512:67;12576:2;12571:3;12512:67;:::i;:::-;12505:74;;12609:34;12605:1;12600:3;12596:11;12589:55;12675:16;12670:2;12665:3;12661:12;12654:38;12718:2;12713:3;12709:12;12702:19;;12495:232;;;:::o;12733:330::-;;12896:67;12960:2;12955:3;12896:67;:::i;:::-;12889:74;;12993:34;12989:1;12984:3;12980:11;12973:55;13054:2;13049:3;13045:12;13038:19;;12879:184;;;:::o;13069:381::-;;13232:67;13296:2;13291:3;13232:67;:::i;:::-;13225:74;;13329:34;13325:1;13320:3;13316:11;13309:55;13395:19;13390:2;13385:3;13381:12;13374:41;13441:2;13436:3;13432:12;13425:19;;13215:235;;;:::o;13456:376::-;;13619:67;13683:2;13678:3;13619:67;:::i;:::-;13612:74;;13716:34;13712:1;13707:3;13703:11;13696:55;13782:14;13777:2;13772:3;13768:12;13761:36;13823:2;13818:3;13814:12;13807:19;;13602:230;;;:::o;13838:330::-;;14001:67;14065:2;14060:3;14001:67;:::i;:::-;13994:74;;14098:34;14094:1;14089:3;14085:11;14078:55;14159:2;14154:3;14150:12;14143:19;;13984:184;;;:::o;14174:373::-;;14337:67;14401:2;14396:3;14337:67;:::i;:::-;14330:74;;14434:34;14430:1;14425:3;14421:11;14414:55;14500:11;14495:2;14490:3;14486:12;14479:33;14538:2;14533:3;14529:12;14522:19;;14320:227;;;:::o;14553:379::-;;14716:67;14780:2;14775:3;14716:67;:::i;:::-;14709:74;;14813:34;14809:1;14804:3;14800:11;14793:55;14879:17;14874:2;14869:3;14865:12;14858:39;14923:2;14918:3;14914:12;14907:19;;14699:233;;;:::o;14938:365::-;;15101:67;15165:2;15160:3;15101:67;:::i;:::-;15094:74;;15198:34;15194:1;15189:3;15185:11;15178:55;15264:3;15259:2;15254:3;15250:12;15243:25;15294:2;15289:3;15285:12;15278:19;;15084:219;;;:::o;15309:381::-;;15472:67;15536:2;15531:3;15472:67;:::i;:::-;15465:74;;15569:34;15565:1;15560:3;15556:11;15549:55;15635:19;15630:2;15625:3;15621:12;15614:41;15681:2;15676:3;15672:12;15665:19;;15455:235;;;:::o;15696:380::-;;15859:67;15923:2;15918:3;15859:67;:::i;:::-;15852:74;;15956:34;15952:1;15947:3;15943:11;15936:55;16022:18;16017:2;16012:3;16008:12;16001:40;16067:2;16062:3;16058:12;16051:19;;15842:234;;;:::o;16082:309::-;;16245:67;16309:2;16304:3;16245:67;:::i;:::-;16238:74;;16342:13;16338:1;16333:3;16329:11;16322:34;16382:2;16377:3;16373:12;16366:19;;16228:163;;;:::o;16397:309::-;;16560:67;16624:2;16619:3;16560:67;:::i;:::-;16553:74;;16657:13;16653:1;16648:3;16644:11;16637:34;16697:2;16692:3;16688:12;16681:19;;16543:163;;;:::o;16712:118::-;16799:24;16817:5;16799:24;:::i;:::-;16794:3;16787:37;16777:53;;:::o;16836:435::-;;17038:95;17129:3;17120:6;17038:95;:::i;:::-;17031:102;;17150:95;17241:3;17232:6;17150:95;:::i;:::-;17143:102;;17262:3;17255:10;;17020:251;;;;;:::o;17277:222::-;;17408:2;17397:9;17393:18;17385:26;;17421:71;17489:1;17478:9;17474:17;17465:6;17421:71;:::i;:::-;17375:124;;;;:::o;17505:640::-;;17738:3;17727:9;17723:19;17715:27;;17752:71;17820:1;17809:9;17805:17;17796:6;17752:71;:::i;:::-;17833:72;17901:2;17890:9;17886:18;17877:6;17833:72;:::i;:::-;17915;17983:2;17972:9;17968:18;17959:6;17915:72;:::i;:::-;18034:9;18028:4;18024:20;18019:2;18008:9;18004:18;17997:48;18062:76;18133:4;18124:6;18062:76;:::i;:::-;18054:84;;17705:440;;;;;;;:::o;18151:210::-;;18276:2;18265:9;18261:18;18253:26;;18289:65;18351:1;18340:9;18336:17;18327:6;18289:65;:::i;:::-;18243:118;;;;:::o;18367:313::-;;18518:2;18507:9;18503:18;18495:26;;18567:9;18561:4;18557:20;18553:1;18542:9;18538:17;18531:47;18595:78;18668:4;18659:6;18595:78;:::i;:::-;18587:86;;18485:195;;;;:::o;18686:419::-;;18890:2;18879:9;18875:18;18867:26;;18939:9;18933:4;18929:20;18925:1;18914:9;18910:17;18903:47;18967:131;19093:4;18967:131;:::i;:::-;18959:139;;18857:248;;;:::o;19111:419::-;;19315:2;19304:9;19300:18;19292:26;;19364:9;19358:4;19354:20;19350:1;19339:9;19335:17;19328:47;19392:131;19518:4;19392:131;:::i;:::-;19384:139;;19282:248;;;:::o;19536:419::-;;19740:2;19729:9;19725:18;19717:26;;19789:9;19783:4;19779:20;19775:1;19764:9;19760:17;19753:47;19817:131;19943:4;19817:131;:::i;:::-;19809:139;;19707:248;;;:::o;19961:419::-;;20165:2;20154:9;20150:18;20142:26;;20214:9;20208:4;20204:20;20200:1;20189:9;20185:17;20178:47;20242:131;20368:4;20242:131;:::i;:::-;20234:139;;20132:248;;;:::o;20386:419::-;;20590:2;20579:9;20575:18;20567:26;;20639:9;20633:4;20629:20;20625:1;20614:9;20610:17;20603:47;20667:131;20793:4;20667:131;:::i;:::-;20659:139;;20557:248;;;:::o;20811:419::-;;21015:2;21004:9;21000:18;20992:26;;21064:9;21058:4;21054:20;21050:1;21039:9;21035:17;21028:47;21092:131;21218:4;21092:131;:::i;:::-;21084:139;;20982:248;;;:::o;21236:419::-;;21440:2;21429:9;21425:18;21417:26;;21489:9;21483:4;21479:20;21475:1;21464:9;21460:17;21453:47;21517:131;21643:4;21517:131;:::i;:::-;21509:139;;21407:248;;;:::o;21661:419::-;;21865:2;21854:9;21850:18;21842:26;;21914:9;21908:4;21904:20;21900:1;21889:9;21885:17;21878:47;21942:131;22068:4;21942:131;:::i;:::-;21934:139;;21832:248;;;:::o;22086:419::-;;22290:2;22279:9;22275:18;22267:26;;22339:9;22333:4;22329:20;22325:1;22314:9;22310:17;22303:47;22367:131;22493:4;22367:131;:::i;:::-;22359:139;;22257:248;;;:::o;22511:419::-;;22715:2;22704:9;22700:18;22692:26;;22764:9;22758:4;22754:20;22750:1;22739:9;22735:17;22728:47;22792:131;22918:4;22792:131;:::i;:::-;22784:139;;22682:248;;;:::o;22936:419::-;;23140:2;23129:9;23125:18;23117:26;;23189:9;23183:4;23179:20;23175:1;23164:9;23160:17;23153:47;23217:131;23343:4;23217:131;:::i;:::-;23209:139;;23107:248;;;:::o;23361:419::-;;23565:2;23554:9;23550:18;23542:26;;23614:9;23608:4;23604:20;23600:1;23589:9;23585:17;23578:47;23642:131;23768:4;23642:131;:::i;:::-;23634:139;;23532:248;;;:::o;23786:419::-;;23990:2;23979:9;23975:18;23967:26;;24039:9;24033:4;24029:20;24025:1;24014:9;24010:17;24003:47;24067:131;24193:4;24067:131;:::i;:::-;24059:139;;23957:248;;;:::o;24211:419::-;;24415:2;24404:9;24400:18;24392:26;;24464:9;24458:4;24454:20;24450:1;24439:9;24435:17;24428:47;24492:131;24618:4;24492:131;:::i;:::-;24484:139;;24382:248;;;:::o;24636:419::-;;24840:2;24829:9;24825:18;24817:26;;24889:9;24883:4;24879:20;24875:1;24864:9;24860:17;24853:47;24917:131;25043:4;24917:131;:::i;:::-;24909:139;;24807:248;;;:::o;25061:419::-;;25265:2;25254:9;25250:18;25242:26;;25314:9;25308:4;25304:20;25300:1;25289:9;25285:17;25278:47;25342:131;25468:4;25342:131;:::i;:::-;25334:139;;25232:248;;;:::o;25486:419::-;;25690:2;25679:9;25675:18;25667:26;;25739:9;25733:4;25729:20;25725:1;25714:9;25710:17;25703:47;25767:131;25893:4;25767:131;:::i;:::-;25759:139;;25657:248;;;:::o;25911:419::-;;26115:2;26104:9;26100:18;26092:26;;26164:9;26158:4;26154:20;26150:1;26139:9;26135:17;26128:47;26192:131;26318:4;26192:131;:::i;:::-;26184:139;;26082:248;;;:::o;26336:419::-;;26540:2;26529:9;26525:18;26517:26;;26589:9;26583:4;26579:20;26575:1;26564:9;26560:17;26553:47;26617:131;26743:4;26617:131;:::i;:::-;26609:139;;26507:248;;;:::o;26761:419::-;;26965:2;26954:9;26950:18;26942:26;;27014:9;27008:4;27004:20;27000:1;26989:9;26985:17;26978:47;27042:131;27168:4;27042:131;:::i;:::-;27034:139;;26932:248;;;:::o;27186:419::-;;27390:2;27379:9;27375:18;27367:26;;27439:9;27433:4;27429:20;27425:1;27414:9;27410:17;27403:47;27467:131;27593:4;27467:131;:::i;:::-;27459:139;;27357:248;;;:::o;27611:419::-;;27815:2;27804:9;27800:18;27792:26;;27864:9;27858:4;27854:20;27850:1;27839:9;27835:17;27828:47;27892:131;28018:4;27892:131;:::i;:::-;27884:139;;27782:248;;;:::o;28036:419::-;;28240:2;28229:9;28225:18;28217:26;;28289:9;28283:4;28279:20;28275:1;28264:9;28260:17;28253:47;28317:131;28443:4;28317:131;:::i;:::-;28309:139;;28207:248;;;:::o;28461:222::-;;28592:2;28581:9;28577:18;28569:26;;28605:71;28673:1;28662:9;28658:17;28649:6;28605:71;:::i;:::-;28559:124;;;;:::o;28689:348::-;;28856:2;28845:9;28841:18;28833:26;;28869:71;28937:1;28926:9;28922:17;28913:6;28869:71;:::i;:::-;28950:80;29026:2;29015:9;29011:18;29002:6;28950:80;:::i;:::-;28823:214;;;;;:::o;29043:332::-;;29202:2;29191:9;29187:18;29179:26;;29215:71;29283:1;29272:9;29268:17;29259:6;29215:71;:::i;:::-;29296:72;29364:2;29353:9;29349:18;29340:6;29296:72;:::i;:::-;29169:206;;;;;:::o;29381:283::-;;29447:2;29441:9;29431:19;;29489:4;29481:6;29477:17;29596:6;29584:10;29581:22;29560:18;29548:10;29545:34;29542:62;29539:2;;;29607:18;;:::i;:::-;29539:2;29647:10;29643:2;29636:22;29421:243;;;;:::o;29670:331::-;;29821:18;29813:6;29810:30;29807:2;;;29843:18;;:::i;:::-;29807:2;29928:4;29924:9;29917:4;29909:6;29905:17;29901:33;29893:41;;29989:4;29983;29979:15;29971:23;;29736:265;;;:::o;30007:332::-;;30159:18;30151:6;30148:30;30145:2;;;30181:18;;:::i;:::-;30145:2;30266:4;30262:9;30255:4;30247:6;30243:17;30239:33;30231:41;;30327:4;30321;30317:15;30309:23;;30074:265;;;:::o;30345:98::-;;30430:5;30424:12;30414:22;;30403:40;;;:::o;30449:99::-;;30535:5;30529:12;30519:22;;30508:40;;;:::o;30554:168::-;;30671:6;30666:3;30659:19;30711:4;30706:3;30702:14;30687:29;;30649:73;;;;:::o;30728:169::-;;30846:6;30841:3;30834:19;30886:4;30881:3;30877:14;30862:29;;30824:73;;;;:::o;30903:148::-;;31042:3;31027:18;;31017:34;;;;:::o;31057:305::-;;31116:20;31134:1;31116:20;:::i;:::-;31111:25;;31150:20;31168:1;31150:20;:::i;:::-;31145:25;;31304:1;31236:66;31232:74;31229:1;31226:81;31223:2;;;31310:18;;:::i;:::-;31223:2;31354:1;31351;31347:9;31340:16;;31101:261;;;;:::o;31368:185::-;;31425:20;31443:1;31425:20;:::i;:::-;31420:25;;31459:20;31477:1;31459:20;:::i;:::-;31454:25;;31498:1;31488:2;;31503:18;;:::i;:::-;31488:2;31545:1;31542;31538:9;31533:14;;31410:143;;;;:::o;31559:348::-;;31622:20;31640:1;31622:20;:::i;:::-;31617:25;;31656:20;31674:1;31656:20;:::i;:::-;31651:25;;31844:1;31776:66;31772:74;31769:1;31766:81;31761:1;31754:9;31747:17;31743:105;31740:2;;;31851:18;;:::i;:::-;31740:2;31899:1;31896;31892:9;31881:20;;31607:300;;;;:::o;31913:191::-;;31973:20;31991:1;31973:20;:::i;:::-;31968:25;;32007:20;32025:1;32007:20;:::i;:::-;32002:25;;32046:1;32043;32040:8;32037:2;;;32051:18;;:::i;:::-;32037:2;32096:1;32093;32089:9;32081:17;;31958:146;;;;:::o;32110:96::-;;32176:24;32194:5;32176:24;:::i;:::-;32165:35;;32155:51;;;:::o;32212:90::-;;32289:5;32282:13;32275:21;32264:32;;32254:48;;;:::o;32308:149::-;;32384:66;32377:5;32373:78;32362:89;;32352:105;;;:::o;32463:126::-;;32540:42;32533:5;32529:54;32518:65;;32508:81;;;:::o;32595:77::-;;32661:5;32650:16;;32640:32;;;:::o;32678:121::-;;32769:24;32787:5;32769:24;:::i;:::-;32756:37;;32746:53;;;:::o;32805:154::-;32889:6;32884:3;32879;32866:30;32951:1;32942:6;32937:3;32933:16;32926:27;32856:103;;;:::o;32965:307::-;33033:1;33043:113;33057:6;33054:1;33051:13;33043:113;;;33142:1;33137:3;33133:11;33127:18;33123:1;33118:3;33114:11;33107:39;33079:2;33076:1;33072:10;33067:15;;33043:113;;;33174:6;33171:1;33168:13;33165:2;;;33254:1;33245:6;33240:3;33236:16;33229:27;33165:2;33014:258;;;;:::o;33278:320::-;;33359:1;33353:4;33349:12;33339:22;;33406:1;33400:4;33396:12;33427:18;33417:2;;33483:4;33475:6;33471:17;33461:27;;33417:2;33545;33537:6;33534:14;33514:18;33511:38;33508:2;;;33564:18;;:::i;:::-;33508:2;33329:269;;;;:::o;33604:233::-;;33666:24;33684:5;33666:24;:::i;:::-;33657:33;;33712:66;33705:5;33702:77;33699:2;;;33782:18;;:::i;:::-;33699:2;33829:1;33822:5;33818:13;33811:20;;33647:190;;;:::o;33843:176::-;;33892:20;33910:1;33892:20;:::i;:::-;33887:25;;33926:20;33944:1;33926:20;:::i;:::-;33921:25;;33965:1;33955:2;;33970:18;;:::i;:::-;33955:2;34011:1;34008;34004:9;33999:14;;33877:142;;;;:::o;34025:180::-;34073:77;34070:1;34063:88;34170:4;34167:1;34160:15;34194:4;34191:1;34184:15;34211:180;34259:77;34256:1;34249:88;34356:4;34353:1;34346:15;34380:4;34377:1;34370:15;34397:180;34445:77;34442:1;34435:88;34542:4;34539:1;34532:15;34566:4;34563:1;34556:15;34583:180;34631:77;34628:1;34621:88;34728:4;34725:1;34718:15;34752:4;34749:1;34742:15;34769:102;;34861:2;34857:7;34852:2;34845:5;34841:14;34837:28;34827:38;;34817:54;;;:::o;34877:122::-;34950:24;34968:5;34950:24;:::i;:::-;34943:5;34940:35;34930:2;;34989:1;34986;34979:12;34930:2;34920:79;:::o;35005:116::-;35075:21;35090:5;35075:21;:::i;:::-;35068:5;35065:32;35055:2;;35111:1;35108;35101:12;35055:2;35045:76;:::o;35127:120::-;35199:23;35216:5;35199:23;:::i;:::-;35192:5;35189:34;35179:2;;35237:1;35234;35227:12;35179:2;35169:78;:::o;35253:122::-;35326:24;35344:5;35326:24;:::i;:::-;35319:5;35316:35;35306:2;;35365:1;35362;35355:12;35306:2;35296:79;:::o
Swarm Source
ipfs://9b8e08ed1ff3f801f3d2bca58030011e03910411e2b4947a16f6d752782f59c6
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.