Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
595 SLP
Holders
279
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 SLPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Sleepwalkers
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-10-24 */ // SPDX-License-Identifier: MIT // written by 0xInuarashi || https://twitter.com/0xInuarashi || Inuarashi#1234 (Discord) pragma solidity ^0.8.0; // ability to future-switch between transfer hook yield vs claim loop yield /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } /** * @dev 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); } } /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } /** * @title 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); } /** * @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); } /** * @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 {} } /** * @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); } 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(); } } contract Sleepwalkers is ERC721Enumerable, Ownable { uint public maxTokens = 8888; uint public mintPrice = 0.0888 ether; uint public maxMintsPerTx = 10; mapping(uint => uint) public muleSquadUsedForMint; string internal baseTokenURI; string internal baseTokenURI_EXT; address public mulesquadAddress; address public cyberkongzAddress; address public anonymiceAddress; IERC721 Mulesquad; IERC721 Cyberkongz; IERC721 Anonymice; event Mint(address indexed to, uint tokenId); constructor() ERC721("Sleepwalkers", "SLP") {} function withdrawEther() public onlyOwner { payable(msg.sender).transfer(address(this).balance); } modifier onlySender { require(msg.sender == tx.origin, "No smart contracts!"); _; } function setMulesquad(address address_) public onlyOwner { mulesquadAddress = address_; Mulesquad = IERC721(address_); } function setCyberkongz(address address_) public onlyOwner { cyberkongzAddress = address_; Cyberkongz = IERC721(address_); } function setAnonymice(address address_) public onlyOwner { anonymiceAddress = address_; Anonymice = IERC721(address_); } // Owner Mint function ownerMint(address address_, uint amount_) public onlyOwner { require(maxTokens >= totalSupply() + amount_, "Not enough tokens remaining!"); for (uint i = 0; i < amount_; i++) { uint _mintId = totalSupply() + 1; // iterate from 1 _mint(address_, _mintId); emit Mint(address_, _mintId); } } // Mint with Token bool public claimEnabled; uint public claimTime; uint public claimMinted; modifier publicClaiming { require(claimEnabled && block.timestamp >= claimTime, "Public Claiming is not available!"); _; } function setClaimEnabled(bool bool_, uint claimTime_) public onlyOwner { claimEnabled = bool_; claimTime = claimTime_; } function claim(uint tokenId_) public onlySender publicClaiming { require(msg.sender == Mulesquad.ownerOf(tokenId_), "You do not own this Mulesquad!"); require(maxTokens > totalSupply(), "No more remaining tokens left!"); require(muleSquadUsedForMint[tokenId_] == 0, "This token was already used for claiming!"); muleSquadUsedForMint[tokenId_]++; claimMinted++; uint _mintId = totalSupply() + 1; // iterate from 1 _mint(msg.sender, _mintId); emit Mint(msg.sender, _mintId); } // Whitelisted Minting bool public whitelistMintEnabled; uint public whitelistMintTime; uint public whitelistHasMinted; modifier whitelistMinting { require(whitelistMintEnabled && block.timestamp >= whitelistMintTime, "Whitelisted Minting is not yet available!"); _; } function setWhitelistMintingStatus(bool bool_, uint mintTime_) public onlyOwner { whitelistMintEnabled = bool_; whitelistMintTime = mintTime_; } function whitelistMint(uint amount_) public payable onlySender whitelistMinting { require(Anonymice.balanceOf(msg.sender) > 0 || Cyberkongz.balanceOf(msg.sender) > 0 || Mulesquad.balanceOf(msg.sender) > 0, "You do not have a Mulesquad, Anonymice, or Cyberkongz!"); require(maxMintsPerTx >= amount_, "Over maximum mints per Tx!"); require(maxTokens >= totalSupply() + amount_, "Not enough remaining tokens left!"); require(msg.value == mintPrice * amount_, "Invalid value sent!"); whitelistHasMinted += amount_; for (uint i = 0; i < amount_; i++) { uint _mintId = totalSupply() + 1; // iterate from 1 _mint(msg.sender, _mintId); emit Mint(msg.sender, _mintId); } } // Public Minting bool public publicMintEnabled; uint public publicMintTime; uint public publicHasMinted; modifier publicMinting { require(publicMintEnabled && block.timestamp >= publicMintTime, "Public Minting is not yet enabled!"); _; } function setPublicMintingStatus(bool bool_, uint mintTime_) public onlyOwner { publicMintEnabled = bool_; publicMintTime = mintTime_; } function mint(uint amount_) public payable onlySender publicMinting { require(maxMintsPerTx >= amount_, "Over maximum mints per Tx!"); require(maxTokens >= totalSupply() + amount_, "Not enough remaining tokens left!"); require(msg.value == mintPrice * amount_, "Invalid value sent!"); publicHasMinted += amount_; for (uint i = 0; i < amount_; i++) { uint _mintId = totalSupply() + 1; // iterate from 1 _mint(msg.sender, _mintId); emit Mint(msg.sender, _mintId); } } // General NFT Administration function setBaseTokenURI(string memory uri_) external onlyOwner { baseTokenURI = uri_; } function setBaseTokenURI_EXT(string memory ext_) external onlyOwner { baseTokenURI_EXT = ext_; } function tokenURI(uint tokenId_) public view override returns (string memory) { require(_exists(tokenId_), "Query for non-existent token!"); return string(abi.encodePacked(baseTokenURI, Strings.toString(tokenId_), baseTokenURI_EXT)); } function walletOfOwner(address address_) public view returns (uint[] memory) { uint _balance = balanceOf(address_); // get balance of address uint[] memory _tokenIds = new uint[](_balance); // initialize array for (uint i = 0; i < _balance; i++) { _tokenIds[i] = tokenOfOwnerByIndex(address_, i); } return _tokenIds; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"anonymiceAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cyberkongzAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintsPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"muleSquadUsedForMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mulesquadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"},{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicHasMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setAnonymice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"ext_","type":"string"}],"name":"setBaseTokenURI_EXT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"},{"internalType":"uint256","name":"claimTime_","type":"uint256"}],"name":"setClaimEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setCyberkongz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"setMulesquad","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"},{"internalType":"uint256","name":"mintTime_","type":"uint256"}],"name":"setPublicMintingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"bool_","type":"bool"},{"internalType":"uint256","name":"mintTime_","type":"uint256"}],"name":"setWhitelistMintingStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"address_","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistHasMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount_","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMintTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawEther","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526122b8600b5567013b7b21280e0000600c55600a600d553480156200002857600080fd5b50604080518082018252600c81526b536c65657077616c6b65727360a01b6020808301918252835180850190945260038452620534c560ec1b908401528151919291620000789160009162000107565b5080516200008e90600190602084019062000107565b505050620000ab620000a5620000b160201b60201c565b620000b5565b620001ea565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011590620001ad565b90600052602060002090601f01602090048101928262000139576000855562000184565b82601f106200015457805160ff191683800117855562000184565b8280016001018555821562000184579182015b828111156200018457825182559160200191906001019062000167565b506200019292915062000196565b5090565b5b8082111562000192576000815560010162000197565b600181811c90821680620001c257607f821691505b60208210811415620001e457634e487b7160e01b600052602260045260246000fd5b50919050565b612e7580620001fa6000396000f3fe6080604052600436106102ae5760003560e01c806369d77a1911610175578063b150c008116100dc578063e831574211610095578063f240ab9b1161006f578063f240ab9b1461082b578063f2fde38b14610858578063f4cda47714610878578063f518a0fa1461088e57600080fd5b8063e8315742146107ac578063e985e9c5146107c2578063eee6fa161461080b57600080fd5b8063b150c00814610700578063b88d4fde14610720578063ba725a4d14610740578063c87b56dd14610756578063ca87201114610776578063dc30158b1461079657600080fd5b80638da5cb5b1161012e5780638da5cb5b1461066457806395d89b4114610682578063a0712d6814610697578063a0c3f308146106aa578063a22cb465146106ca578063a8f72e12146106ea57600080fd5b806369d77a19146105cd5780636caede3d146105ed57806370a0823114610607578063715018a6146106275780637362377b1461063c578063868ff4a21461065157600080fd5b80632f745c5911610219578063484b973c116101d2578063484b973c146105215780634f6ccce71461054157806359025d0b146105615780635e403472146105815780636352211e146105975780636817c76c146105b757600080fd5b80632f745c591461045457806330176e1314610474578063379607f51461049457806340e82dbe146104b457806342842e0e146104d4578063438b6300146104f457600080fd5b80630f4161aa1161026b5780630f4161aa146103a457806314716ac8146103be57806318160ddd146103de57806323b872dd146103fd57806327b3bf111461041d5780632866ed211461043357600080fd5b806301ffc9a7146102b357806302ffaed1146102e857806306fdde031461030a5780630748004b1461032c578063081812fc14610364578063095ea7b314610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612906565b6108a4565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612940565b6108cf565b005b34801561031657600080fd5b5061031f610919565b6040516102df9190612b35565b34801561033857600080fd5b5060125461034c906001600160a01b031681565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061034c61037f366004612989565b6109ab565b34801561039057600080fd5b5061030861039f3660046128be565b610a40565b3480156103b057600080fd5b50601c546102d39060ff1681565b3480156103ca57600080fd5b5060135461034c906001600160a01b031681565b3480156103ea57600080fd5b506008545b6040519081526020016102df565b34801561040957600080fd5b506103086104183660046127c8565b610b56565b34801561042957600080fd5b506103ef60175481565b34801561043f57600080fd5b506016546102d390600160a01b900460ff1681565b34801561046057600080fd5b506103ef61046f3660046128be565b610b87565b34801561048057600080fd5b5061030861048f366004612940565b610c1d565b3480156104a057600080fd5b506103086104af366004612989565b610c5a565b3480156104c057600080fd5b5060115461034c906001600160a01b031681565b3480156104e057600080fd5b506103086104ef3660046127c8565b610f04565b34801561050057600080fd5b5061051461050f36600461274e565b610f1f565b6040516102df9190612af1565b34801561052d57600080fd5b5061030861053c3660046128be565b610fc1565b34801561054d57600080fd5b506103ef61055c366004612989565b6110c1565b34801561056d57600080fd5b5061030861057c3660046128ea565b611154565b34801561058d57600080fd5b506103ef601d5481565b3480156105a357600080fd5b5061034c6105b2366004612989565b611195565b3480156105c357600080fd5b506103ef600c5481565b3480156105d957600080fd5b506103086105e83660046128ea565b61120c565b3480156105f957600080fd5b506019546102d39060ff1681565b34801561061357600080fd5b506103ef61062236600461274e565b611258565b34801561063357600080fd5b506103086112df565b34801561064857600080fd5b50610308611315565b61030861065f366004612989565b61136e565b34801561067057600080fd5b50600a546001600160a01b031661034c565b34801561068e57600080fd5b5061031f611743565b6103086106a5366004612989565b611752565b3480156106b657600080fd5b506103086106c536600461274e565b611930565b3480156106d657600080fd5b506103086106e5366004612889565b611986565b3480156106f657600080fd5b506103ef601a5481565b34801561070c57600080fd5b5061030861071b36600461274e565b611a4b565b34801561072c57600080fd5b5061030861073b366004612809565b611aa1565b34801561074c57600080fd5b506103ef601b5481565b34801561076257600080fd5b5061031f610771366004612989565b611ad9565b34801561078257600080fd5b506103086107913660046128ea565b611b75565b3480156107a257600080fd5b506103ef600d5481565b3480156107b857600080fd5b506103ef600b5481565b3480156107ce57600080fd5b506102d36107dd36600461278f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561081757600080fd5b5061030861082636600461274e565b611bb6565b34801561083757600080fd5b506103ef610846366004612989565b600e6020526000908152604090205481565b34801561086457600080fd5b5061030861087336600461274e565b611c0c565b34801561088457600080fd5b506103ef60185481565b34801561089a57600080fd5b506103ef601e5481565b60006001600160e01b0319821663780e9d6360e01b14806108c957506108c982611ca4565b92915050565b600a546001600160a01b031633146109025760405162461bcd60e51b81526004016108f990612c08565b60405180910390fd5b805161091590601090602084019061262a565b5050565b60606000805461092890612d1c565b80601f016020809104026020016040519081016040528092919081815260200182805461095490612d1c565b80156109a15780601f10610976576101008083540402835291602001916109a1565b820191906000526020600020905b81548152906001019060200180831161098457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f9565b506000908152600460205260409020546001600160a01b031690565b6000610a4b82611195565b9050806001600160a01b0316836001600160a01b03161415610ab95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108f9565b336001600160a01b0382161480610ad55750610ad581336107dd565b610b475760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108f9565b610b518383611cf4565b505050565b610b603382611d62565b610b7c5760405162461bcd60e51b81526004016108f990612c3d565b610b51838383611e59565b6000610b9283611258565b8210610bf45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108f9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c475760405162461bcd60e51b81526004016108f990612c08565b805161091590600f90602084019061262a565b333214610c795760405162461bcd60e51b81526004016108f990612bdb565b601654600160a01b900460ff168015610c9457506017544210155b610cea5760405162461bcd60e51b815260206004820152602160248201527f5075626c696320436c61696d696e67206973206e6f7420617661696c61626c656044820152602160f81b60648201526084016108f9565b6014546040516331a9108f60e11b8152600481018390526001600160a01b0390911690636352211e9060240160206040518083038186803b158015610d2e57600080fd5b505afa158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d669190612772565b6001600160a01b0316336001600160a01b031614610dc65760405162461bcd60e51b815260206004820152601e60248201527f596f7520646f206e6f74206f776e2074686973204d756c65737175616421000060448201526064016108f9565b600854600b5411610e195760405162461bcd60e51b815260206004820152601e60248201527f4e6f206d6f72652072656d61696e696e6720746f6b656e73206c65667421000060448201526064016108f9565b6000818152600e602052604090205415610e875760405162461bcd60e51b815260206004820152602960248201527f5468697320746f6b656e2077617320616c7265616479207573656420666f7220604482015268636c61696d696e672160b81b60648201526084016108f9565b6000818152600e60205260408120805491610ea183612d57565b909155505060188054906000610eb683612d57565b91905055506000610ec660085490565b610ed1906001612c8e565b9050610edd3382612004565b6040518181523390600080516020612e208339815191529060200160405180910390a25050565b610b5183838360405180602001604052806000815250611aa1565b60606000610f2c83611258565b905060008167ffffffffffffffff811115610f4957610f49612dde565b604051908082528060200260200182016040528015610f72578160200160208202803683370190505b50905060005b82811015610fb957610f8a8582610b87565b828281518110610f9c57610f9c612dc8565b602090810291909101015280610fb181612d57565b915050610f78565b509392505050565b600a546001600160a01b03163314610feb5760405162461bcd60e51b81526004016108f990612c08565b80610ff560085490565b610fff9190612c8e565b600b5410156110505760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e67210000000060448201526064016108f9565b60005b81811015610b5157600061106660085490565b611071906001612c8e565b905061107d8482612004565b836001600160a01b0316600080516020612e20833981519152826040516110a691815260200190565b60405180910390a250806110b981612d57565b915050611053565b60006110cc60085490565b821061112f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108f9565b6008828154811061114257611142612dc8565b90600052602060002001549050919050565b600a546001600160a01b0316331461117e5760405162461bcd60e51b81526004016108f990612c08565b6019805460ff191692151592909217909155601a55565b6000818152600260205260408120546001600160a01b0316806108c95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108f9565b600a546001600160a01b031633146112365760405162461bcd60e51b81526004016108f990612c08565b60168054921515600160a01b0260ff60a01b1990931692909217909155601755565b60006001600160a01b0382166112c35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108f9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113095760405162461bcd60e51b81526004016108f990612c08565b6113136000612152565b565b600a546001600160a01b0316331461133f5760405162461bcd60e51b81526004016108f990612c08565b60405133904780156108fc02916000818181858888f1935050505015801561136b573d6000803e3d6000fd5b50565b33321461138d5760405162461bcd60e51b81526004016108f990612bdb565b60195460ff1680156113a15750601a544210155b6113ff5760405162461bcd60e51b815260206004820152602960248201527f57686974656c6973746564204d696e74696e67206973206e6f742079657420616044820152687661696c61626c652160b81b60648201526084016108f9565b6016546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561144357600080fd5b505afa158015611457573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147b91906129a2565b118061150057506015546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156114c657600080fd5b505afa1580156114da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fe91906129a2565b115b8061158457506014546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561154a57600080fd5b505afa15801561155e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158291906129a2565b115b6115ef5760405162461bcd60e51b815260206004820152603660248201527f596f7520646f206e6f7420686176652061204d756c6573717561642c20416e6f6044820152756e796d6963652c206f722043796265726b6f6e677a2160501b60648201526084016108f9565b80600d5410156116415760405162461bcd60e51b815260206004820152601a60248201527f4f766572206d6178696d756d206d696e7473207065722054782100000000000060448201526064016108f9565b8061164b60085490565b6116559190612c8e565b600b5410156116765760405162461bcd60e51b81526004016108f990612b48565b80600c546116849190612cba565b34146116c85760405162461bcd60e51b8152602060048201526013602482015272496e76616c69642076616c75652073656e742160681b60448201526064016108f9565b80601b60008282546116da9190612c8e565b90915550600090505b818110156109155760006116f660085490565b611701906001612c8e565b905061170d3382612004565b6040518181523390600080516020612e208339815191529060200160405180910390a2508061173b81612d57565b9150506116e3565b60606001805461092890612d1c565b3332146117715760405162461bcd60e51b81526004016108f990612bdb565b601c5460ff1680156117855750601d544210155b6117dc5760405162461bcd60e51b815260206004820152602260248201527f5075626c6963204d696e74696e67206973206e6f742079657420656e61626c65604482015261642160f01b60648201526084016108f9565b80600d54101561182e5760405162461bcd60e51b815260206004820152601a60248201527f4f766572206d6178696d756d206d696e7473207065722054782100000000000060448201526064016108f9565b8061183860085490565b6118429190612c8e565b600b5410156118635760405162461bcd60e51b81526004016108f990612b48565b80600c546118719190612cba565b34146118b55760405162461bcd60e51b8152602060048201526013602482015272496e76616c69642076616c75652073656e742160681b60448201526064016108f9565b80601e60008282546118c79190612c8e565b90915550600090505b818110156109155760006118e360085490565b6118ee906001612c8e565b90506118fa3382612004565b6040518181523390600080516020612e208339815191529060200160405180910390a2508061192881612d57565b9150506118d0565b600a546001600160a01b0316331461195a5760405162461bcd60e51b81526004016108f990612c08565b601380546001600160a01b039092166001600160a01b0319928316811790915560168054909216179055565b6001600160a01b0382163314156119df5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108f9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a755760405162461bcd60e51b81526004016108f990612c08565b601280546001600160a01b039092166001600160a01b0319928316811790915560158054909216179055565b611aab3383611d62565b611ac75760405162461bcd60e51b81526004016108f990612c3d565b611ad3848484846121a4565b50505050565b6000818152600260205260409020546060906001600160a01b0316611b405760405162461bcd60e51b815260206004820152601d60248201527f517565727920666f72206e6f6e2d6578697374656e7420746f6b656e2100000060448201526064016108f9565b600f611b4b836121d7565b6010604051602001611b5f93929190612a81565b6040516020818303038152906040529050919050565b600a546001600160a01b03163314611b9f5760405162461bcd60e51b81526004016108f990612c08565b601c805460ff191692151592909217909155601d55565b600a546001600160a01b03163314611be05760405162461bcd60e51b81526004016108f990612c08565b601180546001600160a01b039092166001600160a01b0319928316811790915560148054909216179055565b600a546001600160a01b03163314611c365760405162461bcd60e51b81526004016108f990612c08565b6001600160a01b038116611c9b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f9565b61136b81612152565b60006001600160e01b031982166380ac58cd60e01b1480611cd557506001600160e01b03198216635b5e139f60e01b145b806108c957506301ffc9a760e01b6001600160e01b03198316146108c9565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d2982611195565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ddb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f9565b6000611de683611195565b9050806001600160a01b0316846001600160a01b03161480611e215750836001600160a01b0316611e16846109ab565b6001600160a01b0316145b80611e5157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e6c82611195565b6001600160a01b031614611ed45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108f9565b6001600160a01b038216611f365760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108f9565b611f418383836122d5565b611f4c600082611cf4565b6001600160a01b0383166000908152600360205260408120805460019290611f75908490612cd9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fa3908490612c8e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821661205a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108f9565b6000818152600260205260409020546001600160a01b0316156120bf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108f9565b6120cb600083836122d5565b6001600160a01b03821660009081526003602052604081208054600192906120f4908490612c8e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6121af848484611e59565b6121bb8484848461238d565b611ad35760405162461bcd60e51b81526004016108f990612b89565b6060816121fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612225578061220f81612d57565b915061221e9050600a83612ca6565b91506121ff565b60008167ffffffffffffffff81111561224057612240612dde565b6040519080825280601f01601f19166020018201604052801561226a576020820181803683370190505b5090505b8415611e515761227f600183612cd9565b915061228c600a86612d72565b612297906030612c8e565b60f81b8183815181106122ac576122ac612dc8565b60200101906001600160f81b031916908160001a9053506122ce600a86612ca6565b945061226e565b6001600160a01b0383166123305761232b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612353565b816001600160a01b0316836001600160a01b03161461235357612353838261249a565b6001600160a01b03821661236a57610b5181612537565b826001600160a01b0316826001600160a01b031614610b5157610b5182826125e6565b60006001600160a01b0384163b1561248f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123d1903390899088908890600401612ab4565b602060405180830381600087803b1580156123eb57600080fd5b505af192505050801561241b575060408051601f3d908101601f1916820190925261241891810190612923565b60015b612475573d808015612449576040519150601f19603f3d011682016040523d82523d6000602084013e61244e565b606091505b50805161246d5760405162461bcd60e51b81526004016108f990612b89565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e51565b506001949350505050565b600060016124a784611258565b6124b19190612cd9565b600083815260076020526040902054909150808214612504576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061254990600190612cd9565b6000838152600960205260408120546008805493945090928490811061257157612571612dc8565b90600052602060002001549050806008838154811061259257612592612dc8565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125ca576125ca612db2565b6001900381819060005260206000200160009055905550505050565b60006125f183611258565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461263690612d1c565b90600052602060002090601f016020900481019282612658576000855561269e565b82601f1061267157805160ff191683800117855561269e565b8280016001018555821561269e579182015b8281111561269e578251825591602001919060010190612683565b506126aa9291506126ae565b5090565b5b808211156126aa57600081556001016126af565b600067ffffffffffffffff808411156126de576126de612dde565b604051601f8501601f19908116603f0116810190828211818310171561270657612706612dde565b8160405280935085815286868601111561271f57600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461274957600080fd5b919050565b60006020828403121561276057600080fd5b813561276b81612df4565b9392505050565b60006020828403121561278457600080fd5b815161276b81612df4565b600080604083850312156127a257600080fd5b82356127ad81612df4565b915060208301356127bd81612df4565b809150509250929050565b6000806000606084860312156127dd57600080fd5b83356127e881612df4565b925060208401356127f881612df4565b929592945050506040919091013590565b6000806000806080858703121561281f57600080fd5b843561282a81612df4565b9350602085013561283a81612df4565b925060408501359150606085013567ffffffffffffffff81111561285d57600080fd5b8501601f8101871361286e57600080fd5b61287d878235602084016126c3565b91505092959194509250565b6000806040838503121561289c57600080fd5b82356128a781612df4565b91506128b560208401612739565b90509250929050565b600080604083850312156128d157600080fd5b82356128dc81612df4565b946020939093013593505050565b600080604083850312156128fd57600080fd5b6128dc83612739565b60006020828403121561291857600080fd5b813561276b81612e09565b60006020828403121561293557600080fd5b815161276b81612e09565b60006020828403121561295257600080fd5b813567ffffffffffffffff81111561296957600080fd5b8201601f8101841361297a57600080fd5b611e51848235602084016126c3565b60006020828403121561299b57600080fd5b5035919050565b6000602082840312156129b457600080fd5b5051919050565b600081518084526129d3816020860160208601612cf0565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612a0157607f831692505b6020808410821415612a2357634e487b7160e01b600052602260045260246000fd5b818015612a375760018114612a4857612a75565b60ff19861689528489019650612a75565b60008881526020902060005b86811015612a6d5781548b820152908501908301612a54565b505084890196505b50505050505092915050565b6000612a8d82866129e7565b8451612a9d818360208901612cf0565b612aa9818301866129e7565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ae7908301846129bb565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b2957835183529284019291840191600101612b0d565b50909695505050505050565b60208152600061276b60208301846129bb565b60208082526021908201527f4e6f7420656e6f7567682072656d61696e696e6720746f6b656e73206c6566746040820152602160f81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601390820152724e6f20736d61727420636f6e7472616374732160681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612ca157612ca1612d86565b500190565b600082612cb557612cb5612d9c565b500490565b6000816000190483118215151615612cd457612cd4612d86565b500290565b600082821015612ceb57612ceb612d86565b500390565b60005b83811015612d0b578181015183820152602001612cf3565b83811115611ad35750506000910152565b600181811c90821680612d3057607f821691505b60208210811415612d5157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d6b57612d6b612d86565b5060010190565b600082612d8157612d81612d9c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461136b57600080fd5b6001600160e01b03198116811461136b57600080fdfe0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885a2646970667358221220460ad1dc221ecd2ba58a18d99e6112b5b5767d967ae4f7c45a50c612cef69c4264736f6c63430008070033
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c806369d77a1911610175578063b150c008116100dc578063e831574211610095578063f240ab9b1161006f578063f240ab9b1461082b578063f2fde38b14610858578063f4cda47714610878578063f518a0fa1461088e57600080fd5b8063e8315742146107ac578063e985e9c5146107c2578063eee6fa161461080b57600080fd5b8063b150c00814610700578063b88d4fde14610720578063ba725a4d14610740578063c87b56dd14610756578063ca87201114610776578063dc30158b1461079657600080fd5b80638da5cb5b1161012e5780638da5cb5b1461066457806395d89b4114610682578063a0712d6814610697578063a0c3f308146106aa578063a22cb465146106ca578063a8f72e12146106ea57600080fd5b806369d77a19146105cd5780636caede3d146105ed57806370a0823114610607578063715018a6146106275780637362377b1461063c578063868ff4a21461065157600080fd5b80632f745c5911610219578063484b973c116101d2578063484b973c146105215780634f6ccce71461054157806359025d0b146105615780635e403472146105815780636352211e146105975780636817c76c146105b757600080fd5b80632f745c591461045457806330176e1314610474578063379607f51461049457806340e82dbe146104b457806342842e0e146104d4578063438b6300146104f457600080fd5b80630f4161aa1161026b5780630f4161aa146103a457806314716ac8146103be57806318160ddd146103de57806323b872dd146103fd57806327b3bf111461041d5780632866ed211461043357600080fd5b806301ffc9a7146102b357806302ffaed1146102e857806306fdde031461030a5780630748004b1461032c578063081812fc14610364578063095ea7b314610384575b600080fd5b3480156102bf57600080fd5b506102d36102ce366004612906565b6108a4565b60405190151581526020015b60405180910390f35b3480156102f457600080fd5b50610308610303366004612940565b6108cf565b005b34801561031657600080fd5b5061031f610919565b6040516102df9190612b35565b34801561033857600080fd5b5060125461034c906001600160a01b031681565b6040516001600160a01b0390911681526020016102df565b34801561037057600080fd5b5061034c61037f366004612989565b6109ab565b34801561039057600080fd5b5061030861039f3660046128be565b610a40565b3480156103b057600080fd5b50601c546102d39060ff1681565b3480156103ca57600080fd5b5060135461034c906001600160a01b031681565b3480156103ea57600080fd5b506008545b6040519081526020016102df565b34801561040957600080fd5b506103086104183660046127c8565b610b56565b34801561042957600080fd5b506103ef60175481565b34801561043f57600080fd5b506016546102d390600160a01b900460ff1681565b34801561046057600080fd5b506103ef61046f3660046128be565b610b87565b34801561048057600080fd5b5061030861048f366004612940565b610c1d565b3480156104a057600080fd5b506103086104af366004612989565b610c5a565b3480156104c057600080fd5b5060115461034c906001600160a01b031681565b3480156104e057600080fd5b506103086104ef3660046127c8565b610f04565b34801561050057600080fd5b5061051461050f36600461274e565b610f1f565b6040516102df9190612af1565b34801561052d57600080fd5b5061030861053c3660046128be565b610fc1565b34801561054d57600080fd5b506103ef61055c366004612989565b6110c1565b34801561056d57600080fd5b5061030861057c3660046128ea565b611154565b34801561058d57600080fd5b506103ef601d5481565b3480156105a357600080fd5b5061034c6105b2366004612989565b611195565b3480156105c357600080fd5b506103ef600c5481565b3480156105d957600080fd5b506103086105e83660046128ea565b61120c565b3480156105f957600080fd5b506019546102d39060ff1681565b34801561061357600080fd5b506103ef61062236600461274e565b611258565b34801561063357600080fd5b506103086112df565b34801561064857600080fd5b50610308611315565b61030861065f366004612989565b61136e565b34801561067057600080fd5b50600a546001600160a01b031661034c565b34801561068e57600080fd5b5061031f611743565b6103086106a5366004612989565b611752565b3480156106b657600080fd5b506103086106c536600461274e565b611930565b3480156106d657600080fd5b506103086106e5366004612889565b611986565b3480156106f657600080fd5b506103ef601a5481565b34801561070c57600080fd5b5061030861071b36600461274e565b611a4b565b34801561072c57600080fd5b5061030861073b366004612809565b611aa1565b34801561074c57600080fd5b506103ef601b5481565b34801561076257600080fd5b5061031f610771366004612989565b611ad9565b34801561078257600080fd5b506103086107913660046128ea565b611b75565b3480156107a257600080fd5b506103ef600d5481565b3480156107b857600080fd5b506103ef600b5481565b3480156107ce57600080fd5b506102d36107dd36600461278f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561081757600080fd5b5061030861082636600461274e565b611bb6565b34801561083757600080fd5b506103ef610846366004612989565b600e6020526000908152604090205481565b34801561086457600080fd5b5061030861087336600461274e565b611c0c565b34801561088457600080fd5b506103ef60185481565b34801561089a57600080fd5b506103ef601e5481565b60006001600160e01b0319821663780e9d6360e01b14806108c957506108c982611ca4565b92915050565b600a546001600160a01b031633146109025760405162461bcd60e51b81526004016108f990612c08565b60405180910390fd5b805161091590601090602084019061262a565b5050565b60606000805461092890612d1c565b80601f016020809104026020016040519081016040528092919081815260200182805461095490612d1c565b80156109a15780601f10610976576101008083540402835291602001916109a1565b820191906000526020600020905b81548152906001019060200180831161098457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a245760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f9565b506000908152600460205260409020546001600160a01b031690565b6000610a4b82611195565b9050806001600160a01b0316836001600160a01b03161415610ab95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108f9565b336001600160a01b0382161480610ad55750610ad581336107dd565b610b475760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108f9565b610b518383611cf4565b505050565b610b603382611d62565b610b7c5760405162461bcd60e51b81526004016108f990612c3d565b610b51838383611e59565b6000610b9283611258565b8210610bf45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108f9565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610c475760405162461bcd60e51b81526004016108f990612c08565b805161091590600f90602084019061262a565b333214610c795760405162461bcd60e51b81526004016108f990612bdb565b601654600160a01b900460ff168015610c9457506017544210155b610cea5760405162461bcd60e51b815260206004820152602160248201527f5075626c696320436c61696d696e67206973206e6f7420617661696c61626c656044820152602160f81b60648201526084016108f9565b6014546040516331a9108f60e11b8152600481018390526001600160a01b0390911690636352211e9060240160206040518083038186803b158015610d2e57600080fd5b505afa158015610d42573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d669190612772565b6001600160a01b0316336001600160a01b031614610dc65760405162461bcd60e51b815260206004820152601e60248201527f596f7520646f206e6f74206f776e2074686973204d756c65737175616421000060448201526064016108f9565b600854600b5411610e195760405162461bcd60e51b815260206004820152601e60248201527f4e6f206d6f72652072656d61696e696e6720746f6b656e73206c65667421000060448201526064016108f9565b6000818152600e602052604090205415610e875760405162461bcd60e51b815260206004820152602960248201527f5468697320746f6b656e2077617320616c7265616479207573656420666f7220604482015268636c61696d696e672160b81b60648201526084016108f9565b6000818152600e60205260408120805491610ea183612d57565b909155505060188054906000610eb683612d57565b91905055506000610ec660085490565b610ed1906001612c8e565b9050610edd3382612004565b6040518181523390600080516020612e208339815191529060200160405180910390a25050565b610b5183838360405180602001604052806000815250611aa1565b60606000610f2c83611258565b905060008167ffffffffffffffff811115610f4957610f49612dde565b604051908082528060200260200182016040528015610f72578160200160208202803683370190505b50905060005b82811015610fb957610f8a8582610b87565b828281518110610f9c57610f9c612dc8565b602090810291909101015280610fb181612d57565b915050610f78565b509392505050565b600a546001600160a01b03163314610feb5760405162461bcd60e51b81526004016108f990612c08565b80610ff560085490565b610fff9190612c8e565b600b5410156110505760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e67210000000060448201526064016108f9565b60005b81811015610b5157600061106660085490565b611071906001612c8e565b905061107d8482612004565b836001600160a01b0316600080516020612e20833981519152826040516110a691815260200190565b60405180910390a250806110b981612d57565b915050611053565b60006110cc60085490565b821061112f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108f9565b6008828154811061114257611142612dc8565b90600052602060002001549050919050565b600a546001600160a01b0316331461117e5760405162461bcd60e51b81526004016108f990612c08565b6019805460ff191692151592909217909155601a55565b6000818152600260205260408120546001600160a01b0316806108c95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108f9565b600a546001600160a01b031633146112365760405162461bcd60e51b81526004016108f990612c08565b60168054921515600160a01b0260ff60a01b1990931692909217909155601755565b60006001600160a01b0382166112c35760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108f9565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146113095760405162461bcd60e51b81526004016108f990612c08565b6113136000612152565b565b600a546001600160a01b0316331461133f5760405162461bcd60e51b81526004016108f990612c08565b60405133904780156108fc02916000818181858888f1935050505015801561136b573d6000803e3d6000fd5b50565b33321461138d5760405162461bcd60e51b81526004016108f990612bdb565b60195460ff1680156113a15750601a544210155b6113ff5760405162461bcd60e51b815260206004820152602960248201527f57686974656c6973746564204d696e74696e67206973206e6f742079657420616044820152687661696c61626c652160b81b60648201526084016108f9565b6016546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561144357600080fd5b505afa158015611457573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061147b91906129a2565b118061150057506015546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b1580156114c657600080fd5b505afa1580156114da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114fe91906129a2565b115b8061158457506014546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a082319060240160206040518083038186803b15801561154a57600080fd5b505afa15801561155e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061158291906129a2565b115b6115ef5760405162461bcd60e51b815260206004820152603660248201527f596f7520646f206e6f7420686176652061204d756c6573717561642c20416e6f6044820152756e796d6963652c206f722043796265726b6f6e677a2160501b60648201526084016108f9565b80600d5410156116415760405162461bcd60e51b815260206004820152601a60248201527f4f766572206d6178696d756d206d696e7473207065722054782100000000000060448201526064016108f9565b8061164b60085490565b6116559190612c8e565b600b5410156116765760405162461bcd60e51b81526004016108f990612b48565b80600c546116849190612cba565b34146116c85760405162461bcd60e51b8152602060048201526013602482015272496e76616c69642076616c75652073656e742160681b60448201526064016108f9565b80601b60008282546116da9190612c8e565b90915550600090505b818110156109155760006116f660085490565b611701906001612c8e565b905061170d3382612004565b6040518181523390600080516020612e208339815191529060200160405180910390a2508061173b81612d57565b9150506116e3565b60606001805461092890612d1c565b3332146117715760405162461bcd60e51b81526004016108f990612bdb565b601c5460ff1680156117855750601d544210155b6117dc5760405162461bcd60e51b815260206004820152602260248201527f5075626c6963204d696e74696e67206973206e6f742079657420656e61626c65604482015261642160f01b60648201526084016108f9565b80600d54101561182e5760405162461bcd60e51b815260206004820152601a60248201527f4f766572206d6178696d756d206d696e7473207065722054782100000000000060448201526064016108f9565b8061183860085490565b6118429190612c8e565b600b5410156118635760405162461bcd60e51b81526004016108f990612b48565b80600c546118719190612cba565b34146118b55760405162461bcd60e51b8152602060048201526013602482015272496e76616c69642076616c75652073656e742160681b60448201526064016108f9565b80601e60008282546118c79190612c8e565b90915550600090505b818110156109155760006118e360085490565b6118ee906001612c8e565b90506118fa3382612004565b6040518181523390600080516020612e208339815191529060200160405180910390a2508061192881612d57565b9150506118d0565b600a546001600160a01b0316331461195a5760405162461bcd60e51b81526004016108f990612c08565b601380546001600160a01b039092166001600160a01b0319928316811790915560168054909216179055565b6001600160a01b0382163314156119df5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108f9565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a755760405162461bcd60e51b81526004016108f990612c08565b601280546001600160a01b039092166001600160a01b0319928316811790915560158054909216179055565b611aab3383611d62565b611ac75760405162461bcd60e51b81526004016108f990612c3d565b611ad3848484846121a4565b50505050565b6000818152600260205260409020546060906001600160a01b0316611b405760405162461bcd60e51b815260206004820152601d60248201527f517565727920666f72206e6f6e2d6578697374656e7420746f6b656e2100000060448201526064016108f9565b600f611b4b836121d7565b6010604051602001611b5f93929190612a81565b6040516020818303038152906040529050919050565b600a546001600160a01b03163314611b9f5760405162461bcd60e51b81526004016108f990612c08565b601c805460ff191692151592909217909155601d55565b600a546001600160a01b03163314611be05760405162461bcd60e51b81526004016108f990612c08565b601180546001600160a01b039092166001600160a01b0319928316811790915560148054909216179055565b600a546001600160a01b03163314611c365760405162461bcd60e51b81526004016108f990612c08565b6001600160a01b038116611c9b5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f9565b61136b81612152565b60006001600160e01b031982166380ac58cd60e01b1480611cd557506001600160e01b03198216635b5e139f60e01b145b806108c957506301ffc9a760e01b6001600160e01b03198316146108c9565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d2982611195565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611ddb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108f9565b6000611de683611195565b9050806001600160a01b0316846001600160a01b03161480611e215750836001600160a01b0316611e16846109ab565b6001600160a01b0316145b80611e5157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611e6c82611195565b6001600160a01b031614611ed45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108f9565b6001600160a01b038216611f365760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108f9565b611f418383836122d5565b611f4c600082611cf4565b6001600160a01b0383166000908152600360205260408120805460019290611f75908490612cd9565b90915550506001600160a01b0382166000908152600360205260408120805460019290611fa3908490612c8e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821661205a5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108f9565b6000818152600260205260409020546001600160a01b0316156120bf5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108f9565b6120cb600083836122d5565b6001600160a01b03821660009081526003602052604081208054600192906120f4908490612c8e565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6121af848484611e59565b6121bb8484848461238d565b611ad35760405162461bcd60e51b81526004016108f990612b89565b6060816121fb5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612225578061220f81612d57565b915061221e9050600a83612ca6565b91506121ff565b60008167ffffffffffffffff81111561224057612240612dde565b6040519080825280601f01601f19166020018201604052801561226a576020820181803683370190505b5090505b8415611e515761227f600183612cd9565b915061228c600a86612d72565b612297906030612c8e565b60f81b8183815181106122ac576122ac612dc8565b60200101906001600160f81b031916908160001a9053506122ce600a86612ca6565b945061226e565b6001600160a01b0383166123305761232b81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612353565b816001600160a01b0316836001600160a01b03161461235357612353838261249a565b6001600160a01b03821661236a57610b5181612537565b826001600160a01b0316826001600160a01b031614610b5157610b5182826125e6565b60006001600160a01b0384163b1561248f57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906123d1903390899088908890600401612ab4565b602060405180830381600087803b1580156123eb57600080fd5b505af192505050801561241b575060408051601f3d908101601f1916820190925261241891810190612923565b60015b612475573d808015612449576040519150601f19603f3d011682016040523d82523d6000602084013e61244e565b606091505b50805161246d5760405162461bcd60e51b81526004016108f990612b89565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e51565b506001949350505050565b600060016124a784611258565b6124b19190612cd9565b600083815260076020526040902054909150808214612504576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061254990600190612cd9565b6000838152600960205260408120546008805493945090928490811061257157612571612dc8565b90600052602060002001549050806008838154811061259257612592612dc8565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806125ca576125ca612db2565b6001900381819060005260206000200160009055905550505050565b60006125f183611258565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b82805461263690612d1c565b90600052602060002090601f016020900481019282612658576000855561269e565b82601f1061267157805160ff191683800117855561269e565b8280016001018555821561269e579182015b8281111561269e578251825591602001919060010190612683565b506126aa9291506126ae565b5090565b5b808211156126aa57600081556001016126af565b600067ffffffffffffffff808411156126de576126de612dde565b604051601f8501601f19908116603f0116810190828211818310171561270657612706612dde565b8160405280935085815286868601111561271f57600080fd5b858560208301376000602087830101525050509392505050565b8035801515811461274957600080fd5b919050565b60006020828403121561276057600080fd5b813561276b81612df4565b9392505050565b60006020828403121561278457600080fd5b815161276b81612df4565b600080604083850312156127a257600080fd5b82356127ad81612df4565b915060208301356127bd81612df4565b809150509250929050565b6000806000606084860312156127dd57600080fd5b83356127e881612df4565b925060208401356127f881612df4565b929592945050506040919091013590565b6000806000806080858703121561281f57600080fd5b843561282a81612df4565b9350602085013561283a81612df4565b925060408501359150606085013567ffffffffffffffff81111561285d57600080fd5b8501601f8101871361286e57600080fd5b61287d878235602084016126c3565b91505092959194509250565b6000806040838503121561289c57600080fd5b82356128a781612df4565b91506128b560208401612739565b90509250929050565b600080604083850312156128d157600080fd5b82356128dc81612df4565b946020939093013593505050565b600080604083850312156128fd57600080fd5b6128dc83612739565b60006020828403121561291857600080fd5b813561276b81612e09565b60006020828403121561293557600080fd5b815161276b81612e09565b60006020828403121561295257600080fd5b813567ffffffffffffffff81111561296957600080fd5b8201601f8101841361297a57600080fd5b611e51848235602084016126c3565b60006020828403121561299b57600080fd5b5035919050565b6000602082840312156129b457600080fd5b5051919050565b600081518084526129d3816020860160208601612cf0565b601f01601f19169290920160200192915050565b8054600090600181811c9080831680612a0157607f831692505b6020808410821415612a2357634e487b7160e01b600052602260045260246000fd5b818015612a375760018114612a4857612a75565b60ff19861689528489019650612a75565b60008881526020902060005b86811015612a6d5781548b820152908501908301612a54565b505084890196505b50505050505092915050565b6000612a8d82866129e7565b8451612a9d818360208901612cf0565b612aa9818301866129e7565b979650505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ae7908301846129bb565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612b2957835183529284019291840191600101612b0d565b50909695505050505050565b60208152600061276b60208301846129bb565b60208082526021908201527f4e6f7420656e6f7567682072656d61696e696e6720746f6b656e73206c6566746040820152602160f81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252601390820152724e6f20736d61727420636f6e7472616374732160681b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612ca157612ca1612d86565b500190565b600082612cb557612cb5612d9c565b500490565b6000816000190483118215151615612cd457612cd4612d86565b500290565b600082821015612ceb57612ceb612d86565b500390565b60005b83811015612d0b578181015183820152602001612cf3565b83811115611ad35750506000910152565b600181811c90821680612d3057607f821691505b60208210811415612d5157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612d6b57612d6b612d86565b5060010190565b600082612d8157612d81612d9c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461136b57600080fd5b6001600160e01b03198116811461136b57600080fdfe0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885a2646970667358221220460ad1dc221ecd2ba58a18d99e6112b5b5767d967ae4f7c45a50c612cef69c4264736f6c63430008070033
Deployed Bytecode Sourcemap
41972:5908:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35824:224;;;;;;;;;;-1:-1:-1;35824:224:0;;;;;:::i;:::-;;:::i;:::-;;;8406:14:1;;8399:22;8381:41;;8369:2;8354:18;35824:224:0;;;;;;;;47113:110;;;;;;;;;;-1:-1:-1;47113:110:0;;;;;:::i;:::-;;:::i;:::-;;23161:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;42323:32::-;;;;;;;;;;-1:-1:-1;42323:32:0;;;;-1:-1:-1;;;;;42323:32:0;;;;;;-1:-1:-1;;;;;7067:32:1;;;7049:51;;7037:2;7022:18;42323:32:0;6903:203:1;24720:221:0;;;;;;;;;;-1:-1:-1;24720:221:0;;;;;:::i;:::-;;:::i;24243:411::-;;;;;;;;;;-1:-1:-1;24243:411:0;;;;;:::i;:::-;;:::i;45961:29::-;;;;;;;;;;-1:-1:-1;45961:29:0;;;;;;;;42362:31;;;;;;;;;;-1:-1:-1;42362:31:0;;;;-1:-1:-1;;;;;42362:31:0;;;36464:113;;;;;;;;;;-1:-1:-1;36552:10:0;:17;36464:113;;;20528:25:1;;;20516:2;20501:18;36464:113:0;20382:177:1;25610:339:0;;;;;;;;;;-1:-1:-1;25610:339:0;;;;;:::i;:::-;;:::i;43729:21::-;;;;;;;;;;;;;;;;43698:24;;;;;;;;;;-1:-1:-1;43698:24:0;;;;-1:-1:-1;;;43698:24:0;;;;;;36132:256;;;;;;;;;;-1:-1:-1;36132:256:0;;;;;:::i;:::-;;:::i;47005:102::-;;;;;;;;;;-1:-1:-1;47005:102:0;;;;;:::i;:::-;;:::i;44097:555::-;;;;;;;;;;-1:-1:-1;44097:555:0;;;;;:::i;:::-;;:::i;42285:31::-;;;;;;;;;;-1:-1:-1;42285:31:0;;;;-1:-1:-1;;;;;42285:31:0;;;26020:185;;;;;;;;;;-1:-1:-1;26020:185:0;;;;;:::i;:::-;;:::i;47495:382::-;;;;;;;;;;-1:-1:-1;47495:382:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43296:370::-;;;;;;;;;;-1:-1:-1;43296:370:0;;;;;:::i;:::-;;:::i;36654:233::-;;;;;;;;;;-1:-1:-1;36654:233:0;;;;;:::i;:::-;;:::i;44981:167::-;;;;;;;;;;-1:-1:-1;44981:167:0;;;;;:::i;:::-;;:::i;45997:26::-;;;;;;;;;;;;;;;;22855:239;;;;;;;;;;-1:-1:-1;22855:239:0;;;;;:::i;:::-;;:::i;42065:36::-;;;;;;;;;;;;;;;;43946:143;;;;;;;;;;-1:-1:-1;43946:143:0;;;;;:::i;:::-;;:::i;44688:32::-;;;;;;;;;;-1:-1:-1;44688:32:0;;;;;;;;22585:208;;;;;;;;;;-1:-1:-1;22585:208:0;;;;;:::i;:::-;;:::i;2546:94::-;;;;;;;;;;;;;:::i;42590:113::-;;;;;;;;;;;;;:::i;45156:774::-;;;;;;:::i;:::-;;:::i;1895:87::-;;;;;;;;;;-1:-1:-1;1968:6:0;;-1:-1:-1;;;;;1968:6:0;1895:87;;23330:104;;;;;;;;;;;;;:::i;46395:567::-;;;;;;:::i;:::-;;:::i;43126:143::-;;;;;;;;;;-1:-1:-1;43126:143:0;;;;;:::i;:::-;;:::i;25013:295::-;;;;;;;;;;-1:-1:-1;25013:295:0;;;;;:::i;:::-;;:::i;44727:29::-;;;;;;;;;;;;;;;;42974:146;;;;;;;;;;-1:-1:-1;42974:146:0;;;;;:::i;:::-;;:::i;26276:328::-;;;;;;;;;;-1:-1:-1;26276:328:0;;;;;:::i;:::-;;:::i;44763:30::-;;;;;;;;;;;;;;;;47231:258;;;;;;;;;;-1:-1:-1;47231:258:0;;;;;:::i;:::-;;:::i;46229:158::-;;;;;;;;;;-1:-1:-1;46229:158:0;;;;;:::i;:::-;;:::i;42108:30::-;;;;;;;;;;;;;;;;42030:28;;;;;;;;;;;;;;;;25379:164;;;;;;;;;;-1:-1:-1;25379:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25500:25:0;;;25476:4;25500:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25379:164;42825:143;;;;;;;;;;-1:-1:-1;42825:143:0;;;;;:::i;:::-;;:::i;42151:49::-;;;;;;;;;;-1:-1:-1;42151:49:0;;;;;:::i;:::-;;;;;;;;;;;;;;2795:192;;;;;;;;;;-1:-1:-1;2795:192:0;;;;;:::i;:::-;;:::i;43757:23::-;;;;;;;;;;;;;;;;46030:27;;;;;;;;;;;;;;;;35824:224;35926:4;-1:-1:-1;;;;;;35950:50:0;;-1:-1:-1;;;35950:50:0;;:90;;;36004:36;36028:11;36004:23;:36::i;:::-;35943:97;35824:224;-1:-1:-1;;35824:224:0:o;47113:110::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;;;;;;;;;47192:23;;::::1;::::0;:16:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;:::-;;47113:110:::0;:::o;23161:100::-;23215:13;23248:5;23241:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23161:100;:::o;24720:221::-;24796:7;28203:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28203:16:0;24816:73;;;;-1:-1:-1;;;24816:73:0;;16208:2:1;24816:73:0;;;16190:21:1;16247:2;16227:18;;;16220:30;16286:34;16266:18;;;16259:62;-1:-1:-1;;;16337:18:1;;;16330:42;16389:19;;24816:73:0;16006:408:1;24816:73:0;-1:-1:-1;24909:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24909:24:0;;24720:221::o;24243:411::-;24324:13;24340:23;24355:7;24340:14;:23::i;:::-;24324:39;;24388:5;-1:-1:-1;;;;;24382:11:0;:2;-1:-1:-1;;;;;24382:11:0;;;24374:57;;;;-1:-1:-1;;;24374:57:0;;17392:2:1;24374:57:0;;;17374:21:1;17431:2;17411:18;;;17404:30;17470:34;17450:18;;;17443:62;-1:-1:-1;;;17521:18:1;;;17514:31;17562:19;;24374:57:0;17190:397:1;24374:57:0;849:10;-1:-1:-1;;;;;24466:21:0;;;;:62;;-1:-1:-1;24491:37:0;24508:5;849:10;25379:164;:::i;24491:37::-;24444:168;;;;-1:-1:-1;;;24444:168:0;;13895:2:1;24444:168:0;;;13877:21:1;13934:2;13914:18;;;13907:30;13973:34;13953:18;;;13946:62;14044:26;14024:18;;;14017:54;14088:19;;24444:168:0;13693:420:1;24444:168:0;24625:21;24634:2;24638:7;24625:8;:21::i;:::-;24313:341;24243:411;;:::o;25610:339::-;25805:41;849:10;25838:7;25805:18;:41::i;:::-;25797:103;;;;-1:-1:-1;;;25797:103:0;;;;;;;:::i;:::-;25913:28;25923:4;25929:2;25933:7;25913:9;:28::i;36132:256::-;36229:7;36265:23;36282:5;36265:16;:23::i;:::-;36257:5;:31;36249:87;;;;-1:-1:-1;;;36249:87:0;;10022:2:1;36249:87:0;;;10004:21:1;10061:2;10041:18;;;10034:30;10100:34;10080:18;;;10073:62;-1:-1:-1;;;10151:18:1;;;10144:41;10202:19;;36249:87:0;9820:407:1;36249:87:0;-1:-1:-1;;;;;;36354:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;36132:256::o;47005:102::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;47080:19;;::::1;::::0;:12:::1;::::0;:19:::1;::::0;::::1;::::0;::::1;:::i;44097:555::-:0;42750:10;42764:9;42750:23;42742:55;;;;-1:-1:-1;;;42742:55:0;;;;;;;:::i;:::-;43836:12:::1;::::0;-1:-1:-1;;;43836:12:0;::::1;;;:44:::0;::::1;;;;43871:9;;43852:15;:28;;43836:44;43828:90;;;::::0;-1:-1:-1;;;43828:90:0;;8859:2:1;43828:90:0::1;::::0;::::1;8841:21:1::0;8898:2;8878:18;;;8871:30;8937:34;8917:18;;;8910:62;-1:-1:-1;;;8988:18:1;;;8981:31;9029:19;;43828:90:0::1;8657:397:1::0;43828:90:0::1;44193:9:::2;::::0;:27:::2;::::0;-1:-1:-1;;;44193:27:0;;::::2;::::0;::::2;20528:25:1::0;;;-1:-1:-1;;;;;44193:9:0;;::::2;::::0;:17:::2;::::0;20501:18:1;;44193:27:0::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;44179:41:0::2;:10;-1:-1:-1::0;;;;;44179:41:0::2;;44171:84;;;::::0;-1:-1:-1;;;44171:84:0;;18627:2:1;44171:84:0::2;::::0;::::2;18609:21:1::0;18666:2;18646:18;;;18639:30;18705:32;18685:18;;;18678:60;18755:18;;44171:84:0::2;18425:354:1::0;44171:84:0::2;36552:10:::0;:17;44274:9:::2;;:25;44266:68;;;::::0;-1:-1:-1;;;44266:68:0;;9663:2:1;44266:68:0::2;::::0;::::2;9645:21:1::0;9702:2;9682:18;;;9675:30;9741:32;9721:18;;;9714:60;9791:18;;44266:68:0::2;9461:354:1::0;44266:68:0::2;44353:30;::::0;;;:20:::2;:30;::::0;;;;;:35;44345:89:::2;;;::::0;-1:-1:-1;;;44345:89:0;;17794:2:1;44345:89:0::2;::::0;::::2;17776:21:1::0;17833:2;17813:18;;;17806:30;17872:34;17852:18;;;17845:62;-1:-1:-1;;;17923:18:1;;;17916:39;17972:19;;44345:89:0::2;17592:405:1::0;44345:89:0::2;44447:30;::::0;;;:20:::2;:30;::::0;;;;:32;;;::::2;::::0;::::2;:::i;:::-;::::0;;;-1:-1:-1;;44490:11:0::2;:13:::0;;;:11:::2;:13;::::0;::::2;:::i;:::-;;;;;;44516:12;44531:13;36552:10:::0;:17;;36464:113;44531:13:::2;:17;::::0;44547:1:::2;44531:17;:::i;:::-;44516:32;;44577:26;44583:10;44595:7;44577:5;:26::i;:::-;44619:25;::::0;20528::1;;;44624:10:0::2;::::0;-1:-1:-1;;;;;;;;;;;44619:25:0;20516:2:1;20501:18;44619:25:0::2;;;;;;;44160:492;44097:555:::0;:::o;26020:185::-;26158:39;26175:4;26181:2;26185:7;26158:39;;;;;;;;;;;;:16;:39::i;47495:382::-;47557:13;47583;47599:19;47609:8;47599:9;:19::i;:::-;47583:35;;47655:23;47692:8;47681:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47681:20:0;;47655:46;;47738:6;47733:110;47754:8;47750:1;:12;47733:110;;;47799:32;47819:8;47829:1;47799:19;:32::i;:::-;47784:9;47794:1;47784:12;;;;;;;;:::i;:::-;;;;;;;;;;:47;47764:3;;;;:::i;:::-;;;;47733:110;;;-1:-1:-1;47860:9:0;47495:382;-1:-1:-1;;;47495:382:0:o;43296:370::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;43412:7:::1;43396:13;36552:10:::0;:17;;36464:113;43396:13:::1;:23;;;;:::i;:::-;43383:9;;:36;;43375:77;;;::::0;-1:-1:-1;;;43375:77:0;;19404:2:1;43375:77:0::1;::::0;::::1;19386:21:1::0;19443:2;19423:18;;;19416:30;19482;19462:18;;;19455:58;19530:18;;43375:77:0::1;19202:352:1::0;43375:77:0::1;43470:6;43465:194;43486:7;43482:1;:11;43465:194;;;43515:12;43530:13;36552:10:::0;:17;;36464:113;43530:13:::1;:17;::::0;43546:1:::1;43530:17;:::i;:::-;43515:32;;43580:24;43586:8;43596:7;43580:5;:24::i;:::-;43629:8;-1:-1:-1::0;;;;;43624:23:0::1;-1:-1:-1::0;;;;;;;;;;;43639:7:0::1;43624:23;;;;20528:25:1::0;;20516:2;20501:18;;20382:177;43624:23:0::1;;;;;;;;-1:-1:-1::0;43495:3:0;::::1;::::0;::::1;:::i;:::-;;;;43465:194;;36654:233:::0;36729:7;36765:30;36552:10;:17;;36464:113;36765:30;36757:5;:38;36749:95;;;;-1:-1:-1;;;36749:95:0;;19761:2:1;36749:95:0;;;19743:21:1;19800:2;19780:18;;;19773:30;19839:34;19819:18;;;19812:62;-1:-1:-1;;;19890:18:1;;;19883:42;19942:19;;36749:95:0;19559:408:1;36749:95:0;36862:10;36873:5;36862:17;;;;;;;;:::i;:::-;;;;;;;;;36855:24;;36654:233;;;:::o;44981:167::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;45072:20:::1;:28:::0;;-1:-1:-1;;45072:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;45111:17:::1;:29:::0;44981:167::o;22855:239::-;22927:7;22963:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22963:16:0;22998:19;22990:73;;;;-1:-1:-1;;;22990:73:0;;14731:2:1;22990:73:0;;;14713:21:1;14770:2;14750:18;;;14743:30;14809:34;14789:18;;;14782:62;-1:-1:-1;;;14860:18:1;;;14853:39;14909:19;;22990:73:0;14529:405:1;43946:143:0;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;44028:12:::1;:20:::0;;;::::1;;-1:-1:-1::0;;;44028:20:0::1;-1:-1:-1::0;;;;44028:20:0;;::::1;::::0;;;::::1;::::0;;;44059:9:::1;:22:::0;43946:143::o;22585:208::-;22657:7;-1:-1:-1;;;;;22685:19:0;;22677:74;;;;-1:-1:-1;;;22677:74:0;;14320:2:1;22677:74:0;;;14302:21:1;14359:2;14339:18;;;14332:30;14398:34;14378:18;;;14371:62;-1:-1:-1;;;14449:18:1;;;14442:40;14499:19;;22677:74:0;14118:406:1;22677:74:0;-1:-1:-1;;;;;;22769:16:0;;;;;:9;:16;;;;;;;22585:208::o;2546:94::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;2611:21:::1;2629:1;2611:9;:21::i;:::-;2546:94::o:0;42590:113::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;42643:51:::1;::::0;42651:10:::1;::::0;42672:21:::1;42643:51:::0;::::1;;;::::0;::::1;::::0;;;42672:21;42651:10;42643:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;42590:113::o:0;45156:774::-;42750:10;42764:9;42750:23;42742:55;;;;-1:-1:-1;;;42742:55:0;;;;;;;:::i;:::-;44847:20:::1;::::0;::::1;;:60:::0;::::1;;;;44890:17;;44871:15;:36;;44847:60;44839:114;;;::::0;-1:-1:-1;;;44839:114:0;;20174:2:1;44839:114:0::1;::::0;::::1;20156:21:1::0;20213:2;20193:18;;;20186:30;20252:34;20232:18;;;20225:62;-1:-1:-1;;;20303:18:1;;;20296:39;20352:19;;44839:114:0::1;19972:405:1::0;44839:114:0::1;45255:9:::2;::::0;:31:::2;::::0;-1:-1:-1;;;45255:31:0;;45275:10:::2;45255:31;::::0;::::2;7049:51:1::0;45289:1:0::2;::::0;-1:-1:-1;;;;;45255:9:0::2;::::0;:19:::2;::::0;7022:18:1;;45255:31:0::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:35;:75;;;-1:-1:-1::0;45294:10:0::2;::::0;:32:::2;::::0;-1:-1:-1;;;45294:32:0;;45315:10:::2;45294:32;::::0;::::2;7049:51:1::0;45329:1:0::2;::::0;-1:-1:-1;;;;;45294:10:0::2;::::0;:20:::2;::::0;7022:18:1;;45294:32:0::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:36;45255:75;:114;;;-1:-1:-1::0;45334:9:0::2;::::0;:31:::2;::::0;-1:-1:-1;;;45334:31:0;;45354:10:::2;45334:31;::::0;::::2;7049:51:1::0;45368:1:0::2;::::0;-1:-1:-1;;;;;45334:9:0::2;::::0;:19:::2;::::0;7022:18:1;;45334:31:0::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:35;45255:114;45247:181;;;::::0;-1:-1:-1;;;45247:181:0;;18204:2:1;45247:181:0::2;::::0;::::2;18186:21:1::0;18243:2;18223:18;;;18216:30;18282:34;18262:18;;;18255:62;-1:-1:-1;;;18333:18:1;;;18326:52;18395:19;;45247:181:0::2;18002:418:1::0;45247:181:0::2;45464:7;45447:13;;:24;;45439:63;;;::::0;-1:-1:-1;;;45439:63:0;;13192:2:1;45439:63:0::2;::::0;::::2;13174:21:1::0;13231:2;13211:18;;;13204:30;13270:28;13250:18;;;13243:56;13316:18;;45439:63:0::2;12990:350:1::0;45439:63:0::2;45550:7;45534:13;36552:10:::0;:17;;36464:113;45534:13:::2;:23;;;;:::i;:::-;45521:9;;:36;;45513:82;;;;-1:-1:-1::0;;;45513:82:0::2;;;;;;;:::i;:::-;45639:7;45627:9;;:19;;;;:::i;:::-;45614:9;:32;45606:64;;;::::0;-1:-1:-1;;;45606:64:0;;13547:2:1;45606:64:0::2;::::0;::::2;13529:21:1::0;13586:2;13566:18;;;13559:30;-1:-1:-1;;;13605:18:1;;;13598:49;13664:18;;45606:64:0::2;13345:343:1::0;45606:64:0::2;45705:7;45683:18;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;45730:6:0::2;::::0;-1:-1:-1;45725:198:0::2;45746:7;45742:1;:11;45725:198;;;45775:12;45790:13;36552:10:::0;:17;;36464:113;45790:13:::2;:17;::::0;45806:1:::2;45790:17;:::i;:::-;45775:32;;45840:26;45846:10;45858:7;45840:5;:26::i;:::-;45886:25;::::0;20528::1;;;45891:10:0::2;::::0;-1:-1:-1;;;;;;;;;;;45886:25:0;20516:2:1;20501:18;45886:25:0::2;;;;;;;-1:-1:-1::0;45755:3:0;::::2;::::0;::::2;:::i;:::-;;;;45725:198;;23330:104:::0;23386:13;23419:7;23412:14;;;;;:::i;46395:567::-;42750:10;42764:9;42750:23;42742:55;;;;-1:-1:-1;;;42742:55:0;;;;;;;:::i;:::-;46108:17:::1;::::0;::::1;;:54:::0;::::1;;;;46148:14;;46129:15;:33;;46108:54;46100:101;;;::::0;-1:-1:-1;;;46100:101:0;;11617:2:1;46100:101:0::1;::::0;::::1;11599:21:1::0;11656:2;11636:18;;;11629:30;11695:34;11675:18;;;11668:62;-1:-1:-1;;;11746:18:1;;;11739:32;11788:19;;46100:101:0::1;11415:398:1::0;46100:101:0::1;46499:7:::2;46482:13;;:24;;46474:63;;;::::0;-1:-1:-1;;;46474:63:0;;13192:2:1;46474:63:0::2;::::0;::::2;13174:21:1::0;13231:2;13211:18;;;13204:30;13270:28;13250:18;;;13243:56;13316:18;;46474:63:0::2;12990:350:1::0;46474:63:0::2;46585:7;46569:13;36552:10:::0;:17;;36464:113;46569:13:::2;:23;;;;:::i;:::-;46556:9;;:36;;46548:82;;;;-1:-1:-1::0;;;46548:82:0::2;;;;;;;:::i;:::-;46674:7;46662:9;;:19;;;;:::i;:::-;46649:9;:32;46641:64;;;::::0;-1:-1:-1;;;46641:64:0;;13547:2:1;46641:64:0::2;::::0;::::2;13529:21:1::0;13586:2;13566:18;;;13559:30;-1:-1:-1;;;13605:18:1;;;13598:49;13664:18;;46641:64:0::2;13345:343:1::0;46641:64:0::2;46737:7;46718:15;;:26;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;46762:6:0::2;::::0;-1:-1:-1;46757:198:0::2;46778:7;46774:1;:11;46757:198;;;46807:12;46822:13;36552:10:::0;:17;;36464:113;46822:13:::2;:17;::::0;46838:1:::2;46822:17;:::i;:::-;46807:32;;46872:26;46878:10;46890:7;46872:5;:26::i;:::-;46918:25;::::0;20528::1;;;46923:10:0::2;::::0;-1:-1:-1;;;;;;;;;;;46918:25:0;20516:2:1;20501:18;46918:25:0::2;;;;;;;-1:-1:-1::0;46787:3:0;::::2;::::0;::::2;:::i;:::-;;;;46757:198;;43126:143:::0;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;43194:16:::1;:27:::0;;-1:-1:-1;;;;;43194:27:0;;::::1;-1:-1:-1::0;;;;;;43194:27:0;;::::1;::::0;::::1;::::0;;;43232:9:::1;:29:::0;;;;::::1;;::::0;;43126:143::o;25013:295::-;-1:-1:-1;;;;;25116:24:0;;849:10;25116:24;;25108:62;;;;-1:-1:-1;;;25108:62:0;;12425:2:1;25108:62:0;;;12407:21:1;12464:2;12444:18;;;12437:30;12503:27;12483:18;;;12476:55;12548:18;;25108:62:0;12223:349:1;25108:62:0;849:10;25183:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25183:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25183:53:0;;;;;;;;;;25252:48;;8381:41:1;;;25183:42:0;;849:10;25252:48;;8354:18:1;25252:48:0;;;;;;;25013:295;;:::o;42974:146::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;43043:17:::1;:28:::0;;-1:-1:-1;;;;;43043:28:0;;::::1;-1:-1:-1::0;;;;;;43043:28:0;;::::1;::::0;::::1;::::0;;;43082:10:::1;:30:::0;;;;::::1;;::::0;;42974:146::o;26276:328::-;26451:41;849:10;26484:7;26451:18;:41::i;:::-;26443:103;;;;-1:-1:-1;;;26443:103:0;;;;;;;:::i;:::-;26557:39;26571:4;26577:2;26581:7;26590:5;26557:13;:39::i;:::-;26276:328;;;;:::o;47231:258::-;28179:4;28203:16;;;:7;:16;;;;;;47294:13;;-1:-1:-1;;;;;28203:16:0;47320:59;;;;-1:-1:-1;;;47320:59:0;;15850:2:1;47320:59:0;;;15832:21:1;15889:2;15869:18;;;15862:30;15928:31;15908:18;;;15901:59;15977:18;;47320:59:0;15648:353:1;47320:59:0;47421:12;47435:26;47452:8;47435:16;:26::i;:::-;47463:16;47404:76;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;47390:91;;47231:258;;;:::o;46229:158::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;46317:17:::1;:25:::0;;-1:-1:-1;;46317:25:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;46353:14:::1;:26:::0;46229:158::o;42825:143::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;42893:16:::1;:27:::0;;-1:-1:-1;;;;;42893:27:0;;::::1;-1:-1:-1::0;;;;;;42893:27:0;;::::1;::::0;::::1;::::0;;;42931:9:::1;:29:::0;;;;::::1;;::::0;;42825:143::o;2795:192::-;1968:6;;-1:-1:-1;;;;;1968:6:0;849:10;2115:23;2107:68;;;;-1:-1:-1;;;2107:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2884:22:0;::::1;2876:73;;;::::0;-1:-1:-1;;;2876:73:0;;10853:2:1;2876:73:0::1;::::0;::::1;10835:21:1::0;10892:2;10872:18;;;10865:30;10931:34;10911:18;;;10904:62;-1:-1:-1;;;10982:18:1;;;10975:36;11028:19;;2876:73:0::1;10651:402:1::0;2876:73:0::1;2960:19;2970:8;2960:9;:19::i;22216:305::-:0;22318:4;-1:-1:-1;;;;;;22355:40:0;;-1:-1:-1;;;22355:40:0;;:105;;-1:-1:-1;;;;;;;22412:48:0;;-1:-1:-1;;;22412:48:0;22355:105;:158;;;-1:-1:-1;;;;;;;;;;4732:40:0;;;22477:36;4623:157;32096:174;32171:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;32171:29:0;-1:-1:-1;;;;;32171:29:0;;;;;;;;:24;;32225:23;32171:24;32225:14;:23::i;:::-;-1:-1:-1;;;;;32216:46:0;;;;;;;;;;;32096:174;;:::o;28408:348::-;28501:4;28203:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28203:16:0;28518:73;;;;-1:-1:-1;;;28518:73:0;;12779:2:1;28518:73:0;;;12761:21:1;12818:2;12798:18;;;12791:30;12857:34;12837:18;;;12830:62;-1:-1:-1;;;12908:18:1;;;12901:42;12960:19;;28518:73:0;12577:408:1;28518:73:0;28602:13;28618:23;28633:7;28618:14;:23::i;:::-;28602:39;;28671:5;-1:-1:-1;;;;;28660:16:0;:7;-1:-1:-1;;;;;28660:16:0;;:51;;;;28704:7;-1:-1:-1;;;;;28680:31:0;:20;28692:7;28680:11;:20::i;:::-;-1:-1:-1;;;;;28680:31:0;;28660:51;:87;;;-1:-1:-1;;;;;;25500:25:0;;;25476:4;25500:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28715:32;28652:96;28408:348;-1:-1:-1;;;;28408:348:0:o;31400:578::-;31559:4;-1:-1:-1;;;;;31532:31:0;:23;31547:7;31532:14;:23::i;:::-;-1:-1:-1;;;;;31532:31:0;;31524:85;;;;-1:-1:-1;;;31524:85:0;;16982:2:1;31524:85:0;;;16964:21:1;17021:2;17001:18;;;16994:30;17060:34;17040:18;;;17033:62;-1:-1:-1;;;17111:18:1;;;17104:39;17160:19;;31524:85:0;16780:405:1;31524:85:0;-1:-1:-1;;;;;31628:16:0;;31620:65;;;;-1:-1:-1;;;31620:65:0;;12020:2:1;31620:65:0;;;12002:21:1;12059:2;12039:18;;;12032:30;12098:34;12078:18;;;12071:62;-1:-1:-1;;;12149:18:1;;;12142:34;12193:19;;31620:65:0;11818:400:1;31620:65:0;31698:39;31719:4;31725:2;31729:7;31698:20;:39::i;:::-;31802:29;31819:1;31823:7;31802:8;:29::i;:::-;-1:-1:-1;;;;;31844:15:0;;;;;;:9;:15;;;;;:20;;31863:1;;31844:15;:20;;31863:1;;31844:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31875:13:0;;;;;;:9;:13;;;;;:18;;31892:1;;31875:13;:18;;31892:1;;31875:18;:::i;:::-;;;;-1:-1:-1;;31904:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31904:21:0;-1:-1:-1;;;;;31904:21:0;;;;;;;;;31943:27;;31904:16;;31943:27;;;;;;;31400:578;;;:::o;30092:382::-;-1:-1:-1;;;;;30172:16:0;;30164:61;;;;-1:-1:-1;;;30164:61:0;;15489:2:1;30164:61:0;;;15471:21:1;;;15508:18;;;15501:30;15567:34;15547:18;;;15540:62;15619:18;;30164:61:0;15287:356:1;30164:61:0;28179:4;28203:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28203:16:0;:30;30236:58;;;;-1:-1:-1;;;30236:58:0;;11260:2:1;30236:58:0;;;11242:21:1;11299:2;11279:18;;;11272:30;11338;11318:18;;;11311:58;11386:18;;30236:58:0;11058:352:1;30236:58:0;30307:45;30336:1;30340:2;30344:7;30307:20;:45::i;:::-;-1:-1:-1;;;;;30365:13:0;;;;;;:9;:13;;;;;:18;;30382:1;;30365:13;:18;;30382:1;;30365:18;:::i;:::-;;;;-1:-1:-1;;30394:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30394:21:0;-1:-1:-1;;;;;30394:21:0;;;;;;;;30433:33;;30394:16;;;30433:33;;30394:16;;30433:33;30092:382;;:::o;2995:173::-;3070:6;;;-1:-1:-1;;;;;3087:17:0;;;-1:-1:-1;;;;;;3087:17:0;;;;;;;3120:40;;3070:6;;;3087:17;3070:6;;3120:40;;3051:16;;3120:40;3040:128;2995:173;:::o;27486:315::-;27643:28;27653:4;27659:2;27663:7;27643:9;:28::i;:::-;27690:48;27713:4;27719:2;27723:7;27732:5;27690:22;:48::i;:::-;27682:111;;;;-1:-1:-1;;;27682:111:0;;;;;;;:::i;13029:723::-;13085:13;13306:10;13302:53;;-1:-1:-1;;13333:10:0;;;;;;;;;;;;-1:-1:-1;;;13333:10:0;;;;;13029:723::o;13302:53::-;13380:5;13365:12;13421:78;13428:9;;13421:78;;13454:8;;;;:::i;:::-;;-1:-1:-1;13477:10:0;;-1:-1:-1;13485:2:0;13477:10;;:::i;:::-;;;13421:78;;;13509:19;13541:6;13531:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13531:17:0;;13509:39;;13559:154;13566:10;;13559:154;;13593:11;13603:1;13593:11;;:::i;:::-;;-1:-1:-1;13662:10:0;13670:2;13662:5;:10;:::i;:::-;13649:24;;:2;:24;:::i;:::-;13636:39;;13619:6;13626;13619:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;13619:56:0;;;;;;;;-1:-1:-1;13690:11:0;13699:2;13690:11;;:::i;:::-;;;13559:154;;37500:589;-1:-1:-1;;;;;37706:18:0;;37702:187;;37741:40;37773:7;38916:10;:17;;38889:24;;;;:15;:24;;;;;:44;;;38944:24;;;;;;;;;;;;38812:164;37741:40;37702:187;;;37811:2;-1:-1:-1;;;;;37803:10:0;:4;-1:-1:-1;;;;;37803:10:0;;37799:90;;37830:47;37863:4;37869:7;37830:32;:47::i;:::-;-1:-1:-1;;;;;37903:16:0;;37899:183;;37936:45;37973:7;37936:36;:45::i;37899:183::-;38009:4;-1:-1:-1;;;;;38003:10:0;:2;-1:-1:-1;;;;;38003:10:0;;37999:83;;38030:40;38058:2;38062:7;38030:27;:40::i;32835:799::-;32990:4;-1:-1:-1;;;;;33011:13:0;;5793:20;5841:8;33007:620;;33047:72;;-1:-1:-1;;;33047:72:0;;-1:-1:-1;;;;;33047:36:0;;;;;:72;;849:10;;33098:4;;33104:7;;33113:5;;33047:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33047:72:0;;;;;;;;-1:-1:-1;;33047:72:0;;;;;;;;;;;;:::i;:::-;;;33043:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33289:13:0;;33285:272;;33332:60;;-1:-1:-1;;;33332:60:0;;;;;;;:::i;33285:272::-;33507:6;33501:13;33492:6;33488:2;33484:15;33477:38;33043:529;-1:-1:-1;;;;;;33170:51:0;-1:-1:-1;;;33170:51:0;;-1:-1:-1;33163:58:0;;33007:620;-1:-1:-1;33611:4:0;32835:799;;;;;;:::o;39603:988::-;39869:22;39919:1;39894:22;39911:4;39894:16;:22::i;:::-;:26;;;;:::i;:::-;39931:18;39952:26;;;:17;:26;;;;;;39869:51;;-1:-1:-1;40085:28:0;;;40081:328;;-1:-1:-1;;;;;40152:18:0;;40130:19;40152:18;;;:12;:18;;;;;;;;:34;;;;;;;;;40203:30;;;;;;:44;;;40320:30;;:17;:30;;;;;:43;;;40081:328;-1:-1:-1;40505:26:0;;;;:17;:26;;;;;;;;40498:33;;;-1:-1:-1;;;;;40549:18:0;;;;;:12;:18;;;;;:34;;;;;;;40542:41;39603:988::o;40886:1079::-;41164:10;:17;41139:22;;41164:21;;41184:1;;41164:21;:::i;:::-;41196:18;41217:24;;;:15;:24;;;;;;41590:10;:26;;41139:46;;-1:-1:-1;41217:24:0;;41139:46;;41590:26;;;;;;:::i;:::-;;;;;;;;;41568:48;;41654:11;41629:10;41640;41629:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;41734:28;;;:15;:28;;;;;;;:41;;;41906:24;;;;;41899:31;41941:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;40957:1008;;;40886:1079;:::o;38390:221::-;38475:14;38492:20;38509:2;38492:16;:20::i;:::-;-1:-1:-1;;;;;38523:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;38568:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;38390:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:160::-;715:20;;771:13;;764:21;754:32;;744:60;;800:1;797;790:12;744:60;650:160;;;:::o;815:247::-;874:6;927:2;915:9;906:7;902:23;898:32;895:52;;;943:1;940;933:12;895:52;982:9;969:23;1001:31;1026:5;1001:31;:::i;:::-;1051:5;815:247;-1:-1:-1;;;815:247:1:o;1067:251::-;1137:6;1190:2;1178:9;1169:7;1165:23;1161:32;1158:52;;;1206:1;1203;1196:12;1158:52;1238:9;1232:16;1257:31;1282:5;1257:31;:::i;1323:388::-;1391:6;1399;1452:2;1440:9;1431:7;1427:23;1423:32;1420:52;;;1468:1;1465;1458:12;1420:52;1507:9;1494:23;1526:31;1551:5;1526:31;:::i;:::-;1576:5;-1:-1:-1;1633:2:1;1618:18;;1605:32;1646:33;1605:32;1646:33;:::i;:::-;1698:7;1688:17;;;1323:388;;;;;:::o;1716:456::-;1793:6;1801;1809;1862:2;1850:9;1841:7;1837:23;1833:32;1830:52;;;1878:1;1875;1868:12;1830:52;1917:9;1904:23;1936:31;1961:5;1936:31;:::i;:::-;1986:5;-1:-1:-1;2043:2:1;2028:18;;2015:32;2056:33;2015:32;2056:33;:::i;:::-;1716:456;;2108:7;;-1:-1:-1;;;2162:2:1;2147:18;;;;2134:32;;1716:456::o;2177:794::-;2272:6;2280;2288;2296;2349:3;2337:9;2328:7;2324:23;2320:33;2317:53;;;2366:1;2363;2356:12;2317:53;2405:9;2392:23;2424:31;2449:5;2424:31;:::i;:::-;2474:5;-1:-1:-1;2531:2:1;2516:18;;2503:32;2544:33;2503:32;2544:33;:::i;:::-;2596:7;-1:-1:-1;2650:2:1;2635:18;;2622:32;;-1:-1:-1;2705:2:1;2690:18;;2677:32;2732:18;2721:30;;2718:50;;;2764:1;2761;2754:12;2718:50;2787:22;;2840:4;2832:13;;2828:27;-1:-1:-1;2818:55:1;;2869:1;2866;2859:12;2818:55;2892:73;2957:7;2952:2;2939:16;2934:2;2930;2926:11;2892:73;:::i;:::-;2882:83;;;2177:794;;;;;;;:::o;2976:315::-;3041:6;3049;3102:2;3090:9;3081:7;3077:23;3073:32;3070:52;;;3118:1;3115;3108:12;3070:52;3157:9;3144:23;3176:31;3201:5;3176:31;:::i;:::-;3226:5;-1:-1:-1;3250:35:1;3281:2;3266:18;;3250:35;:::i;:::-;3240:45;;2976:315;;;;;:::o;3296:::-;3364:6;3372;3425:2;3413:9;3404:7;3400:23;3396:32;3393:52;;;3441:1;3438;3431:12;3393:52;3480:9;3467:23;3499:31;3524:5;3499:31;:::i;:::-;3549:5;3601:2;3586:18;;;;3573:32;;-1:-1:-1;;;3296:315:1:o;3616:248::-;3681:6;3689;3742:2;3730:9;3721:7;3717:23;3713:32;3710:52;;;3758:1;3755;3748:12;3710:52;3781:26;3797:9;3781:26;:::i;3869:245::-;3927:6;3980:2;3968:9;3959:7;3955:23;3951:32;3948:52;;;3996:1;3993;3986:12;3948:52;4035:9;4022:23;4054:30;4078:5;4054:30;:::i;4119:249::-;4188:6;4241:2;4229:9;4220:7;4216:23;4212:32;4209:52;;;4257:1;4254;4247:12;4209:52;4289:9;4283:16;4308:30;4332:5;4308:30;:::i;4373:450::-;4442:6;4495:2;4483:9;4474:7;4470:23;4466:32;4463:52;;;4511:1;4508;4501:12;4463:52;4551:9;4538:23;4584:18;4576:6;4573:30;4570:50;;;4616:1;4613;4606:12;4570:50;4639:22;;4692:4;4684:13;;4680:27;-1:-1:-1;4670:55:1;;4721:1;4718;4711:12;4670:55;4744:73;4809:7;4804:2;4791:16;4786:2;4782;4778:11;4744:73;:::i;4828:180::-;4887:6;4940:2;4928:9;4919:7;4915:23;4911:32;4908:52;;;4956:1;4953;4946:12;4908:52;-1:-1:-1;4979:23:1;;4828:180;-1:-1:-1;4828:180:1:o;5013:184::-;5083:6;5136:2;5124:9;5115:7;5111:23;5107:32;5104:52;;;5152:1;5149;5142:12;5104:52;-1:-1:-1;5175:16:1;;5013:184;-1:-1:-1;5013:184:1:o;5202:257::-;5243:3;5281:5;5275:12;5308:6;5303:3;5296:19;5324:63;5380:6;5373:4;5368:3;5364:14;5357:4;5350:5;5346:16;5324:63;:::i;:::-;5441:2;5420:15;-1:-1:-1;;5416:29:1;5407:39;;;;5448:4;5403:50;;5202:257;-1:-1:-1;;5202:257:1:o;5464:973::-;5549:12;;5514:3;;5604:1;5624:18;;;;5677;;;;5704:61;;5758:4;5750:6;5746:17;5736:27;;5704:61;5784:2;5832;5824:6;5821:14;5801:18;5798:38;5795:161;;;5878:10;5873:3;5869:20;5866:1;5859:31;5913:4;5910:1;5903:15;5941:4;5938:1;5931:15;5795:161;5972:18;5999:104;;;;6117:1;6112:319;;;;5965:466;;5999:104;-1:-1:-1;;6032:24:1;;6020:37;;6077:16;;;;-1:-1:-1;5999:104:1;;6112:319;20637:1;20630:14;;;20674:4;20661:18;;6206:1;6220:165;6234:6;6231:1;6228:13;6220:165;;;6312:14;;6299:11;;;6292:35;6355:16;;;;6249:10;;6220:165;;;6224:3;;6414:6;6409:3;6405:16;6398:23;;5965:466;;;;;;;5464:973;;;;:::o;6442:456::-;6663:3;6691:38;6725:3;6717:6;6691:38;:::i;:::-;6758:6;6752:13;6774:52;6819:6;6815:2;6808:4;6800:6;6796:17;6774:52;:::i;:::-;6842:50;6884:6;6880:2;6876:15;6868:6;6842:50;:::i;:::-;6835:57;6442:456;-1:-1:-1;;;;;;;6442:456:1:o;7111:488::-;-1:-1:-1;;;;;7380:15:1;;;7362:34;;7432:15;;7427:2;7412:18;;7405:43;7479:2;7464:18;;7457:34;;;7527:3;7522:2;7507:18;;7500:31;;;7305:4;;7548:45;;7573:19;;7565:6;7548:45;:::i;:::-;7540:53;7111:488;-1:-1:-1;;;;;;7111:488:1:o;7604:632::-;7775:2;7827:21;;;7897:13;;7800:18;;;7919:22;;;7746:4;;7775:2;7998:15;;;;7972:2;7957:18;;;7746:4;8041:169;8055:6;8052:1;8049:13;8041:169;;;8116:13;;8104:26;;8185:15;;;;8150:12;;;;8077:1;8070:9;8041:169;;;-1:-1:-1;8227:3:1;;7604:632;-1:-1:-1;;;;;;7604:632:1:o;8433:219::-;8582:2;8571:9;8564:21;8545:4;8602:44;8642:2;8631:9;8627:18;8619:6;8602:44;:::i;9059:397::-;9261:2;9243:21;;;9300:2;9280:18;;;9273:30;9339:34;9334:2;9319:18;;9312:62;-1:-1:-1;;;9405:2:1;9390:18;;9383:31;9446:3;9431:19;;9059:397::o;10232:414::-;10434:2;10416:21;;;10473:2;10453:18;;;10446:30;10512:34;10507:2;10492:18;;10485:62;-1:-1:-1;;;10578:2:1;10563:18;;10556:48;10636:3;10621:19;;10232:414::o;14939:343::-;15141:2;15123:21;;;15180:2;15160:18;;;15153:30;-1:-1:-1;;;15214:2:1;15199:18;;15192:49;15273:2;15258:18;;14939:343::o;16419:356::-;16621:2;16603:21;;;16640:18;;;16633:30;16699:34;16694:2;16679:18;;16672:62;16766:2;16751:18;;16419:356::o;18784:413::-;18986:2;18968:21;;;19025:2;19005:18;;;18998:30;19064:34;19059:2;19044:18;;19037:62;-1:-1:-1;;;19130:2:1;19115:18;;19108:47;19187:3;19172:19;;18784:413::o;20690:128::-;20730:3;20761:1;20757:6;20754:1;20751:13;20748:39;;;20767:18;;:::i;:::-;-1:-1:-1;20803:9:1;;20690:128::o;20823:120::-;20863:1;20889;20879:35;;20894:18;;:::i;:::-;-1:-1:-1;20928:9:1;;20823:120::o;20948:168::-;20988:7;21054:1;21050;21046:6;21042:14;21039:1;21036:21;21031:1;21024:9;21017:17;21013:45;21010:71;;;21061:18;;:::i;:::-;-1:-1:-1;21101:9:1;;20948:168::o;21121:125::-;21161:4;21189:1;21186;21183:8;21180:34;;;21194:18;;:::i;:::-;-1:-1:-1;21231:9:1;;21121:125::o;21251:258::-;21323:1;21333:113;21347:6;21344:1;21341:13;21333:113;;;21423:11;;;21417:18;21404:11;;;21397:39;21369:2;21362:10;21333:113;;;21464:6;21461:1;21458:13;21455:48;;;-1:-1:-1;;21499:1:1;21481:16;;21474:27;21251:258::o;21514:380::-;21593:1;21589:12;;;;21636;;;21657:61;;21711:4;21703:6;21699:17;21689:27;;21657:61;21764:2;21756:6;21753:14;21733:18;21730:38;21727:161;;;21810:10;21805:3;21801:20;21798:1;21791:31;21845:4;21842:1;21835:15;21873:4;21870:1;21863:15;21727:161;;21514:380;;;:::o;21899:135::-;21938:3;-1:-1:-1;;21959:17:1;;21956:43;;;21979:18;;:::i;:::-;-1:-1:-1;22026:1:1;22015:13;;21899:135::o;22039:112::-;22071:1;22097;22087:35;;22102:18;;:::i;:::-;-1:-1:-1;22136:9:1;;22039:112::o;22156:127::-;22217:10;22212:3;22208:20;22205:1;22198:31;22248:4;22245:1;22238:15;22272:4;22269:1;22262:15;22288:127;22349:10;22344:3;22340:20;22337:1;22330:31;22380:4;22377:1;22370:15;22404:4;22401:1;22394:15;22420:127;22481:10;22476:3;22472:20;22469:1;22462:31;22512:4;22509:1;22502:15;22536:4;22533:1;22526:15;22552:127;22613:10;22608:3;22604:20;22601:1;22594:31;22644:4;22641:1;22634:15;22668:4;22665:1;22658:15;22684:127;22745:10;22740:3;22736:20;22733:1;22726:31;22776:4;22773:1;22766:15;22800:4;22797:1;22790:15;22816:131;-1:-1:-1;;;;;22891:31:1;;22881:42;;22871:70;;22937:1;22934;22927:12;22952:131;-1:-1:-1;;;;;;23026:32:1;;23016:43;;23006:71;;23073:1;23070;23063:12
Swarm Source
ipfs://460ad1dc221ecd2ba58a18d99e6112b5b5767d967ae4f7c45a50c612cef69c42
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.