Token HalfDead Zoo
Overview ERC-721
Total Supply:
60 HDZ
Holders:
13 addresses
Transfers:
-
Contract:
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HalfDeadZoo
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-07-19 */ /** *Submitted for verification at FtmScan.com on 2022-03-17 */ pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } 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); } 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; } 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); } 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); } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // SPDX-License-Identifier: MIT 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}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File contracts/eip/2981/IERC2981.sol /*** * ███████╗██╗██████╗ ██████╗ █████╗ █████╗ ██╗ * ██╔════╝██║██╔══██╗ ╚════██╗██╔══██╗██╔══██╗███║ * █████╗ ██║██████╔╝█████╗ █████╔╝╚██████║╚█████╔╝╚██║ * ██╔══╝ ██║██╔═══╝ ╚════╝██╔═══╝ ╚═══██║██╔══██╗ ██║ * ███████╗██║██║ ███████╗ █████╔╝╚█████╔╝ ██║ * ╚══════╝╚═╝╚═╝ ╚══════╝ ╚════╝ ╚════╝ ╚═╝ * Zach Burks, James Morgan, Blaine Malone, James Seibel, * "EIP-2981: NFT Royalty Standard," * Ethereum Improvement Proposals, no. 2981, September 2020. [Online serial]. * Available: https://eips.ethereum.org/EIPS/eip-2981. * * Minor edit on comments to mirror the rest of the interfaces * by @MaxFlowO2 on 29 Dec 2021 for v2.1 */ pragma solidity >=0.8.0 <0.9.0; /// /// @dev Interface for the NFT Royalty Standard /// interface IERC2981 is IERC165 { // ERC165 // royaltyInfo(uint256,uint256) => 0x2a55205a // IERC2981 => 0x2a55205a // @notice Called with the sale price to determine how much royalty // is owed and to whom. // @param _tokenId - the NFT asset queried for royalty information // @param _salePrice - the sale price of the NFT asset specified by _tokenId // @return receiver - address of who should be sent the royalty payment // @return royaltyAmount - the royalty payment amount for _salePrice // ERC165 datum royaltyInfo(uint256,uint256) => 0x2a55205a function royaltyInfo(uint256 _tokenId, uint256 _salePrice) external view returns (address receiver, uint256 royaltyAmount); } // File contracts/eip/2981/ERC2981Collection.sol /*** * ███████╗██████╗ ██████╗██████╗ █████╗ █████╗ ██╗ * ██╔════╝██╔══██╗██╔════╝╚════██╗██╔══██╗██╔══██╗███║ * █████╗ ██████╔╝██║ █████╔╝╚██████║╚█████╔╝╚██║ * ██╔══╝ ██╔══██╗██║ ██╔═══╝ ╚═══██║██╔══██╗ ██║ * ███████╗██║ ██║╚██████╗███████╗ █████╔╝╚█████╔╝ ██║ * ╚══════╝╚═╝ ╚═╝ ╚═════╝╚══════╝ ╚════╝ ╚════╝ ╚═╝ * * ██████╗ ██████╗ ██╗ ██╗ ███████╗ ██████╗████████╗██╗ ██████╗ ███╗ ██╗ * ██╔════╝██╔═══██╗██║ ██║ ██╔════╝██╔════╝╚══██╔══╝██║██╔═══██╗████╗ ██║ * ██║ ██║ ██║██║ ██║ █████╗ ██║ ██║ ██║██║ ██║██╔██╗ ██║ * ██║ ██║ ██║██║ ██║ ██╔══╝ ██║ ██║ ██║██║ ██║██║╚██╗██║ * ╚██████╗╚██████╔╝███████╗███████╗███████╗╚██████╗ ██║ ██║╚██████╔╝██║ ╚████║ * ╚═════╝ ╚═════╝ ╚══════╝╚══════╝╚══════╝ ╚═════╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ╚═══╝ * Written by MaxFlowO2, Senior Developer and Partner of G&M² Labs * Follow me on https://github.com/MaxflowO2 or Twitter @MaxFlowO2 * email: [email protected] */ pragma solidity >=0.8.0 <0.9.0; abstract contract ERC2981Collection is IERC2981 { address private royaltyAddress; uint256 private royaltyPermille; event royalatiesSet(uint value, address recipient); error UnauthorizedERC2981(); // Set to be internal function _setRoyalties function _setRoyalties(address _receiver, uint256 _permille) internal { if (_permille > 1001 || _permille <= 0) { revert UnauthorizedERC2981(); } royaltyAddress = _receiver; royaltyPermille = _permille; emit royalatiesSet(royaltyPermille, royaltyAddress); } // Override for royaltyInfo(uint256, uint256) function royaltyInfo( uint256 _tokenId, uint256 _salePrice ) external view override(IERC2981) returns ( address receiver, uint256 royaltyAmount ) { receiver = royaltyAddress; royaltyAmount = _salePrice * royaltyPermille / 1000; } } pragma solidity ^0.8.0; contract HalfDeadZoo is ERC721Enumerable, Ownable, ERC2981Collection { using Strings for uint256; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURIextended; constructor(string memory _name, string memory _symbol) ERC721(_name, _symbol) {} function setBaseURI(string memory baseURI_) external onlyOwner() { _baseURIextended = baseURI_; } function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } function cheatCode(uint256 tokenId, string memory _tokenURI) external onlyOwner virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } function _baseURI() internal view virtual override returns (string memory) { return _baseURIextended; } /// @notice Allows to set the royalties on the contract /// @dev This function in a real contract should be protected with a onlyOwner (or equivalent) modifier /// @param recipient the royalties recipient /// @param value royalties value (between 0 and 10000) function setRoyalties(address recipient, uint256 value) external onlyOwner virtual { _setRoyalties(recipient, value); } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: 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, return tokenURI. if (bytes(_tokenURI).length > 0) { return _tokenURI; } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString())); } function mint( uint256 _tokenId, string memory tokenURI_ ) external onlyOwner() { _mint(owner(), _tokenId); _setTokenURI(_tokenId, tokenURI_); } } // ( ͡° ͜ʖ ͡°)
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"UnauthorizedERC2981","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"}],"name":"royalatiesSet","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"cheatCode","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":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"string","name":"tokenURI_","type":"string"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"setRoyalties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200406938038062004069833981810160405281019062000037919062000291565b818181600090805190602001906200005192919062000163565b5080600190805190602001906200006a92919062000163565b5050506200008d620000816200009560201b60201c565b6200009d60201b60201c565b50506200049a565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200017190620003ab565b90600052602060002090601f016020900481019282620001955760008555620001e1565b82601f10620001b057805160ff1916838001178555620001e1565b82800160010185558215620001e1579182015b82811115620001e0578251825591602001919060010190620001c3565b5b509050620001f09190620001f4565b5090565b5b808211156200020f576000816000905550600101620001f5565b5090565b60006200022a62000224846200033f565b62000316565b9050828152602081018484840111156200024957620002486200047a565b5b6200025684828562000375565b509392505050565b600082601f83011262000276576200027562000475565b5b81516200028884826020860162000213565b91505092915050565b60008060408385031215620002ab57620002aa62000484565b5b600083015167ffffffffffffffff811115620002cc57620002cb6200047f565b5b620002da858286016200025e565b925050602083015167ffffffffffffffff811115620002fe57620002fd6200047f565b5b6200030c858286016200025e565b9150509250929050565b60006200032262000335565b9050620003308282620003e1565b919050565b6000604051905090565b600067ffffffffffffffff8211156200035d576200035c62000446565b5b620003688262000489565b9050602081019050919050565b60005b838110156200039557808201518184015260208101905062000378565b83811115620003a5576000848401525b50505050565b60006002820490506001821680620003c457607f821691505b60208210811415620003db57620003da62000417565b5b50919050565b620003ec8262000489565b810181811067ffffffffffffffff821117156200040e576200040d62000446565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b613bbf80620004aa6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c806370a08231116100c35780639922ffd11161007c5780639922ffd1146103d8578063a22cb465146103f4578063b88d4fde14610410578063c87b56dd1461042c578063e985e9c51461045c578063f2fde38b1461048c57610158565b806370a082311461032a578063715018a61461035a57806377097fc8146103645780638c7ea24b146103805780638da5cb5b1461039c57806395d89b41146103ba57610158565b80632a55205a116101155780632a55205a146102315780632f745c591461026257806342842e0e146102925780634f6ccce7146102ae57806355f804b3146102de5780636352211e146102fa57610158565b806301ffc9a71461015d57806306fdde031461018d578063081812fc146101ab578063095ea7b3146101db57806318160ddd146101f757806323b872dd14610215575b600080fd5b610177600480360381019061017291906128cd565b6104a8565b6040516101849190612e56565b60405180910390f35b610195610522565b6040516101a29190612e71565b60405180910390f35b6101c560048036038101906101c09190612970565b6105b4565b6040516101d29190612dc6565b60405180910390f35b6101f560048036038101906101f0919061288d565b610639565b005b6101ff610751565b60405161020c91906130f3565b60405180910390f35b61022f600480360381019061022a9190612777565b61075e565b005b61024b600480360381019061024691906129f9565b6107be565b604051610259929190612e2d565b60405180910390f35b61027c6004803603810190610277919061288d565b61080a565b60405161028991906130f3565b60405180910390f35b6102ac60048036038101906102a79190612777565b6108af565b005b6102c860048036038101906102c39190612970565b6108cf565b6040516102d591906130f3565b60405180910390f35b6102f860048036038101906102f39190612927565b610940565b005b610314600480360381019061030f9190612970565b6109d6565b6040516103219190612dc6565b60405180910390f35b610344600480360381019061033f919061270a565b610a88565b60405161035191906130f3565b60405180910390f35b610362610b40565b005b61037e6004803603810190610379919061299d565b610bc8565b005b61039a6004803603810190610395919061288d565b610c63565b005b6103a4610ced565b6040516103b19190612dc6565b60405180910390f35b6103c2610d17565b6040516103cf9190612e71565b60405180910390f35b6103f260048036038101906103ed919061299d565b610da9565b005b61040e6004803603810190610409919061284d565b610e99565b005b61042a600480360381019061042591906127ca565b61101a565b005b61044660048036038101906104419190612970565b61107c565b6040516104539190612e71565b60405180910390f35b61047660048036038101906104719190612737565b6111ce565b6040516104839190612e56565b60405180910390f35b6104a660048036038101906104a1919061270a565b611262565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061051b575061051a8261135a565b5b9050919050565b606060008054610531906133cc565b80601f016020809104026020016040519081016040528092919081815260200182805461055d906133cc565b80156105aa5780601f1061057f576101008083540402835291602001916105aa565b820191906000526020600020905b81548152906001019060200180831161058d57829003601f168201915b5050505050905090565b60006105bf8261143c565b6105fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105f590612ff3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610644826109d6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106ac90613093565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106d46114a8565b73ffffffffffffffffffffffffffffffffffffffff1614806107035750610702816106fd6114a8565b6111ce565b5b610742576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073990612f73565b60405180910390fd5b61074c83836114b0565b505050565b6000600880549050905090565b61076f6107696114a8565b82611569565b6107ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a5906130b3565b60405180910390fd5b6107b9838383611647565b505050565b600080600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1691506103e8600c54846107f79190613288565b6108019190613257565b90509250929050565b600061081583610a88565b8210610856576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084d90612e93565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6108ca8383836040518060200160405280600081525061101a565b505050565b60006108d9610751565b821061091a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610911906130d3565b60405180910390fd5b6008828154811061092e5761092d613565565b5b90600052602060002001549050919050565b6109486114a8565b73ffffffffffffffffffffffffffffffffffffffff16610966610ced565b73ffffffffffffffffffffffffffffffffffffffff16146109bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b390613033565b60405180910390fd5b80600e90805190602001906109d292919061251e565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7690612fb3565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090612f93565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b486114a8565b73ffffffffffffffffffffffffffffffffffffffff16610b66610ced565b73ffffffffffffffffffffffffffffffffffffffff1614610bbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb390613033565b60405180910390fd5b610bc660006118a3565b565b610bd06114a8565b73ffffffffffffffffffffffffffffffffffffffff16610bee610ced565b73ffffffffffffffffffffffffffffffffffffffff1614610c44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3b90613033565b60405180910390fd5b610c55610c4f610ced565b83611969565b610c5f8282611b37565b5050565b610c6b6114a8565b73ffffffffffffffffffffffffffffffffffffffff16610c89610ced565b73ffffffffffffffffffffffffffffffffffffffff1614610cdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd690613033565b60405180910390fd5b610ce98282611bab565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d26906133cc565b80601f0160208091040260200160405190810160405280929190818152602001828054610d52906133cc565b8015610d9f5780601f10610d7457610100808354040283529160200191610d9f565b820191906000526020600020905b815481529060010190602001808311610d8257829003601f168201915b5050505050905090565b610db16114a8565b73ffffffffffffffffffffffffffffffffffffffff16610dcf610ced565b73ffffffffffffffffffffffffffffffffffffffff1614610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c90613033565b60405180910390fd5b610e2e8261143c565b610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490613013565b60405180910390fd5b80600d60008481526020019081526020016000209080519060200190610e9492919061251e565b505050565b610ea16114a8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0690612f33565b60405180910390fd5b8060056000610f1c6114a8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610fc96114a8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161100e9190612e56565b60405180910390a35050565b61102b6110256114a8565b83611569565b61106a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611061906130b3565b60405180910390fd5b61107684848484611c9c565b50505050565b60606110878261143c565b6110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd90613073565b60405180910390fd5b6000600d600084815260200190815260200160002080546110e6906133cc565b80601f0160208091040260200160405190810160405280929190818152602001828054611112906133cc565b801561115f5780601f106111345761010080835404028352916020019161115f565b820191906000526020600020905b81548152906001019060200180831161114257829003601f168201915b505050505090506000611170611cf8565b90506000815114156111865781925050506111c9565b60008251111561119a5781925050506111c9565b806111a485611d8a565b6040516020016111b5929190612da2565b604051602081830303815290604052925050505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61126a6114a8565b73ffffffffffffffffffffffffffffffffffffffff16611288610ced565b73ffffffffffffffffffffffffffffffffffffffff16146112de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d590613033565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590612ed3565b60405180910390fd5b611357816118a3565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061142557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611435575061143482611eeb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611523836109d6565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006115748261143c565b6115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa90612f53565b60405180910390fd5b60006115be836109d6565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061162d57508373ffffffffffffffffffffffffffffffffffffffff16611615846105b4565b73ffffffffffffffffffffffffffffffffffffffff16145b8061163e575061163d81856111ce565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611667826109d6565b73ffffffffffffffffffffffffffffffffffffffff16146116bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116b490613053565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561172d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172490612f13565b60405180910390fd5b611738838383611f55565b6117436000826114b0565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461179391906132e2565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117ea9190613201565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090612fd3565b60405180910390fd5b6119e28161143c565b15611a22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1990612ef3565b60405180910390fd5b611a2e60008383611f55565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a7e9190613201565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b611b408261143c565b611b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7690613013565b60405180910390fd5b80600d60008481526020019081526020016000209080519060200190611ba692919061251e565b505050565b6103e9811180611bbc575060008111155b15611bf3576040517f0c7ee8ff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600c819055507f184520f1b2fcf99836992b9a6b987afc0e4867f26a00ef438c654318763fe1e3600c54600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16604051611c9092919061310e565b60405180910390a15050565b611ca7848484611647565b611cb384848484612069565b611cf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce990612eb3565b60405180910390fd5b50505050565b6060600e8054611d07906133cc565b80601f0160208091040260200160405190810160405280929190818152602001828054611d33906133cc565b8015611d805780601f10611d5557610100808354040283529160200191611d80565b820191906000526020600020905b815481529060010190602001808311611d6357829003601f168201915b5050505050905090565b60606000821415611dd2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611ee6565b600082905060005b60008214611e04578080611ded9061342f565b915050600a82611dfd9190613257565b9150611dda565b60008167ffffffffffffffff811115611e2057611e1f613594565b5b6040519080825280601f01601f191660200182016040528015611e525781602001600182028036833780820191505090505b5090505b60008514611edf57600182611e6b91906132e2565b9150600a85611e7a9190613478565b6030611e869190613201565b60f81b818381518110611e9c57611e9b613565565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ed89190613257565b9450611e56565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611f60838383612200565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611fa357611f9e81612205565b611fe2565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611fe157611fe0838261224e565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561202557612020816123bb565b612064565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461206357612062828261248c565b5b5b505050565b600061208a8473ffffffffffffffffffffffffffffffffffffffff1661250b565b156121f3578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026120b36114a8565b8786866040518563ffffffff1660e01b81526004016120d59493929190612de1565b602060405180830381600087803b1580156120ef57600080fd5b505af192505050801561212057506040513d601f19601f8201168201806040525081019061211d91906128fa565b60015b6121a3573d8060008114612150576040519150601f19603f3d011682016040523d82523d6000602084013e612155565b606091505b5060008151141561219b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219290612eb3565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506121f8565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161225b84610a88565b61226591906132e2565b905060006007600084815260200190815260200160002054905081811461234a576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506123cf91906132e2565b90506000600960008481526020019081526020016000205490506000600883815481106123ff576123fe613565565b5b90600052602060002001549050806008838154811061242157612420613565565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806124705761246f613536565b5b6001900381819060005260206000200160009055905550505050565b600061249783610a88565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b82805461252a906133cc565b90600052602060002090601f01602090048101928261254c5760008555612593565b82601f1061256557805160ff1916838001178555612593565b82800160010185558215612593579182015b82811115612592578251825591602001919060010190612577565b5b5090506125a091906125a4565b5090565b5b808211156125bd5760008160009055506001016125a5565b5090565b60006125d46125cf8461315c565b613137565b9050828152602081018484840111156125f0576125ef6135c8565b5b6125fb84828561338a565b509392505050565b60006126166126118461318d565b613137565b905082815260208101848484011115612632576126316135c8565b5b61263d84828561338a565b509392505050565b60008135905061265481613b2d565b92915050565b60008135905061266981613b44565b92915050565b60008135905061267e81613b5b565b92915050565b60008151905061269381613b5b565b92915050565b600082601f8301126126ae576126ad6135c3565b5b81356126be8482602086016125c1565b91505092915050565b600082601f8301126126dc576126db6135c3565b5b81356126ec848260208601612603565b91505092915050565b60008135905061270481613b72565b92915050565b6000602082840312156127205761271f6135d2565b5b600061272e84828501612645565b91505092915050565b6000806040838503121561274e5761274d6135d2565b5b600061275c85828601612645565b925050602061276d85828601612645565b9150509250929050565b6000806000606084860312156127905761278f6135d2565b5b600061279e86828701612645565b93505060206127af86828701612645565b92505060406127c0868287016126f5565b9150509250925092565b600080600080608085870312156127e4576127e36135d2565b5b60006127f287828801612645565b945050602061280387828801612645565b9350506040612814878288016126f5565b925050606085013567ffffffffffffffff811115612835576128346135cd565b5b61284187828801612699565b91505092959194509250565b60008060408385031215612864576128636135d2565b5b600061287285828601612645565b92505060206128838582860161265a565b9150509250929050565b600080604083850312156128a4576128a36135d2565b5b60006128b285828601612645565b92505060206128c3858286016126f5565b9150509250929050565b6000602082840312156128e3576128e26135d2565b5b60006128f18482850161266f565b91505092915050565b6000602082840312156129105761290f6135d2565b5b600061291e84828501612684565b91505092915050565b60006020828403121561293d5761293c6135d2565b5b600082013567ffffffffffffffff81111561295b5761295a6135cd565b5b612967848285016126c7565b91505092915050565b600060208284031215612986576129856135d2565b5b6000612994848285016126f5565b91505092915050565b600080604083850312156129b4576129b36135d2565b5b60006129c2858286016126f5565b925050602083013567ffffffffffffffff8111156129e3576129e26135cd565b5b6129ef858286016126c7565b9150509250929050565b60008060408385031215612a1057612a0f6135d2565b5b6000612a1e858286016126f5565b9250506020612a2f858286016126f5565b9150509250929050565b612a4281613316565b82525050565b612a5181613328565b82525050565b6000612a62826131be565b612a6c81856131d4565b9350612a7c818560208601613399565b612a85816135d7565b840191505092915050565b6000612a9b826131c9565b612aa581856131e5565b9350612ab5818560208601613399565b612abe816135d7565b840191505092915050565b6000612ad4826131c9565b612ade81856131f6565b9350612aee818560208601613399565b80840191505092915050565b6000612b07602b836131e5565b9150612b12826135e8565b604082019050919050565b6000612b2a6032836131e5565b9150612b3582613637565b604082019050919050565b6000612b4d6026836131e5565b9150612b5882613686565b604082019050919050565b6000612b70601c836131e5565b9150612b7b826136d5565b602082019050919050565b6000612b936024836131e5565b9150612b9e826136fe565b604082019050919050565b6000612bb66019836131e5565b9150612bc18261374d565b602082019050919050565b6000612bd9602c836131e5565b9150612be482613776565b604082019050919050565b6000612bfc6038836131e5565b9150612c07826137c5565b604082019050919050565b6000612c1f602a836131e5565b9150612c2a82613814565b604082019050919050565b6000612c426029836131e5565b9150612c4d82613863565b604082019050919050565b6000612c656020836131e5565b9150612c70826138b2565b602082019050919050565b6000612c88602c836131e5565b9150612c93826138db565b604082019050919050565b6000612cab602c836131e5565b9150612cb68261392a565b604082019050919050565b6000612cce6020836131e5565b9150612cd982613979565b602082019050919050565b6000612cf16029836131e5565b9150612cfc826139a2565b604082019050919050565b6000612d14602f836131e5565b9150612d1f826139f1565b604082019050919050565b6000612d376021836131e5565b9150612d4282613a40565b604082019050919050565b6000612d5a6031836131e5565b9150612d6582613a8f565b604082019050919050565b6000612d7d602c836131e5565b9150612d8882613ade565b604082019050919050565b612d9c81613380565b82525050565b6000612dae8285612ac9565b9150612dba8284612ac9565b91508190509392505050565b6000602082019050612ddb6000830184612a39565b92915050565b6000608082019050612df66000830187612a39565b612e036020830186612a39565b612e106040830185612d93565b8181036060830152612e228184612a57565b905095945050505050565b6000604082019050612e426000830185612a39565b612e4f6020830184612d93565b9392505050565b6000602082019050612e6b6000830184612a48565b92915050565b60006020820190508181036000830152612e8b8184612a90565b905092915050565b60006020820190508181036000830152612eac81612afa565b9050919050565b60006020820190508181036000830152612ecc81612b1d565b9050919050565b60006020820190508181036000830152612eec81612b40565b9050919050565b60006020820190508181036000830152612f0c81612b63565b9050919050565b60006020820190508181036000830152612f2c81612b86565b9050919050565b60006020820190508181036000830152612f4c81612ba9565b9050919050565b60006020820190508181036000830152612f6c81612bcc565b9050919050565b60006020820190508181036000830152612f8c81612bef565b9050919050565b60006020820190508181036000830152612fac81612c12565b9050919050565b60006020820190508181036000830152612fcc81612c35565b9050919050565b60006020820190508181036000830152612fec81612c58565b9050919050565b6000602082019050818103600083015261300c81612c7b565b9050919050565b6000602082019050818103600083015261302c81612c9e565b9050919050565b6000602082019050818103600083015261304c81612cc1565b9050919050565b6000602082019050818103600083015261306c81612ce4565b9050919050565b6000602082019050818103600083015261308c81612d07565b9050919050565b600060208201905081810360008301526130ac81612d2a565b9050919050565b600060208201905081810360008301526130cc81612d4d565b9050919050565b600060208201905081810360008301526130ec81612d70565b9050919050565b60006020820190506131086000830184612d93565b92915050565b60006040820190506131236000830185612d93565b6131306020830184612a39565b9392505050565b6000613141613152565b905061314d82826133fe565b919050565b6000604051905090565b600067ffffffffffffffff82111561317757613176613594565b5b613180826135d7565b9050602081019050919050565b600067ffffffffffffffff8211156131a8576131a7613594565b5b6131b1826135d7565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061320c82613380565b915061321783613380565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561324c5761324b6134a9565b5b828201905092915050565b600061326282613380565b915061326d83613380565b92508261327d5761327c6134d8565b5b828204905092915050565b600061329382613380565b915061329e83613380565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132d7576132d66134a9565b5b828202905092915050565b60006132ed82613380565b91506132f883613380565b92508282101561330b5761330a6134a9565b5b828203905092915050565b600061332182613360565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133b757808201518184015260208101905061339c565b838111156133c6576000848401525b50505050565b600060028204905060018216806133e457607f821691505b602082108114156133f8576133f7613507565b5b50919050565b613407826135d7565b810181811067ffffffffffffffff8211171561342657613425613594565b5b80604052505050565b600061343a82613380565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561346d5761346c6134a9565b5b600182019050919050565b600061348382613380565b915061348e83613380565b92508261349e5761349d6134d8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b613b3681613316565b8114613b4157600080fd5b50565b613b4d81613328565b8114613b5857600080fd5b50565b613b6481613334565b8114613b6f57600080fd5b50565b613b7b81613380565b8114613b8657600080fd5b5056fea26469706673582212201bdc822752f00f13e7e9aaa83c12a825cc3b5bd9be9f07ccfa79fdc4dd7a829f64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c48616c6644656164205a6f6f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000348445a0000000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000c48616c6644656164205a6f6f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000348445a0000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): HalfDead Zoo
Arg [1] : _symbol (string): HDZ
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [3] : 48616c6644656164205a6f6f0000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 48445a0000000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
47898:2666:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36290:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24292:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25851:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25374:411;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36930:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26741:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47588:268;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;36598:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27151:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37120:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48328:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23986:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23716:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2445:94;;;:::i;:::-;;50337:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49377:133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1794:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24461:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48706:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26144:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27407:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49530:785;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26510:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2694:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36290:224;36392:4;36431:35;36416:50;;;:11;:50;;;;:90;;;;36470:36;36494:11;36470:23;:36::i;:::-;36416:90;36409:97;;36290:224;;;:::o;24292:100::-;24346:13;24379:5;24372:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24292:100;:::o;25851:221::-;25927:7;25955:16;25963:7;25955;:16::i;:::-;25947:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26040:15;:24;26056:7;26040:24;;;;;;;;;;;;;;;;;;;;;26033:31;;25851:221;;;:::o;25374:411::-;25455:13;25471:23;25486:7;25471:14;:23::i;:::-;25455:39;;25519:5;25513:11;;:2;:11;;;;25505:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;25613:5;25597:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;25622:37;25639:5;25646:12;:10;:12::i;:::-;25622:16;:37::i;:::-;25597:62;25575:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;25756:21;25765:2;25769:7;25756:8;:21::i;:::-;25444:341;25374:411;;:::o;36930:113::-;36991:7;37018:10;:17;;;;37011:24;;36930:113;:::o;26741:339::-;26936:41;26955:12;:10;:12::i;:::-;26969:7;26936:18;:41::i;:::-;26928:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27044:28;27054:4;27060:2;27064:7;27044:9;:28::i;:::-;26741:339;;;:::o;47588:268::-;47710:16;47733:21;47778:14;;;;;;;;;;;47767:25;;47846:4;47828:15;;47815:10;:28;;;;:::i;:::-;:35;;;;:::i;:::-;47799:51;;47588:268;;;;;:::o;36598:256::-;36695:7;36731:23;36748:5;36731:16;:23::i;:::-;36723:5;:31;36715:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;36820:12;:19;36833:5;36820:19;;;;;;;;;;;;;;;:26;36840:5;36820:26;;;;;;;;;;;;36813:33;;36598:256;;;;:::o;27151:185::-;27289:39;27306:4;27312:2;27316:7;27289:39;;;;;;;;;;;;:16;:39::i;:::-;27151:185;;;:::o;37120:233::-;37195:7;37231:30;:28;:30::i;:::-;37223:5;:38;37215:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;37328:10;37339:5;37328:17;;;;;;;;:::i;:::-;;;;;;;;;;37321:24;;37120:233;;;:::o;48328:119::-;2025:12;:10;:12::i;:::-;2014:23;;:7;:5;:7::i;:::-;:23;;;2006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48427:8:::1;48408:16;:27;;;;;;;;;;;;:::i;:::-;;48328:119:::0;:::o;23986:239::-;24058:7;24078:13;24094:7;:16;24102:7;24094:16;;;;;;;;;;;;;;;;;;;;;24078:32;;24146:1;24129:19;;:5;:19;;;;24121:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24212:5;24205:12;;;23986:239;;;:::o;23716:208::-;23788:7;23833:1;23816:19;;:5;:19;;;;23808:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;23900:9;:16;23910:5;23900:16;;;;;;;;;;;;;;;;23893:23;;23716:208;;;:::o;2445:94::-;2025:12;:10;:12::i;:::-;2014:23;;:7;:5;:7::i;:::-;:23;;;2006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2510:21:::1;2528:1;2510:9;:21::i;:::-;2445:94::o:0;50337:214::-;2025:12;:10;:12::i;:::-;2014:23;;:7;:5;:7::i;:::-;:23;;;2006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50467:24:::1;50473:7;:5;:7::i;:::-;50482:8;50467:5;:24::i;:::-;50506:33;50519:8;50529:9;50506:12;:33::i;:::-;50337:214:::0;;:::o;49377:133::-;2025:12;:10;:12::i;:::-;2014:23;;:7;:5;:7::i;:::-;:23;;;2006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;49471:31:::1;49485:9;49496:5;49471:13;:31::i;:::-;49377:133:::0;;:::o;1794:87::-;1840:7;1867:6;;;;;;;;;;;1860:13;;1794:87;:::o;24461:104::-;24517:13;24550:7;24543:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24461:104;:::o;48706:234::-;2025:12;:10;:12::i;:::-;2014:23;;:7;:5;:7::i;:::-;:23;;;2006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48817:16:::1;48825:7;48817;:16::i;:::-;48809:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48919:9;48897:10;:19;48908:7;48897:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;48706:234:::0;;:::o;26144:295::-;26259:12;:10;:12::i;:::-;26247:24;;:8;:24;;;;26239:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26359:8;26314:18;:32;26333:12;:10;:12::i;:::-;26314:32;;;;;;;;;;;;;;;:42;26347:8;26314:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26412:8;26383:48;;26398:12;:10;:12::i;:::-;26383:48;;;26422:8;26383:48;;;;;;:::i;:::-;;;;;;;;26144:295;;:::o;27407:328::-;27582:41;27601:12;:10;:12::i;:::-;27615:7;27582:18;:41::i;:::-;27574:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27688:39;27702:4;27708:2;27712:7;27721:5;27688:13;:39::i;:::-;27407:328;;;;:::o;49530:785::-;49603:13;49641:16;49649:7;49641;:16::i;:::-;49633:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;49726:23;49752:10;:19;49763:7;49752:19;;;;;;;;;;;49726:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49786:18;49807:10;:8;:10::i;:::-;49786:31;;49935:1;49919:4;49913:18;:23;49909:80;;;49964:9;49957:16;;;;;;49909:80;50083:1;50063:9;50057:23;:27;50053:84;;;50112:9;50105:16;;;;;;50053:84;50277:4;50283:18;:7;:16;:18::i;:::-;50260:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;50246:57;;;;49530:785;;;;:::o;26510:164::-;26607:4;26631:18;:25;26650:5;26631:25;;;;;;;;;;;;;;;:35;26657:8;26631:35;;;;;;;;;;;;;;;;;;;;;;;;;26624:42;;26510:164;;;;:::o;2694:192::-;2025:12;:10;:12::i;:::-;2014:23;;:7;:5;:7::i;:::-;:23;;;2006:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2803:1:::1;2783:22;;:8;:22;;;;2775:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2859:19;2869:8;2859:9;:19::i;:::-;2694:192:::0;:::o;23347:305::-;23449:4;23501:25;23486:40;;;:11;:40;;;;:105;;;;23558:33;23543:48;;;:11;:48;;;;23486:105;:158;;;;23608:36;23632:11;23608:23;:36::i;:::-;23486:158;23466:178;;23347:305;;;:::o;29245:127::-;29310:4;29362:1;29334:30;;:7;:16;29342:7;29334:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29327:37;;29245:127;;;:::o;637:98::-;690:7;717:10;710:17;;637:98;:::o;33227:174::-;33329:2;33302:15;:24;33318:7;33302:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33385:7;33381:2;33347:46;;33356:23;33371:7;33356:14;:23::i;:::-;33347:46;;;;;;;;;;;;33227:174;;:::o;29539:348::-;29632:4;29657:16;29665:7;29657;:16::i;:::-;29649:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29733:13;29749:23;29764:7;29749:14;:23::i;:::-;29733:39;;29802:5;29791:16;;:7;:16;;;:51;;;;29835:7;29811:31;;:20;29823:7;29811:11;:20::i;:::-;:31;;;29791:51;:87;;;;29846:32;29863:5;29870:7;29846:16;:32::i;:::-;29791:87;29783:96;;;29539:348;;;;:::o;32531:578::-;32690:4;32663:31;;:23;32678:7;32663:14;:23::i;:::-;:31;;;32655:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;32773:1;32759:16;;:2;:16;;;;32751:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;32829:39;32850:4;32856:2;32860:7;32829:20;:39::i;:::-;32933:29;32950:1;32954:7;32933:8;:29::i;:::-;32994:1;32975:9;:15;32985:4;32975:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33023:1;33006:9;:13;33016:2;33006:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33054:2;33035:7;:16;33043:7;33035:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33093:7;33089:2;33074:27;;33083:4;33074:27;;;;;;;;;;;;32531:578;;;:::o;2894:173::-;2950:16;2969:6;;;;;;;;;;;2950:25;;2995:8;2986:6;;:17;;;;;;;;;;;;;;;;;;3050:8;3019:40;;3040:8;3019:40;;;;;;;;;;;;2939:128;2894:173;:::o;31223:382::-;31317:1;31303:16;;:2;:16;;;;31295:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31376:16;31384:7;31376;:16::i;:::-;31375:17;31367:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31438:45;31467:1;31471:2;31475:7;31438:20;:45::i;:::-;31513:1;31496:9;:13;31506:2;31496:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;31544:2;31525:7;:16;31533:7;31525:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;31589:7;31585:2;31564:33;;31581:1;31564:33;;;;;;;;;;;;31223:382;;:::o;48467:227::-;48571:16;48579:7;48571;:16::i;:::-;48563:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;48673:9;48651:10;:19;48662:7;48651:19;;;;;;;;;;;:31;;;;;;;;;;;;:::i;:::-;;48467:227;;:::o;47247:286::-;47338:4;47326:9;:16;:34;;;;47359:1;47346:9;:14;;47326:34;47322:81;;;47376:21;;;;;;;;;;;;;;47322:81;47426:9;47409:14;;:26;;;;;;;;;;;;;;;;;;47460:9;47442:15;:27;;;;47481:46;47495:15;;47512:14;;;;;;;;;;;47481:46;;;;;;;:::i;:::-;;;;;;;;47247:286;;:::o;28617:315::-;28774:28;28784:4;28790:2;28794:7;28774:9;:28::i;:::-;28821:48;28844:4;28850:2;28854:7;28863:5;28821:22;:48::i;:::-;28813:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;28617:315;;;;:::o;48960:125::-;49020:13;49057:16;49050:23;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48960:125;:::o;19332:723::-;19388:13;19618:1;19609:5;:10;19605:53;;;19636:10;;;;;;;;;;;;;;;;;;;;;19605:53;19668:12;19683:5;19668:20;;19699:14;19724:78;19739:1;19731:4;:9;19724:78;;19757:8;;;;;:::i;:::-;;;;19788:2;19780:10;;;;;:::i;:::-;;;19724:78;;;19812:19;19844:6;19834:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19812:39;;19862:154;19878:1;19869:5;:10;19862:154;;19906:1;19896:11;;;;;:::i;:::-;;;19973:2;19965:5;:10;;;;:::i;:::-;19952:2;:24;;;;:::i;:::-;19939:39;;19922:6;19929;19922:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;20002:2;19993:11;;;;;:::i;:::-;;;19862:154;;;20040:6;20026:21;;;;;19332:723;;;;:::o;21820:157::-;21905:4;21944:25;21929:40;;;:11;:40;;;;21922:47;;21820:157;;;:::o;37966:589::-;38110:45;38137:4;38143:2;38147:7;38110:26;:45::i;:::-;38188:1;38172:18;;:4;:18;;;38168:187;;;38207:40;38239:7;38207:31;:40::i;:::-;38168:187;;;38277:2;38269:10;;:4;:10;;;38265:90;;38296:47;38329:4;38335:7;38296:32;:47::i;:::-;38265:90;38168:187;38383:1;38369:16;;:2;:16;;;38365:183;;;38402:45;38439:7;38402:36;:45::i;:::-;38365:183;;;38475:4;38469:10;;:2;:10;;;38465:83;;38496:40;38524:2;38528:7;38496:27;:40::i;:::-;38465:83;38365:183;37966:589;;;:::o;33966:799::-;34121:4;34142:15;:2;:13;;;:15::i;:::-;34138:620;;;34194:2;34178:36;;;34215:12;:10;:12::i;:::-;34229:4;34235:7;34244:5;34178:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34174:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34437:1;34420:6;:13;:18;34416:272;;;34463:60;;;;;;;;;;:::i;:::-;;;;;;;;34416:272;34638:6;34632:13;34623:6;34619:2;34615:15;34608:38;34174:529;34311:41;;;34301:51;;;:6;:51;;;;34294:58;;;;;34138:620;34742:4;34735:11;;33966:799;;;;;;;:::o;35337:126::-;;;;:::o;39278:164::-;39382:10;:17;;;;39355:15;:24;39371:7;39355:24;;;;;;;;;;;:44;;;;39410:10;39426:7;39410:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39278:164;:::o;40069:988::-;40335:22;40385:1;40360:22;40377:4;40360:16;:22::i;:::-;:26;;;;:::i;:::-;40335:51;;40397:18;40418:17;:26;40436:7;40418:26;;;;;;;;;;;;40397:47;;40565:14;40551:10;:28;40547:328;;40596:19;40618:12;:18;40631:4;40618:18;;;;;;;;;;;;;;;:34;40637:14;40618:34;;;;;;;;;;;;40596:56;;40702:11;40669:12;:18;40682:4;40669:18;;;;;;;;;;;;;;;:30;40688:10;40669:30;;;;;;;;;;;:44;;;;40819:10;40786:17;:30;40804:11;40786:30;;;;;;;;;;;:43;;;;40581:294;40547:328;40971:17;:26;40989:7;40971:26;;;;;;;;;;;40964:33;;;41015:12;:18;41028:4;41015:18;;;;;;;;;;;;;;;:34;41034:14;41015:34;;;;;;;;;;;41008:41;;;40150:907;;40069:988;;:::o;41352:1079::-;41605:22;41650:1;41630:10;:17;;;;:21;;;;:::i;:::-;41605:46;;41662:18;41683:15;:24;41699:7;41683:24;;;;;;;;;;;;41662:45;;42034:19;42056:10;42067:14;42056:26;;;;;;;;:::i;:::-;;;;;;;;;;42034:48;;42120:11;42095:10;42106;42095:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42231:10;42200:15;:28;42216:11;42200:28;;;;;;;;;;;:41;;;;42372:15;:24;42388:7;42372:24;;;;;;;;;;;42365:31;;;42407:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;41423:1008;;;41352:1079;:::o;38856:221::-;38941:14;38958:20;38975:2;38958:16;:20::i;:::-;38941:37;;39016:7;38989:12;:16;39002:2;38989:16;;;;;;;;;;;;;;;:24;39006:6;38989:24;;;;;;;;;;;:34;;;;39063:6;39034:17;:26;39052:7;39034:26;;;;;;;;;;;:35;;;;38930:147;38856:221;;:::o;11746:387::-;11806:4;12014:12;12081:7;12069:20;12061:28;;12124:1;12117:4;:8;12110:15;;;11746:387;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:654::-;7236:6;7244;7293:2;7281:9;7272:7;7268:23;7264:32;7261:119;;;7299:79;;:::i;:::-;7261:119;7419:1;7444:53;7489:7;7480:6;7469:9;7465:22;7444:53;:::i;:::-;7434:63;;7390:117;7574:2;7563:9;7559:18;7546:32;7605:18;7597:6;7594:30;7591:117;;;7627:79;;:::i;:::-;7591:117;7732:63;7787:7;7778:6;7767:9;7763:22;7732:63;:::i;:::-;7722:73;;7517:288;7158:654;;;;;:::o;7818:474::-;7886:6;7894;7943:2;7931:9;7922:7;7918:23;7914:32;7911:119;;;7949:79;;:::i;:::-;7911:119;8069:1;8094:53;8139:7;8130:6;8119:9;8115:22;8094:53;:::i;:::-;8084:63;;8040:117;8196:2;8222:53;8267:7;8258:6;8247:9;8243:22;8222:53;:::i;:::-;8212:63;;8167:118;7818:474;;;;;:::o;8298:118::-;8385:24;8403:5;8385:24;:::i;:::-;8380:3;8373:37;8298:118;;:::o;8422:109::-;8503:21;8518:5;8503:21;:::i;:::-;8498:3;8491:34;8422:109;;:::o;8537:360::-;8623:3;8651:38;8683:5;8651:38;:::i;:::-;8705:70;8768:6;8763:3;8705:70;:::i;:::-;8698:77;;8784:52;8829:6;8824:3;8817:4;8810:5;8806:16;8784:52;:::i;:::-;8861:29;8883:6;8861:29;:::i;:::-;8856:3;8852:39;8845:46;;8627:270;8537:360;;;;:::o;8903:364::-;8991:3;9019:39;9052:5;9019:39;:::i;:::-;9074:71;9138:6;9133:3;9074:71;:::i;:::-;9067:78;;9154:52;9199:6;9194:3;9187:4;9180:5;9176:16;9154:52;:::i;:::-;9231:29;9253:6;9231:29;:::i;:::-;9226:3;9222:39;9215:46;;8995:272;8903:364;;;;:::o;9273:377::-;9379:3;9407:39;9440:5;9407:39;:::i;:::-;9462:89;9544:6;9539:3;9462:89;:::i;:::-;9455:96;;9560:52;9605:6;9600:3;9593:4;9586:5;9582:16;9560:52;:::i;:::-;9637:6;9632:3;9628:16;9621:23;;9383:267;9273:377;;;;:::o;9656:366::-;9798:3;9819:67;9883:2;9878:3;9819:67;:::i;:::-;9812:74;;9895:93;9984:3;9895:93;:::i;:::-;10013:2;10008:3;10004:12;9997:19;;9656:366;;;:::o;10028:::-;10170:3;10191:67;10255:2;10250:3;10191:67;:::i;:::-;10184:74;;10267:93;10356:3;10267:93;:::i;:::-;10385:2;10380:3;10376:12;10369:19;;10028:366;;;:::o;10400:::-;10542:3;10563:67;10627:2;10622:3;10563:67;:::i;:::-;10556:74;;10639:93;10728:3;10639:93;:::i;:::-;10757:2;10752:3;10748:12;10741:19;;10400:366;;;:::o;10772:::-;10914:3;10935:67;10999:2;10994:3;10935:67;:::i;:::-;10928:74;;11011:93;11100:3;11011:93;:::i;:::-;11129:2;11124:3;11120:12;11113:19;;10772:366;;;:::o;11144:::-;11286:3;11307:67;11371:2;11366:3;11307:67;:::i;:::-;11300:74;;11383:93;11472:3;11383:93;:::i;:::-;11501:2;11496:3;11492:12;11485:19;;11144:366;;;:::o;11516:::-;11658:3;11679:67;11743:2;11738:3;11679:67;:::i;:::-;11672:74;;11755:93;11844:3;11755:93;:::i;:::-;11873:2;11868:3;11864:12;11857:19;;11516:366;;;:::o;11888:::-;12030:3;12051:67;12115:2;12110:3;12051:67;:::i;:::-;12044:74;;12127:93;12216:3;12127:93;:::i;:::-;12245:2;12240:3;12236:12;12229:19;;11888:366;;;:::o;12260:::-;12402:3;12423:67;12487:2;12482:3;12423:67;:::i;:::-;12416:74;;12499:93;12588:3;12499:93;:::i;:::-;12617:2;12612:3;12608:12;12601:19;;12260:366;;;:::o;12632:::-;12774:3;12795:67;12859:2;12854:3;12795:67;:::i;:::-;12788:74;;12871:93;12960:3;12871:93;:::i;:::-;12989:2;12984:3;12980:12;12973:19;;12632:366;;;:::o;13004:::-;13146:3;13167:67;13231:2;13226:3;13167:67;:::i;:::-;13160:74;;13243:93;13332:3;13243:93;:::i;:::-;13361:2;13356:3;13352:12;13345:19;;13004:366;;;:::o;13376:::-;13518:3;13539:67;13603:2;13598:3;13539:67;:::i;:::-;13532:74;;13615:93;13704:3;13615:93;:::i;:::-;13733:2;13728:3;13724:12;13717:19;;13376:366;;;:::o;13748:::-;13890:3;13911:67;13975:2;13970:3;13911:67;:::i;:::-;13904:74;;13987:93;14076:3;13987:93;:::i;:::-;14105:2;14100:3;14096:12;14089:19;;13748:366;;;:::o;14120:::-;14262:3;14283:67;14347:2;14342:3;14283:67;:::i;:::-;14276:74;;14359:93;14448:3;14359:93;:::i;:::-;14477:2;14472:3;14468:12;14461:19;;14120:366;;;:::o;14492:::-;14634:3;14655:67;14719:2;14714:3;14655:67;:::i;:::-;14648:74;;14731:93;14820:3;14731:93;:::i;:::-;14849:2;14844:3;14840:12;14833:19;;14492:366;;;:::o;14864:::-;15006:3;15027:67;15091:2;15086:3;15027:67;:::i;:::-;15020:74;;15103:93;15192:3;15103:93;:::i;:::-;15221:2;15216:3;15212:12;15205:19;;14864:366;;;:::o;15236:::-;15378:3;15399:67;15463:2;15458:3;15399:67;:::i;:::-;15392:74;;15475:93;15564:3;15475:93;:::i;:::-;15593:2;15588:3;15584:12;15577:19;;15236:366;;;:::o;15608:::-;15750:3;15771:67;15835:2;15830:3;15771:67;:::i;:::-;15764:74;;15847:93;15936:3;15847:93;:::i;:::-;15965:2;15960:3;15956:12;15949:19;;15608:366;;;:::o;15980:::-;16122:3;16143:67;16207:2;16202:3;16143:67;:::i;:::-;16136:74;;16219:93;16308:3;16219:93;:::i;:::-;16337:2;16332:3;16328:12;16321:19;;15980:366;;;:::o;16352:::-;16494:3;16515:67;16579:2;16574:3;16515:67;:::i;:::-;16508:74;;16591:93;16680:3;16591:93;:::i;:::-;16709:2;16704:3;16700:12;16693:19;;16352:366;;;:::o;16724:118::-;16811:24;16829:5;16811:24;:::i;:::-;16806:3;16799:37;16724:118;;:::o;16848:435::-;17028:3;17050:95;17141:3;17132:6;17050:95;:::i;:::-;17043:102;;17162:95;17253:3;17244:6;17162:95;:::i;:::-;17155:102;;17274:3;17267:10;;16848:435;;;;;:::o;17289:222::-;17382:4;17420:2;17409:9;17405:18;17397:26;;17433:71;17501:1;17490:9;17486:17;17477:6;17433:71;:::i;:::-;17289:222;;;;:::o;17517:640::-;17712:4;17750:3;17739:9;17735:19;17727:27;;17764:71;17832:1;17821:9;17817:17;17808:6;17764:71;:::i;:::-;17845:72;17913:2;17902:9;17898:18;17889:6;17845:72;:::i;:::-;17927;17995:2;17984:9;17980:18;17971:6;17927:72;:::i;:::-;18046:9;18040:4;18036:20;18031:2;18020:9;18016:18;18009:48;18074:76;18145:4;18136:6;18074:76;:::i;:::-;18066:84;;17517:640;;;;;;;:::o;18163:332::-;18284:4;18322:2;18311:9;18307:18;18299:26;;18335:71;18403:1;18392:9;18388:17;18379:6;18335:71;:::i;:::-;18416:72;18484:2;18473:9;18469:18;18460:6;18416:72;:::i;:::-;18163:332;;;;;:::o;18501:210::-;18588:4;18626:2;18615:9;18611:18;18603:26;;18639:65;18701:1;18690:9;18686:17;18677:6;18639:65;:::i;:::-;18501:210;;;;:::o;18717:313::-;18830:4;18868:2;18857:9;18853:18;18845:26;;18917:9;18911:4;18907:20;18903:1;18892:9;18888:17;18881:47;18945:78;19018:4;19009:6;18945:78;:::i;:::-;18937:86;;18717:313;;;;:::o;19036:419::-;19202:4;19240:2;19229:9;19225:18;19217:26;;19289:9;19283:4;19279:20;19275:1;19264:9;19260:17;19253:47;19317:131;19443:4;19317:131;:::i;:::-;19309:139;;19036:419;;;:::o;19461:::-;19627:4;19665:2;19654:9;19650:18;19642:26;;19714:9;19708:4;19704:20;19700:1;19689:9;19685:17;19678:47;19742:131;19868:4;19742:131;:::i;:::-;19734:139;;19461:419;;;:::o;19886:::-;20052:4;20090:2;20079:9;20075:18;20067:26;;20139:9;20133:4;20129:20;20125:1;20114:9;20110:17;20103:47;20167:131;20293:4;20167:131;:::i;:::-;20159:139;;19886:419;;;:::o;20311:::-;20477:4;20515:2;20504:9;20500:18;20492:26;;20564:9;20558:4;20554:20;20550:1;20539:9;20535:17;20528:47;20592:131;20718:4;20592:131;:::i;:::-;20584:139;;20311:419;;;:::o;20736:::-;20902:4;20940:2;20929:9;20925:18;20917:26;;20989:9;20983:4;20979:20;20975:1;20964:9;20960:17;20953:47;21017:131;21143:4;21017:131;:::i;:::-;21009:139;;20736:419;;;:::o;21161:::-;21327:4;21365:2;21354:9;21350:18;21342:26;;21414:9;21408:4;21404:20;21400:1;21389:9;21385:17;21378:47;21442:131;21568:4;21442:131;:::i;:::-;21434:139;;21161:419;;;:::o;21586:::-;21752:4;21790:2;21779:9;21775:18;21767:26;;21839:9;21833:4;21829:20;21825:1;21814:9;21810:17;21803:47;21867:131;21993:4;21867:131;:::i;:::-;21859:139;;21586:419;;;:::o;22011:::-;22177:4;22215:2;22204:9;22200:18;22192:26;;22264:9;22258:4;22254:20;22250:1;22239:9;22235:17;22228:47;22292:131;22418:4;22292:131;:::i;:::-;22284:139;;22011:419;;;:::o;22436:::-;22602:4;22640:2;22629:9;22625:18;22617:26;;22689:9;22683:4;22679:20;22675:1;22664:9;22660:17;22653:47;22717:131;22843:4;22717:131;:::i;:::-;22709:139;;22436:419;;;:::o;22861:::-;23027:4;23065:2;23054:9;23050:18;23042:26;;23114:9;23108:4;23104:20;23100:1;23089:9;23085:17;23078:47;23142:131;23268:4;23142:131;:::i;:::-;23134:139;;22861:419;;;:::o;23286:::-;23452:4;23490:2;23479:9;23475:18;23467:26;;23539:9;23533:4;23529:20;23525:1;23514:9;23510:17;23503:47;23567:131;23693:4;23567:131;:::i;:::-;23559:139;;23286:419;;;:::o;23711:::-;23877:4;23915:2;23904:9;23900:18;23892:26;;23964:9;23958:4;23954:20;23950:1;23939:9;23935:17;23928:47;23992:131;24118:4;23992:131;:::i;:::-;23984:139;;23711:419;;;:::o;24136:::-;24302:4;24340:2;24329:9;24325:18;24317:26;;24389:9;24383:4;24379:20;24375:1;24364:9;24360:17;24353:47;24417:131;24543:4;24417:131;:::i;:::-;24409:139;;24136:419;;;:::o;24561:::-;24727:4;24765:2;24754:9;24750:18;24742:26;;24814:9;24808:4;24804:20;24800:1;24789:9;24785:17;24778:47;24842:131;24968:4;24842:131;:::i;:::-;24834:139;;24561:419;;;:::o;24986:::-;25152:4;25190:2;25179:9;25175:18;25167:26;;25239:9;25233:4;25229:20;25225:1;25214:9;25210:17;25203:47;25267:131;25393:4;25267:131;:::i;:::-;25259:139;;24986:419;;;:::o;25411:::-;25577:4;25615:2;25604:9;25600:18;25592:26;;25664:9;25658:4;25654:20;25650:1;25639:9;25635:17;25628:47;25692:131;25818:4;25692:131;:::i;:::-;25684:139;;25411:419;;;:::o;25836:::-;26002:4;26040:2;26029:9;26025:18;26017:26;;26089:9;26083:4;26079:20;26075:1;26064:9;26060:17;26053:47;26117:131;26243:4;26117:131;:::i;:::-;26109:139;;25836:419;;;:::o;26261:::-;26427:4;26465:2;26454:9;26450:18;26442:26;;26514:9;26508:4;26504:20;26500:1;26489:9;26485:17;26478:47;26542:131;26668:4;26542:131;:::i;:::-;26534:139;;26261:419;;;:::o;26686:::-;26852:4;26890:2;26879:9;26875:18;26867:26;;26939:9;26933:4;26929:20;26925:1;26914:9;26910:17;26903:47;26967:131;27093:4;26967:131;:::i;:::-;26959:139;;26686:419;;;:::o;27111:222::-;27204:4;27242:2;27231:9;27227:18;27219:26;;27255:71;27323:1;27312:9;27308:17;27299:6;27255:71;:::i;:::-;27111:222;;;;:::o;27339:332::-;27460:4;27498:2;27487:9;27483:18;27475:26;;27511:71;27579:1;27568:9;27564:17;27555:6;27511:71;:::i;:::-;27592:72;27660:2;27649:9;27645:18;27636:6;27592:72;:::i;:::-;27339:332;;;;;:::o;27677:129::-;27711:6;27738:20;;:::i;:::-;27728:30;;27767:33;27795:4;27787:6;27767:33;:::i;:::-;27677:129;;;:::o;27812:75::-;27845:6;27878:2;27872:9;27862:19;;27812:75;:::o;27893:307::-;27954:4;28044:18;28036:6;28033:30;28030:56;;;28066:18;;:::i;:::-;28030:56;28104:29;28126:6;28104:29;:::i;:::-;28096:37;;28188:4;28182;28178:15;28170:23;;27893:307;;;:::o;28206:308::-;28268:4;28358:18;28350:6;28347:30;28344:56;;;28380:18;;:::i;:::-;28344:56;28418:29;28440:6;28418:29;:::i;:::-;28410:37;;28502:4;28496;28492:15;28484:23;;28206:308;;;:::o;28520:98::-;28571:6;28605:5;28599:12;28589:22;;28520:98;;;:::o;28624:99::-;28676:6;28710:5;28704:12;28694:22;;28624:99;;;:::o;28729:168::-;28812:11;28846:6;28841:3;28834:19;28886:4;28881:3;28877:14;28862:29;;28729:168;;;;:::o;28903:169::-;28987:11;29021:6;29016:3;29009:19;29061:4;29056:3;29052:14;29037:29;;28903:169;;;;:::o;29078:148::-;29180:11;29217:3;29202:18;;29078:148;;;;:::o;29232:305::-;29272:3;29291:20;29309:1;29291:20;:::i;:::-;29286:25;;29325:20;29343:1;29325:20;:::i;:::-;29320:25;;29479:1;29411:66;29407:74;29404:1;29401:81;29398:107;;;29485:18;;:::i;:::-;29398:107;29529:1;29526;29522:9;29515:16;;29232:305;;;;:::o;29543:185::-;29583:1;29600:20;29618:1;29600:20;:::i;:::-;29595:25;;29634:20;29652:1;29634:20;:::i;:::-;29629:25;;29673:1;29663:35;;29678:18;;:::i;:::-;29663:35;29720:1;29717;29713:9;29708:14;;29543:185;;;;:::o;29734:348::-;29774:7;29797:20;29815:1;29797:20;:::i;:::-;29792:25;;29831:20;29849:1;29831:20;:::i;:::-;29826:25;;30019:1;29951:66;29947:74;29944:1;29941:81;29936:1;29929:9;29922:17;29918:105;29915:131;;;30026:18;;:::i;:::-;29915:131;30074:1;30071;30067:9;30056:20;;29734:348;;;;:::o;30088:191::-;30128:4;30148:20;30166:1;30148:20;:::i;:::-;30143:25;;30182:20;30200:1;30182:20;:::i;:::-;30177:25;;30221:1;30218;30215:8;30212:34;;;30226:18;;:::i;:::-;30212:34;30271:1;30268;30264:9;30256:17;;30088:191;;;;:::o;30285:96::-;30322:7;30351:24;30369:5;30351:24;:::i;:::-;30340:35;;30285:96;;;:::o;30387:90::-;30421:7;30464:5;30457:13;30450:21;30439:32;;30387:90;;;:::o;30483:149::-;30519:7;30559:66;30552:5;30548:78;30537:89;;30483:149;;;:::o;30638:126::-;30675:7;30715:42;30708:5;30704:54;30693:65;;30638:126;;;:::o;30770:77::-;30807:7;30836:5;30825:16;;30770:77;;;:::o;30853:154::-;30937:6;30932:3;30927;30914:30;30999:1;30990:6;30985:3;30981:16;30974:27;30853:154;;;:::o;31013:307::-;31081:1;31091:113;31105:6;31102:1;31099:13;31091:113;;;31190:1;31185:3;31181:11;31175:18;31171:1;31166:3;31162:11;31155:39;31127:2;31124:1;31120:10;31115:15;;31091:113;;;31222:6;31219:1;31216:13;31213:101;;;31302:1;31293:6;31288:3;31284:16;31277:27;31213:101;31062:258;31013:307;;;:::o;31326:320::-;31370:6;31407:1;31401:4;31397:12;31387:22;;31454:1;31448:4;31444:12;31475:18;31465:81;;31531:4;31523:6;31519:17;31509:27;;31465:81;31593:2;31585:6;31582:14;31562:18;31559:38;31556:84;;;31612:18;;:::i;:::-;31556:84;31377:269;31326:320;;;:::o;31652:281::-;31735:27;31757:4;31735:27;:::i;:::-;31727:6;31723:40;31865:6;31853:10;31850:22;31829:18;31817:10;31814:34;31811:62;31808:88;;;31876:18;;:::i;:::-;31808:88;31916:10;31912:2;31905:22;31695:238;31652:281;;:::o;31939:233::-;31978:3;32001:24;32019:5;32001:24;:::i;:::-;31992:33;;32047:66;32040:5;32037:77;32034:103;;;32117:18;;:::i;:::-;32034:103;32164:1;32157:5;32153:13;32146:20;;31939:233;;;:::o;32178:176::-;32210:1;32227:20;32245:1;32227:20;:::i;:::-;32222:25;;32261:20;32279:1;32261:20;:::i;:::-;32256:25;;32300:1;32290:35;;32305:18;;:::i;:::-;32290:35;32346:1;32343;32339:9;32334:14;;32178:176;;;;:::o;32360:180::-;32408:77;32405:1;32398:88;32505:4;32502:1;32495:15;32529:4;32526:1;32519:15;32546:180;32594:77;32591:1;32584:88;32691:4;32688:1;32681:15;32715:4;32712:1;32705:15;32732:180;32780:77;32777:1;32770:88;32877:4;32874:1;32867:15;32901:4;32898:1;32891:15;32918:180;32966:77;32963:1;32956:88;33063:4;33060:1;33053:15;33087:4;33084:1;33077:15;33104:180;33152:77;33149:1;33142:88;33249:4;33246:1;33239:15;33273:4;33270:1;33263:15;33290:180;33338:77;33335:1;33328:88;33435:4;33432:1;33425:15;33459:4;33456:1;33449:15;33476:117;33585:1;33582;33575:12;33599:117;33708:1;33705;33698:12;33722:117;33831:1;33828;33821:12;33845:117;33954:1;33951;33944:12;33968:102;34009:6;34060:2;34056:7;34051:2;34044:5;34040:14;34036:28;34026:38;;33968:102;;;:::o;34076:230::-;34216:34;34212:1;34204:6;34200:14;34193:58;34285:13;34280:2;34272:6;34268:15;34261:38;34076:230;:::o;34312:237::-;34452:34;34448:1;34440:6;34436:14;34429:58;34521:20;34516:2;34508:6;34504:15;34497:45;34312:237;:::o;34555:225::-;34695:34;34691:1;34683:6;34679:14;34672:58;34764:8;34759:2;34751:6;34747:15;34740:33;34555:225;:::o;34786:178::-;34926:30;34922:1;34914:6;34910:14;34903:54;34786:178;:::o;34970:223::-;35110:34;35106:1;35098:6;35094:14;35087:58;35179:6;35174:2;35166:6;35162:15;35155:31;34970:223;:::o;35199:175::-;35339:27;35335:1;35327:6;35323:14;35316:51;35199:175;:::o;35380:231::-;35520:34;35516:1;35508:6;35504:14;35497:58;35589:14;35584:2;35576:6;35572:15;35565:39;35380:231;:::o;35617:243::-;35757:34;35753:1;35745:6;35741:14;35734:58;35826:26;35821:2;35813:6;35809:15;35802:51;35617:243;:::o;35866:229::-;36006:34;36002:1;35994:6;35990:14;35983:58;36075:12;36070:2;36062:6;36058:15;36051:37;35866:229;:::o;36101:228::-;36241:34;36237:1;36229:6;36225:14;36218:58;36310:11;36305:2;36297:6;36293:15;36286:36;36101:228;:::o;36335:182::-;36475:34;36471:1;36463:6;36459:14;36452:58;36335:182;:::o;36523:231::-;36663:34;36659:1;36651:6;36647:14;36640:58;36732:14;36727:2;36719:6;36715:15;36708:39;36523:231;:::o;36760:::-;36900:34;36896:1;36888:6;36884:14;36877:58;36969:14;36964:2;36956:6;36952:15;36945:39;36760:231;:::o;36997:182::-;37137:34;37133:1;37125:6;37121:14;37114:58;36997:182;:::o;37185:228::-;37325:34;37321:1;37313:6;37309:14;37302:58;37394:11;37389:2;37381:6;37377:15;37370:36;37185:228;:::o;37419:234::-;37559:34;37555:1;37547:6;37543:14;37536:58;37628:17;37623:2;37615:6;37611:15;37604:42;37419:234;:::o;37659:220::-;37799:34;37795:1;37787:6;37783:14;37776:58;37868:3;37863:2;37855:6;37851:15;37844:28;37659:220;:::o;37885:236::-;38025:34;38021:1;38013:6;38009:14;38002:58;38094:19;38089:2;38081:6;38077:15;38070:44;37885:236;:::o;38127:231::-;38267:34;38263:1;38255:6;38251:14;38244:58;38336:14;38331:2;38323:6;38319:15;38312:39;38127:231;:::o;38364:122::-;38437:24;38455:5;38437:24;:::i;:::-;38430:5;38427:35;38417:63;;38476:1;38473;38466:12;38417:63;38364:122;:::o;38492:116::-;38562:21;38577:5;38562:21;:::i;:::-;38555:5;38552:32;38542:60;;38598:1;38595;38588:12;38542:60;38492:116;:::o;38614:120::-;38686:23;38703:5;38686:23;:::i;:::-;38679:5;38676:34;38666:62;;38724:1;38721;38714:12;38666:62;38614:120;:::o;38740:122::-;38813:24;38831:5;38813:24;:::i;:::-;38806:5;38803:35;38793:63;;38852:1;38849;38842:12;38793:63;38740:122;:::o
Swarm Source
ipfs://1bdc822752f00f13e7e9aaa83c12a825cc3b5bd9be9f07ccfa79fdc4dd7a829f