Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 42 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Update Paused St... | 16141978 | 780 days ago | IN | 0 ETH | 0.00102403 | ||||
Safe Transfer Fr... | 16141976 | 780 days ago | IN | 0 ETH | 0.00322415 | ||||
Update Paused St... | 16141973 | 780 days ago | IN | 0 ETH | 0.00099566 | ||||
Update Paused St... | 15976541 | 803 days ago | IN | 0 ETH | 0.00056444 | ||||
Mint | 15976539 | 803 days ago | IN | 0 ETH | 0.0044544 | ||||
Update Paused St... | 15976537 | 803 days ago | IN | 0 ETH | 0.00055608 | ||||
White List | 15970516 | 804 days ago | IN | 0 ETH | 0.00637654 | ||||
White List | 15970511 | 804 days ago | IN | 0 ETH | 0.01048512 | ||||
White List | 15970509 | 804 days ago | IN | 0 ETH | 0.01030244 | ||||
White List | 15970509 | 804 days ago | IN | 0 ETH | 0.00288816 | ||||
White List | 15970506 | 804 days ago | IN | 0 ETH | 0.00277986 | ||||
White List | 15970494 | 804 days ago | IN | 0 ETH | 0.01749793 | ||||
White List | 15970491 | 804 days ago | IN | 0 ETH | 0.00851434 | ||||
White List | 15970490 | 804 days ago | IN | 0 ETH | 0.00663111 | ||||
White List | 15970487 | 804 days ago | IN | 0 ETH | 0.00504552 | ||||
White List | 15970485 | 804 days ago | IN | 0 ETH | 0.00512709 | ||||
White List | 15970481 | 804 days ago | IN | 0 ETH | 0.00476273 | ||||
White List | 15970479 | 804 days ago | IN | 0 ETH | 0.00408274 | ||||
White List | 15970476 | 804 days ago | IN | 0 ETH | 0.00163041 | ||||
White List | 15970474 | 804 days ago | IN | 0 ETH | 0.00168115 | ||||
White List | 15970472 | 804 days ago | IN | 0 ETH | 0.00165326 | ||||
White List | 15970471 | 804 days ago | IN | 0 ETH | 0.00164335 | ||||
White List | 15970467 | 804 days ago | IN | 0 ETH | 0.01992902 | ||||
White List | 15962896 | 805 days ago | IN | 0 ETH | 0.0012545 | ||||
White List | 15962615 | 805 days ago | IN | 0 ETH | 0.00129824 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
LilHomies
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-11-10 */ /** /|\( ;,;)/|\ */ //SPDX-License-Identifier: MIT pragma solidity ^0.8.7; contract ClampedRandomizer { uint256 private _scopeIndex = 0; //Clamping cache for random TokenID generation in the anti-sniping algo uint256 private immutable _scopeCap; //Size of initial randomized number pool & max generated value (zero indexed) mapping(uint256 => uint256) _swappedIDs; //TokenID cache for random TokenID generation in the anti-sniping algo constructor(uint256 scopeCap) { _scopeCap = scopeCap; } function _genClampedNonce() internal virtual returns(uint256) { uint256 scope = _scopeCap-_scopeIndex; uint256 swap; uint256 result; uint256 i = randomNumber() % scope; //Setup the value to swap in for the selected number if (_swappedIDs[scope-1] == 0){ swap = scope-1; } else { swap = _swappedIDs[scope-1]; } //Select a random number, swap it out with an unselected one then shorten the selection range by 1 if (_swappedIDs[i] == 0){ result = i; _swappedIDs[i] = swap; } else { result = _swappedIDs[i]; _swappedIDs[i] = swap; } _scopeIndex++; return result; } function randomNumber() internal view returns(uint256){ return uint256(keccak256(abi.encodePacked(block.difficulty, block.timestamp))); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer( address indexed from, address indexed to, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval( address indexed owner, address indexed approved, uint256 indexed tokenId ); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll( address indexed owner, address indexed operator, bool approved ); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require( address(this).balance >= amount, "Address: insufficient balance" ); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{value: amount}(""); require( success, "Address: unable to send value, recipient may have reverted" ); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue( target, data, value, "Address: low-level call with value failed" ); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require( address(this).balance >= value, "Address: insufficient balance for call" ); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{value: value}( data ); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall( target, data, "Address: low-level static call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall( target, data, "Address: low-level delegate call failed" ); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant alphabet = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = alphabet[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File @openzeppelin/contracts/utils/introspection/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File @openzeppelin/contracts/token/ERC721/[email protected] pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require( owner != address(0), "ERC721: balance query for the zero address" ); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require( owner != address(0), "ERC721: owner query for nonexistent token" ); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden * in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } function _baseExtension() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require( _exists(tokenId), "ERC721: approved query for nonexistent token" ); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved" ); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require( _exists(tokenId), "ERC721: operator query for nonexistent token" ); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require( ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own" ); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received( _msgSender(), from, tokenId, _data ) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert( "ERC721: transfer to non ERC721Receiver implementer" ); } else { // solhint-disable-next-line no-inline-assembly assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require( index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds" ); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require( index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds" ); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @dev ERC721 token with storage based token URI management. */ abstract contract ERC721URIStorage is ERC721 { using Strings for uint256; // Optional mapping for token URIs mapping(uint256 => string) private _tokenURIs; /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721URIStorage: URI query for nonexistent token" ); string memory base = _baseURI(); string memory ext = _baseExtension(); return string(abi.encodePacked(base, (tokenId).toString(), ext)); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require( _exists(tokenId), "ERC721URIStorage: URI set of nonexistent token" ); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual override { super._burn(tokenId); if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } } } // File @openzeppelin/contracts/security/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File @openzeppelin/contracts/access/[email protected] pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File @openzeppelin/contracts/token/ERC721/extensions/[email protected] pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require( _isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved" ); _burn(tokenId); } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } } pragma solidity ^0.8.7; /** * @dev Interface for the NFT Royalty Standard */ interface IERC2981 is IERC165 { /** * @dev Called with the sale price to determine how much royalty is owed and to whom. * @param tokenId - the NFT asset queried for royalty information * @param salePrice - the sale price of the NFT asset specified by `tokenId` * @return receiver - address of who should be sent the royalty payment * @return royaltyAmount - the royalty payment amount for `salePrice` */ function royaltyInfo(uint256 tokenId, uint256 salePrice) external view returns (address receiver, uint256 royaltyAmount); } interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } library SafeMath { function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } pragma solidity ^0.8.0; contract LilHomies is ERC721, ERC721Enumerable, ERC721URIStorage, IERC2981, Pausable, Ownable, ERC721Burnable, ClampedRandomizer { modifier onlyDevs { require(devFees[msg.sender].percent > 0 , "Dev Only: caller is not the developer"); _; } event WithdrawFees(address indexed devAddress, uint256 amount); event WithdrawWrongTokens(address indexed devAddress,address tokenAddress, uint256 amount); event WithdrawWrongNfts(address indexed devAddress,address tokenAddress, uint256 tokenId); event Migration(address indexed _to, uint256 indexed _tokenId); using Counters for Counters.Counter; using SafeMath for uint256; using Address for address; address public royaltyAddress = 0xF72dC77AC3E6B5F904aDE55Dba0107e4a741481b; string public baseURI; string public baseExtension = ".json"; // VARIABLES uint256 public maxSupply = 5555; uint256 public maxPerTx = 1; uint256 public maxPerPerson = 5; uint256 public price = 0 ether; uint256 public royalty = 600; // COLLECTED FESS struct DevFee { uint256 percent; uint256 amount; } mapping(address => DevFee) public devFees; address[] private devList; bool public whitelistedOnly = true; mapping(address => uint256) public whiteListed; constructor(address[] memory _devList, uint256[] memory _fees) ERC721("Lil Homies", "LILH") ClampedRandomizer(maxSupply) { require(_devList.length == _fees.length, "Error: invalid data"); uint256 totalFee = 0; for(uint8 i = 0; i <_devList.length; i++) { devList.push(_devList[i]); devFees[_devList[i]] = DevFee(_fees[i], 0); totalFee += _fees[i]; } require(totalFee == 10000,"Error: invalid total fee"); _pause(); } function _baseExtension() internal view override returns (string memory) { return baseExtension; } function _baseURI() internal view override returns (string memory) { return baseURI; } function splitFees(uint256 sentAmount) internal { for(uint8 i = 0;i < devList.length; i++) { address devAddress = devList[i]; uint256 devFee = devFees[devAddress].percent; uint256 devFeeAmount = sentAmount.mul(devFee).div(10000); devFees[devAddress].amount += devFeeAmount; } } function mint(uint256 amount) public payable whenNotPaused { uint256 supply = totalSupply(); require(amount > 0 && amount <= maxPerTx,"Error: max par tx limit"); require(balanceOf(msg.sender) + 1 <= maxPerPerson,"Error: max per address limit"); require(msg.value == price * amount, "Error: invalid price"); require(supply + amount - 1 < maxSupply, "Error: cannot mint more than total supply"); if(whitelistedOnly) require(whiteListed[msg.sender] >= amount,"Error: you are not whitelisted or amount is higher than limit"); for (uint256 i = 0; i < amount; i++) { internalMint(msg.sender); if(whitelistedOnly) whiteListed[msg.sender] -= 1; } splitFees(msg.value); } function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) { return super.tokenURI(tokenId); } function Owned(address _owner) external view returns (uint256[] memory) { uint256 tokenCount = balanceOf(_owner); if (tokenCount == 0) { return new uint256[](0); } else { uint256[] memory result = new uint256[](tokenCount); uint256 index; for (index = 0; index < tokenCount; index++) { result[index] = tokenOfOwnerByIndex(_owner, index); } return result; } } function tokenExists(uint256 _id) external view returns (bool) { return (_exists(_id)); } function royaltyInfo(uint256, uint256 _salePrice) external view override returns (address receiver, uint256 royaltyAmount) { return (royaltyAddress, (_salePrice * royalty) / 10000); } //dev function whiteList(address[] memory _addressList, uint256 count) external onlyOwner { require(_addressList.length > 0,"Error: list is empty"); for(uint256 i = 0;i < _addressList.length; i++) { require(_addressList[i] != address(0), "Address cannot be 0."); whiteListed[_addressList[i]] = count; } } function removeWhiteList(address[] memory addressList) external onlyOwner { require(addressList.length > 0,"Error: list is empty"); for(uint256 i = 0;i<addressList.length;i++) whiteListed[addressList[i]] = 0; } function updateWhitelistStatus() external onlyOwner { whitelistedOnly = !whitelistedOnly; } function updatePausedStatus() external onlyOwner { paused() ? _unpause() : _pause(); } function setMaxPerPerson(uint256 newMaxBuy) external onlyOwner { maxPerPerson = newMaxBuy; } function setMaxPerTx(uint256 newMaxBuy) external onlyOwner { maxPerTx = newMaxBuy; } function setBaseURI(string memory newBaseURI) external onlyOwner { baseURI = newBaseURI; } function setPrice(uint256 newPrice) external onlyOwner { price = newPrice; } function setURI(uint256 tokenId, string memory uri) external onlyOwner { _setTokenURI(tokenId, uri); } function setRoyalty(uint16 _royalty) external onlyOwner { require(_royalty >= 0, "Royalty must be greater than or equal to 0%"); require(_royalty <= 750, "Royalty must be greater than or equal to 7,5%" ); royalty = _royalty; } function setRoyaltyAddress(address _royaltyAddress) external onlyOwner { royaltyAddress = _royaltyAddress; } //Overrides function internalMint(address to) internal { uint256 tokenId = _genClampedNonce() + 1; _safeMint(to, tokenId); } function safeMint(address to) public onlyOwner { internalMint(to); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable, IERC165) returns (bool) { return interfaceId == type(IERC2981).interfaceId || super.supportsInterface(interfaceId); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) whenNotPaused { super._beforeTokenTransfer(from, to, tokenId); } function _burn(uint256 tokenId) internal override(ERC721, ERC721URIStorage) { super._burn(tokenId); } /// @dev withdraw fees function withdraw() external onlyDevs { uint256 amount = devFees[msg.sender].amount; require(amount > 0,"Error: no fees :("); payable(msg.sender).transfer(amount); devFees[msg.sender].amount = 0; emit WithdrawFees(msg.sender,amount); } /// @dev emergency withdraw contract balance to the contract owner function emergencyWithdraw() external onlyOwner { uint256 amount = address(this).balance; require(amount > 0,"Error: no fees :("); payable(msg.sender).transfer(amount); for(uint8 i = 0;i < devList.length; i++) { address devAddress = devList[i]; devFees[devAddress].amount = 0; } emit WithdrawFees(msg.sender,amount); } /// @dev withdraw ERC20 tokens function withdrawTokens(address _tokenContract) external onlyOwner { IERC20 tokenContract = IERC20(_tokenContract); uint256 _amount = tokenContract.balanceOf(address(this)); tokenContract.transfer(owner(), _amount); emit WithdrawWrongTokens(msg.sender,_tokenContract,_amount); } function airdropsToken(address[] memory _addr, uint256 amount) public onlyOwner { for (uint256 i = 0; i < _addr.length; i++) { airdropTokenInternal(amount,_addr[i]); } } function airdropTokenInternal(uint256 amount, address _addr) internal { for (uint256 i = 0; i < amount; i++) { internalMint(_addr); } } /// @dev withdraw ERC721 tokens to the contract owner function withdrawNFT(address _tokenContract, uint256[] memory _id) external onlyOwner { IERC721 tokenContract = IERC721(_tokenContract); for (uint256 i = 0; i < _id.length; i++) { tokenContract.safeTransferFrom(address(this), owner(), _id[i]); emit WithdrawWrongNfts(msg.sender,_tokenContract,_id[i]); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"_devList","type":"address[]"},{"internalType":"uint256[]","name":"_fees","type":"uint256[]"}],"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":true,"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"Migration","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"devAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"devAddress","type":"address"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"WithdrawWrongNfts","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"devAddress","type":"address"},{"indexed":false,"internalType":"address","name":"tokenAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"WithdrawWrongTokens","type":"event"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"Owned","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addr","type":"address[]"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdropsToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"devFees","outputs":[{"internalType":"uint256","name":"percent","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerPerson","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addressList","type":"address[]"}],"name":"removeWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"royaltyAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"royaltyAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"safeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"}],"name":"setMaxPerPerson","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxBuy","type":"uint256"}],"name":"setMaxPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_royalty","type":"uint16"}],"name":"setRoyalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_royaltyAddress","type":"address"}],"name":"setRoyaltyAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"uri","type":"string"}],"name":"setURI","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":"uint256","name":"_id","type":"uint256"}],"name":"tokenExists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"updatePausedStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addressList","type":"address[]"},{"internalType":"uint256","name":"count","type":"uint256"}],"name":"whiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteListed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistedOnly","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256[]","name":"_id","type":"uint256[]"}],"name":"withdrawNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6000600c55600e80546001600160a01b03191673f72dc77ac3e6b5f904ade55dba0107e4a741481b17905560e0604052600560a081905264173539b7b760d91b60c0908152620000539160109190620003fc565b506115b360115560016012819055600560135560006014556102586015556018805460ff191690911790553480156200008b57600080fd5b506040516200422a3803806200422a833981016040819052620000ae9162000584565b601154604080518082018252600a8152694c696c20486f6d69657360b01b6020808301918252835180850190945260048452630989298960e31b908401528151919291620000ff91600091620003fc565b50805162000115906001906020840190620003fc565b5050600b80546001600160a81b0319163361010081029190911790915560405190915081906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506080528051825114620001bd5760405162461bcd60e51b815260206004820152601360248201527f4572726f723a20696e76616c696420646174610000000000000000000000000060448201526064015b60405180910390fd5b6000805b83518160ff161015620002fa576017848260ff1681518110620001e857620001e862000662565b60209081029190910181015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b039092169190911790556040805180820190915283518190859060ff851690811062000249576200024962000662565b60200260200101518152602001600081525060166000868460ff168151811062000277576200027762000662565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000206000820151816000015560208201518160010155905050828160ff1681518110620002ce57620002ce62000662565b602002602001015182620002e391906200068e565b915080620002f181620006a9565b915050620001c1565b5080612710146200034e5760405162461bcd60e51b815260206004820152601860248201527f4572726f723a20696e76616c696420746f74616c2066656500000000000000006044820152606401620001b4565b6200035862000361565b50505062000707565b600b5460ff1615620003a95760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620001b4565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620003df3390565b6040516001600160a01b03909116815260200160405180910390a1565b8280546200040a90620006cb565b90600052602060002090601f0160209004810192826200042e576000855562000479565b82601f106200044957805160ff191683800117855562000479565b8280016001018555821562000479579182015b82811115620004795782518255916020019190600101906200045c565b50620004879291506200048b565b5090565b5b808211156200048757600081556001016200048c565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620004e357620004e3620004a2565b604052919050565b60006001600160401b03821115620005075762000507620004a2565b5060051b60200190565b600082601f8301126200052357600080fd5b815160206200053c6200053683620004eb565b620004b8565b82815260059290921b840181019181810190868411156200055c57600080fd5b8286015b8481101562000579578051835291830191830162000560565b509695505050505050565b600080604083850312156200059857600080fd5b82516001600160401b0380821115620005b057600080fd5b818501915085601f830112620005c557600080fd5b81516020620005d86200053683620004eb565b82815260059290921b84018101918181019089841115620005f857600080fd5b948201945b838610156200062f5785516001600160a01b03811681146200061f5760008081fd5b82529482019490820190620005fd565b918801519196509093505050808211156200064957600080fd5b50620006588582860162000511565b9150509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115620006a457620006a462000678565b500190565b600060ff821660ff8103620006c257620006c262000678565b60010192915050565b600181811c90821680620006e057607f821691505b6020821081036200070157634e487b7160e01b600052602260045260246000fd5b50919050565b608051613b076200072360003960006128190152613b076000f3fe6080604052600436106103195760003560e01c806370a08231116101ab578063ad2f852a116100f7578063d5abeb0111610095578063f147efeb1161006f578063f147efeb1461092b578063f2fde38b14610974578063f968adbe14610994578063fa0fca84146109aa57600080fd5b8063d5abeb01146108b7578063db2e21bc146108cd578063e985e9c5146108e257600080fd5b8063c6682862116100d1578063c668286214610835578063c6f6f2161461084a578063c87b56dd1461086a578063d2f8dd451461088a57600080fd5b8063ad2f852a146107e0578063b88d4fde14610800578063b9bfa0bc1461082057600080fd5b80639186b425116101645780639bdedea51161013e5780639bdedea514610777578063a035b1fe14610797578063a0712d68146107ad578063a22cb465146107c057600080fd5b80639186b4251461072857806391b7f5ed1461074257806395d89b411461076257600080fd5b806370a082311461067a578063715018a61461069a578063768d7138146106af5780637e0586f1146106c5578063862440e2146106e55780638da5cb5b1461070557600080fd5b8063397457911161026a57806349df728c116102235780635c975abb116101fd5780635c975abb146106185780636352211e1461063057806367dded4d146106505780636c0360eb1461066557600080fd5b806349df728c146105b85780634f6ccce7146105d857806355f804b3146105f857600080fd5b806339745791146105035780633ccfd60b1461052357806340d097c31461053857806342842e0e1461055857806342966c6814610578578063483efda21461059857600080fd5b806318160ddd116102d757806329ee566c116102b157806329ee566c1461046e5780632a55205a146104845780632f745c59146104c357806336e79a5a146104e357600080fd5b806318160ddd1461040f57806323b872dd1461042e57806329413b121461044e57600080fd5b8062923f9e1461031e57806301ffc9a71461035357806306d254da1461037357806306fdde0314610395578063081812fc146103b7578063095ea7b3146103ef575b600080fd5b34801561032a57600080fd5b5061033e610339366004613201565b6109d7565b60405190151581526020015b60405180910390f35b34801561035f57600080fd5b5061033e61036e366004613230565b6109e8565b34801561037f57600080fd5b5061039361038e366004613269565b610a0d565b005b3480156103a157600080fd5b506103aa610a68565b60405161034a91906132dc565b3480156103c357600080fd5b506103d76103d2366004613201565b610afa565b6040516001600160a01b03909116815260200161034a565b3480156103fb57600080fd5b5061039361040a3660046132ef565b610b82565b34801561041b57600080fd5b506008545b60405190815260200161034a565b34801561043a57600080fd5b50610393610449366004613319565b610c97565b34801561045a57600080fd5b50610393610469366004613432565b610cc9565b34801561047a57600080fd5b5061042060155481565b34801561049057600080fd5b506104a461049f366004613477565b610d3a565b604080516001600160a01b03909316835260208301919091520161034a565b3480156104cf57600080fd5b506104206104de3660046132ef565b610d74565b3480156104ef57600080fd5b506103936104fe366004613499565b610e0a565b34801561050f57600080fd5b5061039361051e3660046134bd565b610eaf565b34801561052f57600080fd5b50610393610f8e565b34801561054457600080fd5b50610393610553366004613269565b6110cc565b34801561056457600080fd5b50610393610573366004613319565b611108565b34801561058457600080fd5b50610393610593366004613201565b611123565b3480156105a457600080fd5b506103936105b3366004613201565b61119a565b3480156105c457600080fd5b506103936105d3366004613269565b6111cf565b3480156105e457600080fd5b506104206105f3366004613201565b611350565b34801561060457600080fd5b5061039361061336600461356a565b6113e3565b34801561062457600080fd5b50600b5460ff1661033e565b34801561063c57600080fd5b506103d761064b366004613201565b611426565b34801561065c57600080fd5b5061039361149d565b34801561067157600080fd5b506103aa6114e9565b34801561068657600080fd5b50610420610695366004613269565b611577565b3480156106a657600080fd5b506103936115fe565b3480156106bb57600080fd5b5061042060135481565b3480156106d157600080fd5b506103936106e0366004613432565b61167e565b3480156106f157600080fd5b5061039361070036600461359f565b6117ca565b34801561071157600080fd5b50600b5461010090046001600160a01b03166103d7565b34801561073457600080fd5b5060185461033e9060ff1681565b34801561074e57600080fd5b5061039361075d366004613201565b611804565b34801561076e57600080fd5b506103aa611839565b34801561078357600080fd5b506103936107923660046135e6565b611848565b3480156107a357600080fd5b5061042060145481565b6103936107bb366004613201565b6119b9565b3480156107cc57600080fd5b506103936107db366004613698565b611c68565b3480156107ec57600080fd5b50600e546103d7906001600160a01b031681565b34801561080c57600080fd5b5061039361081b3660046136cf565b611d2c565b34801561082c57600080fd5b50610393611d5e565b34801561084157600080fd5b506103aa611da2565b34801561085657600080fd5b50610393610865366004613201565b611daf565b34801561087657600080fd5b506103aa610885366004613201565b611de4565b34801561089657600080fd5b506108aa6108a5366004613269565b611def565b60405161034a919061374b565b3480156108c357600080fd5b5061042060115481565b3480156108d957600080fd5b50610393611eb1565b3480156108ee57600080fd5b5061033e6108fd36600461378f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561093757600080fd5b5061095f610946366004613269565b6016602052600090815260409020805460019091015482565b6040805192835260208301919091520161034a565b34801561098057600080fd5b5061039361098f366004613269565b611fe4565b3480156109a057600080fd5b5061042060125481565b3480156109b657600080fd5b506104206109c5366004613269565b60196020526000908152604090205481565b60006109e2826120e0565b92915050565b60006001600160e01b0319821663152a902d60e11b14806109e257506109e2826120fd565b600b546001600160a01b03610100909104163314610a465760405162461bcd60e51b8152600401610a3d906137c2565b60405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610a77906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa3906137f7565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b5050505050905090565b6000610b05826120e0565b610b665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3d565b506000908152600460205260409020546001600160a01b031690565b6000610b8d82611426565b9050806001600160a01b0316836001600160a01b031603610bfa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a3d565b336001600160a01b0382161480610c165750610c1681336108fd565b610c885760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a3d565b610c928383612122565b505050565b610ca2335b82612190565b610cbe5760405162461bcd60e51b8152600401610a3d9061382b565b610c9283838361227a565b600b546001600160a01b03610100909104163314610cf95760405162461bcd60e51b8152600401610a3d906137c2565b60005b8251811015610c9257610d2882848381518110610d1b57610d1b61387c565b6020026020010151612425565b80610d32816138a8565b915050610cfc565b600e5460155460009182916001600160a01b039091169061271090610d5f90866138c1565b610d6991906138f6565b915091509250929050565b6000610d7f83611577565b8210610de15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a3d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610e3a5760405162461bcd60e51b8152600401610a3d906137c2565b6102ee8161ffff161115610ea65760405162461bcd60e51b815260206004820152602d60248201527f526f79616c7479206d7573742062652067726561746572207468616e206f722060448201526c657175616c20746f20372c352560981b6064820152608401610a3d565b61ffff16601555565b600b546001600160a01b03610100909104163314610edf5760405162461bcd60e51b8152600401610a3d906137c2565b6000815111610f275760405162461bcd60e51b81526020600482015260146024820152734572726f723a206c69737420697320656d70747960601b6044820152606401610a3d565b60005b8151811015610f8a57600060196000848481518110610f4b57610f4b61387c565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610f82906138a8565b915050610f2a565b5050565b33600090815260166020526040902054610ff85760405162461bcd60e51b815260206004820152602560248201527f446576204f6e6c793a2063616c6c6572206973206e6f742074686520646576656044820152643637b832b960d91b6064820152608401610a3d565b336000908152601660205260409020600101548061104c5760405162461bcd60e51b815260206004820152601160248201527008ae4e4dee47440dcde40cccacae640745607b1b6044820152606401610a3d565b604051339082156108fc029083906000818181858888f19350505050158015611079573d6000803e3d6000fd5b503360008181526016602052604080822060010191909155517f9bba815921f12cb7b1408e14b5ade745234397d39623ae5e7c82d693cb45815f906110c19084815260200190565b60405180910390a250565b600b546001600160a01b036101009091041633146110fc5760405162461bcd60e51b8152600401610a3d906137c2565b6111058161244b565b50565b610c9283838360405180602001604052806000815250611d2c565b61112c33610c9c565b6111915760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a3d565b6111058161246c565b600b546001600160a01b036101009091041633146111ca5760405162461bcd60e51b8152600401610a3d906137c2565b601355565b600b546001600160a01b036101009091041633146111ff5760405162461bcd60e51b8152600401610a3d906137c2565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611248573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126c919061390a565b9050816001600160a01b031663a9059cbb611295600b546001600160a01b036101009091041690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156112e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113069190613923565b50604080516001600160a01b03851681526020810183905233917f5aa586896a67fb05c3b86276f66eecee7da00719d0e7299c403596fa2ec58ca4910160405180910390a2505050565b600061135b60085490565b82106113be5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a3d565b600882815481106113d1576113d161387c565b90600052602060002001549050919050565b600b546001600160a01b036101009091041633146114135760405162461bcd60e51b8152600401610a3d906137c2565b8051610f8a90600f906020840190613132565b6000818152600260205260408120546001600160a01b0316806109e25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a3d565b600b546001600160a01b036101009091041633146114cd5760405162461bcd60e51b8152600401610a3d906137c2565b600b5460ff166114e1576114df612475565b565b6114df6124ea565b600f80546114f6906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611522906137f7565b801561156f5780601f106115445761010080835404028352916020019161156f565b820191906000526020600020905b81548152906001019060200180831161155257829003601f168201915b505050505081565b60006001600160a01b0382166115e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a3d565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b0361010090910416331461162e5760405162461bcd60e51b8152600401610a3d906137c2565b600b5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b8054610100600160a81b0319169055565b600b546001600160a01b036101009091041633146116ae5760405162461bcd60e51b8152600401610a3d906137c2565b60008251116116f65760405162461bcd60e51b81526020600482015260146024820152734572726f723a206c69737420697320656d70747960601b6044820152606401610a3d565b60005b8251811015610c925760006001600160a01b031683828151811061171f5761171f61387c565b60200260200101516001600160a01b0316036117745760405162461bcd60e51b815260206004820152601460248201527320b2323932b9b99031b0b73737ba10313290181760611b6044820152606401610a3d565b816019600085848151811061178b5761178b61387c565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806117c2906138a8565b9150506116f9565b600b546001600160a01b036101009091041633146117fa5760405162461bcd60e51b8152600401610a3d906137c2565b610f8a8282612564565b600b546001600160a01b036101009091041633146118345760405162461bcd60e51b8152600401610a3d906137c2565b601455565b606060018054610a77906137f7565b600b546001600160a01b036101009091041633146118785760405162461bcd60e51b8152600401610a3d906137c2565b8160005b82518110156119b357816001600160a01b03166342842e0e306118ad600b546001600160a01b036101009091041690565b8685815181106118bf576118bf61387c565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561191957600080fd5b505af115801561192d573d6000803e3d6000fd5b50505050336001600160a01b03167fb8dbf4ce06446b88ef02ffd28a948c2637ac80fb0bd4d3a31c70878c1046eb7f8585848151811061196f5761196f61387c565b60200260200101516040516119999291906001600160a01b03929092168252602082015260400190565b60405180910390a2806119ab816138a8565b91505061187c565b50505050565b600b5460ff16156119dc5760405162461bcd60e51b8152600401610a3d90613940565b60006119e760085490565b90506000821180156119fb57506012548211155b611a475760405162461bcd60e51b815260206004820152601760248201527f4572726f723a206d617820706172207478206c696d69740000000000000000006044820152606401610a3d565b601354611a5333611577565b611a5e90600161396a565b1115611aac5760405162461bcd60e51b815260206004820152601c60248201527f4572726f723a206d6178207065722061646472657373206c696d6974000000006044820152606401610a3d565b81601454611aba91906138c1565b3414611aff5760405162461bcd60e51b81526020600482015260146024820152734572726f723a20696e76616c696420707269636560601b6044820152606401610a3d565b6011546001611b0e848461396a565b611b189190613982565b10611b775760405162461bcd60e51b815260206004820152602960248201527f4572726f723a2063616e6e6f74206d696e74206d6f7265207468616e20746f74604482015268616c20737570706c7960b81b6064820152608401610a3d565b60185460ff1615611c075733600090815260196020526040902054821115611c075760405162461bcd60e51b815260206004820152603d60248201527f4572726f723a20796f7520617265206e6f742077686974656c6973746564206f60448201527f7220616d6f756e7420697320686967686572207468616e206c696d69740000006064820152608401610a3d565b60005b82811015611c5e57611c1b3361244b565b60185460ff1615611c4c57336000908152601960205260408120805460019290611c46908490613982565b90915550505b80611c56816138a8565b915050611c0a565b50610f8a346125ef565b336001600160a01b03831603611cc05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a3d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611d363383612190565b611d525760405162461bcd60e51b8152600401610a3d9061382b565b6119b3848484846126a2565b600b546001600160a01b03610100909104163314611d8e5760405162461bcd60e51b8152600401610a3d906137c2565b6018805460ff19811660ff90911615179055565b601080546114f6906137f7565b600b546001600160a01b03610100909104163314611ddf5760405162461bcd60e51b8152600401610a3d906137c2565b601255565b60606109e2826126d5565b60606000611dfc83611577565b905080600003611e205760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611e3b57611e3b613355565b604051908082528060200260200182016040528015611e64578160200160208202803683370190505b50905060005b82811015611e1857611e7c8582610d74565b828281518110611e8e57611e8e61387c565b602090810291909101015280611ea3816138a8565b915050611e6a565b50919050565b600b546001600160a01b03610100909104163314611ee15760405162461bcd60e51b8152600401610a3d906137c2565b4780611f235760405162461bcd60e51b815260206004820152601160248201527008ae4e4dee47440dcde40cccacae640745607b1b6044820152606401610a3d565b604051339082156108fc029083906000818181858888f19350505050158015611f50573d6000803e3d6000fd5b5060005b60175460ff82161015611fb157600060178260ff1681548110611f7957611f7961387c565b60009182526020808320909101546001600160a01b031682526016905260408120600101555080611fa981613999565b915050611f54565b5060405181815233907f9bba815921f12cb7b1408e14b5ade745234397d39623ae5e7c82d693cb45815f906020016110c1565b600b546001600160a01b036101009091041633146120145760405162461bcd60e51b8152600401610a3d906137c2565b6001600160a01b0381166120795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3d565b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000908152600260205260409020546001600160a01b0316151590565b60006001600160e01b0319821663780e9d6360e01b14806109e257506109e282612793565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061215782611426565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061219b826120e0565b6121fc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3d565b600061220783611426565b9050806001600160a01b0316846001600160a01b031614806122425750836001600160a01b031661223784610afa565b6001600160a01b0316145b8061227257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661228d82611426565b6001600160a01b0316146122f55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a3d565b6001600160a01b0382166123575760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3d565b6123628383836127e3565b61236d600082612122565b6001600160a01b0383166000908152600360205260408120805460019290612396908490613982565b90915550506001600160a01b03821660009081526003602052604081208054600192906123c490849061396a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b82811015610c92576124398261244b565b80612443816138a8565b915050612428565b6000612455612811565b61246090600161396a565b9050610f8a8282612919565b61110581612933565b600b5460ff16156124985760405162461bcd60e51b8152600401610a3d90613940565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124cd3390565b6040516001600160a01b03909116815260200160405180910390a1565b600b5460ff166125335760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a3d565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336124cd565b61256d826120e0565b6125d05760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610a3d565b6000828152600a602090815260409091208251610c9292840190613132565b60005b60175460ff82161015610f8a57600060178260ff16815481106126175761261761387c565b60009182526020808320909101546001600160a01b0316808352601690915260408220549092509061265561271061264f8785612973565b906129fc565b6001600160a01b03841660009081526016602052604081206001018054929350839290919061268590849061396a565b92505081905550505050808061269a90613999565b9150506125f2565b6126ad84848461227a565b6126b984848484612a3e565b6119b35760405162461bcd60e51b8152600401610a3d906139b8565b60606126e0826120e0565b6127465760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610a3d565b6000612750612b3f565b9050600061275c612b4e565b90508161276885612b5d565b8260405160200161277b93929190613a0a565b60405160208183030381529060405292505050919050565b60006001600160e01b031982166380ac58cd60e01b14806127c457506001600160e01b03198216635b5e139f60e01b145b806109e257506301ffc9a760e01b6001600160e01b03198316146109e2565b600b5460ff16156128065760405162461bcd60e51b8152600401610a3d90613940565b610c92838383612c5e565b600080600c547f00000000000000000000000000000000000000000000000000000000000000006128429190613982565b9050600080600083612852612d16565b61285c9190613a4d565b9050600d600061286d600187613982565b8152602001908152602001600020546000036128955761288e600185613982565b92506128b6565b600d60006128a4600187613982565b81526020019081526020016000205492505b6000818152600d602052604081205490036128e4576000818152600d602052604090208390559050806128fb565b6000818152600d6020526040902080549084905591505b600c805490600061290b836138a8565b909155509195945050505050565b610f8a828260405180602001604052806000815250612d52565b61293c81612d85565b6000818152600a602052604090208054612955906137f7565b159050611105576000818152600a60205260408120611105916131b6565b600082600003612985575060006109e2565b600061299183856138c1565b90508261299e85836138f6565b146129f55760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a3d565b9392505050565b60006129f583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612e2c565b60006001600160a01b0384163b15612b3457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a82903390899088908890600401613a61565b6020604051808303816000875af1925050508015612abd575060408051601f3d908101601f19168201909252612aba91810190613a9e565b60015b612b1a573d808015612aeb576040519150601f19603f3d011682016040523d82523d6000602084013e612af0565b606091505b508051600003612b125760405162461bcd60e51b8152600401610a3d906139b8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612272565b506001949350505050565b6060600f8054610a77906137f7565b606060108054610a77906137f7565b606081600003612b845750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612bae5780612b98816138a8565b9150612ba79050600a836138f6565b9150612b88565b60008167ffffffffffffffff811115612bc957612bc9613355565b6040519080825280601f01601f191660200182016040528015612bf3576020820181803683370190505b5090505b841561227257612c08600183613982565b9150612c15600a86613a4d565b612c2090603061396a565b60f81b818381518110612c3557612c3561387c565b60200101906001600160f81b031916908160001a905350612c57600a866138f6565b9450612bf7565b6001600160a01b038316612cb957612cb481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612cdc565b816001600160a01b0316836001600160a01b031614612cdc57612cdc8382612e63565b6001600160a01b038216612cf357610c9281612f00565b826001600160a01b0316826001600160a01b031614610c9257610c928282612faf565b60004442604051602001612d34929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c905090565b612d5c8383612ff3565b612d696000848484612a3e565b610c925760405162461bcd60e51b8152600401610a3d906139b8565b6000612d9082611426565b9050612d9e816000846127e3565b612da9600083612122565b6001600160a01b0381166000908152600360205260408120805460019290612dd2908490613982565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008183612e4d5760405162461bcd60e51b8152600401610a3d91906132dc565b506000612e5a84866138f6565b95945050505050565b60006001612e7084611577565b612e7a9190613982565b600083815260076020526040902054909150808214612ecd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612f1290600190613982565b60008381526009602052604081205460088054939450909284908110612f3a57612f3a61387c565b906000526020600020015490508060088381548110612f5b57612f5b61387c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612f9357612f93613abb565b6001900381819060005260206000200160009055905550505050565b6000612fba83611577565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166130495760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a3d565b613052816120e0565b1561309f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a3d565b6130ab600083836127e3565b6001600160a01b03821660009081526003602052604081208054600192906130d490849061396a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461313e906137f7565b90600052602060002090601f01602090048101928261316057600085556131a6565b82601f1061317957805160ff19168380011785556131a6565b828001600101855582156131a6579182015b828111156131a657825182559160200191906001019061318b565b506131b29291506131ec565b5090565b5080546131c2906137f7565b6000825580601f106131d2575050565b601f01602090049060005260206000209081019061110591905b5b808211156131b257600081556001016131ed565b60006020828403121561321357600080fd5b5035919050565b6001600160e01b03198116811461110557600080fd5b60006020828403121561324257600080fd5b81356129f58161321a565b80356001600160a01b038116811461326457600080fd5b919050565b60006020828403121561327b57600080fd5b6129f58261324d565b60005b8381101561329f578181015183820152602001613287565b838111156119b35750506000910152565b600081518084526132c8816020860160208601613284565b601f01601f19169290920160200192915050565b6020815260006129f560208301846132b0565b6000806040838503121561330257600080fd5b61330b8361324d565b946020939093013593505050565b60008060006060848603121561332e57600080fd5b6133378461324d565b92506133456020850161324d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561339457613394613355565b604052919050565b600067ffffffffffffffff8211156133b6576133b6613355565b5060051b60200190565b600082601f8301126133d157600080fd5b813560206133e66133e18361339c565b61336b565b82815260059290921b8401810191818101908684111561340557600080fd5b8286015b848110156134275761341a8161324d565b8352918301918301613409565b509695505050505050565b6000806040838503121561344557600080fd5b823567ffffffffffffffff81111561345c57600080fd5b613468858286016133c0565b95602094909401359450505050565b6000806040838503121561348a57600080fd5b50508035926020909101359150565b6000602082840312156134ab57600080fd5b813561ffff811681146129f557600080fd5b6000602082840312156134cf57600080fd5b813567ffffffffffffffff8111156134e657600080fd5b612272848285016133c0565b600067ffffffffffffffff83111561350c5761350c613355565b61351f601f8401601f191660200161336b565b905082815283838301111561353357600080fd5b828260208301376000602084830101529392505050565b600082601f83011261355b57600080fd5b6129f5838335602085016134f2565b60006020828403121561357c57600080fd5b813567ffffffffffffffff81111561359357600080fd5b6122728482850161354a565b600080604083850312156135b257600080fd5b82359150602083013567ffffffffffffffff8111156135d057600080fd5b6135dc8582860161354a565b9150509250929050565b600080604083850312156135f957600080fd5b6136028361324d565b915060208084013567ffffffffffffffff81111561361f57600080fd5b8401601f8101861361363057600080fd5b803561363e6133e18261339c565b81815260059190911b8201830190838101908883111561365d57600080fd5b928401925b8284101561367b57833582529284019290840190613662565b80955050505050509250929050565b801515811461110557600080fd5b600080604083850312156136ab57600080fd5b6136b48361324d565b915060208301356136c48161368a565b809150509250929050565b600080600080608085870312156136e557600080fd5b6136ee8561324d565b93506136fc6020860161324d565b925060408501359150606085013567ffffffffffffffff81111561371f57600080fd5b8501601f8101871361373057600080fd5b61373f878235602084016134f2565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b8181101561378357835183529284019291840191600101613767565b50909695505050505050565b600080604083850312156137a257600080fd5b6137ab8361324d565b91506137b96020840161324d565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061380b57607f821691505b602082108103611eab57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016138ba576138ba613892565b5060010190565b60008160001904831182151516156138db576138db613892565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613905576139056138e0565b500490565b60006020828403121561391c57600080fd5b5051919050565b60006020828403121561393557600080fd5b81516129f58161368a565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6000821982111561397d5761397d613892565b500190565b60008282101561399457613994613892565b500390565b600060ff821660ff81036139af576139af613892565b60010192915050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008451613a1c818460208901613284565b845190830190613a30818360208901613284565b8451910190613a43818360208801613284565b0195945050505050565b600082613a5c57613a5c6138e0565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a94908301846132b0565b9695505050505050565b600060208284031215613ab057600080fd5b81516129f58161321a565b634e487b7160e01b600052603160045260246000fdfea26469706673582212206c73651311fea7cdedfa53cca7d4ae40f34e5ae99207315464640ad636599cde64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f72dc77ac3e6b5f904ade55dba0107e4a741481b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000002710
Deployed Bytecode
0x6080604052600436106103195760003560e01c806370a08231116101ab578063ad2f852a116100f7578063d5abeb0111610095578063f147efeb1161006f578063f147efeb1461092b578063f2fde38b14610974578063f968adbe14610994578063fa0fca84146109aa57600080fd5b8063d5abeb01146108b7578063db2e21bc146108cd578063e985e9c5146108e257600080fd5b8063c6682862116100d1578063c668286214610835578063c6f6f2161461084a578063c87b56dd1461086a578063d2f8dd451461088a57600080fd5b8063ad2f852a146107e0578063b88d4fde14610800578063b9bfa0bc1461082057600080fd5b80639186b425116101645780639bdedea51161013e5780639bdedea514610777578063a035b1fe14610797578063a0712d68146107ad578063a22cb465146107c057600080fd5b80639186b4251461072857806391b7f5ed1461074257806395d89b411461076257600080fd5b806370a082311461067a578063715018a61461069a578063768d7138146106af5780637e0586f1146106c5578063862440e2146106e55780638da5cb5b1461070557600080fd5b8063397457911161026a57806349df728c116102235780635c975abb116101fd5780635c975abb146106185780636352211e1461063057806367dded4d146106505780636c0360eb1461066557600080fd5b806349df728c146105b85780634f6ccce7146105d857806355f804b3146105f857600080fd5b806339745791146105035780633ccfd60b1461052357806340d097c31461053857806342842e0e1461055857806342966c6814610578578063483efda21461059857600080fd5b806318160ddd116102d757806329ee566c116102b157806329ee566c1461046e5780632a55205a146104845780632f745c59146104c357806336e79a5a146104e357600080fd5b806318160ddd1461040f57806323b872dd1461042e57806329413b121461044e57600080fd5b8062923f9e1461031e57806301ffc9a71461035357806306d254da1461037357806306fdde0314610395578063081812fc146103b7578063095ea7b3146103ef575b600080fd5b34801561032a57600080fd5b5061033e610339366004613201565b6109d7565b60405190151581526020015b60405180910390f35b34801561035f57600080fd5b5061033e61036e366004613230565b6109e8565b34801561037f57600080fd5b5061039361038e366004613269565b610a0d565b005b3480156103a157600080fd5b506103aa610a68565b60405161034a91906132dc565b3480156103c357600080fd5b506103d76103d2366004613201565b610afa565b6040516001600160a01b03909116815260200161034a565b3480156103fb57600080fd5b5061039361040a3660046132ef565b610b82565b34801561041b57600080fd5b506008545b60405190815260200161034a565b34801561043a57600080fd5b50610393610449366004613319565b610c97565b34801561045a57600080fd5b50610393610469366004613432565b610cc9565b34801561047a57600080fd5b5061042060155481565b34801561049057600080fd5b506104a461049f366004613477565b610d3a565b604080516001600160a01b03909316835260208301919091520161034a565b3480156104cf57600080fd5b506104206104de3660046132ef565b610d74565b3480156104ef57600080fd5b506103936104fe366004613499565b610e0a565b34801561050f57600080fd5b5061039361051e3660046134bd565b610eaf565b34801561052f57600080fd5b50610393610f8e565b34801561054457600080fd5b50610393610553366004613269565b6110cc565b34801561056457600080fd5b50610393610573366004613319565b611108565b34801561058457600080fd5b50610393610593366004613201565b611123565b3480156105a457600080fd5b506103936105b3366004613201565b61119a565b3480156105c457600080fd5b506103936105d3366004613269565b6111cf565b3480156105e457600080fd5b506104206105f3366004613201565b611350565b34801561060457600080fd5b5061039361061336600461356a565b6113e3565b34801561062457600080fd5b50600b5460ff1661033e565b34801561063c57600080fd5b506103d761064b366004613201565b611426565b34801561065c57600080fd5b5061039361149d565b34801561067157600080fd5b506103aa6114e9565b34801561068657600080fd5b50610420610695366004613269565b611577565b3480156106a657600080fd5b506103936115fe565b3480156106bb57600080fd5b5061042060135481565b3480156106d157600080fd5b506103936106e0366004613432565b61167e565b3480156106f157600080fd5b5061039361070036600461359f565b6117ca565b34801561071157600080fd5b50600b5461010090046001600160a01b03166103d7565b34801561073457600080fd5b5060185461033e9060ff1681565b34801561074e57600080fd5b5061039361075d366004613201565b611804565b34801561076e57600080fd5b506103aa611839565b34801561078357600080fd5b506103936107923660046135e6565b611848565b3480156107a357600080fd5b5061042060145481565b6103936107bb366004613201565b6119b9565b3480156107cc57600080fd5b506103936107db366004613698565b611c68565b3480156107ec57600080fd5b50600e546103d7906001600160a01b031681565b34801561080c57600080fd5b5061039361081b3660046136cf565b611d2c565b34801561082c57600080fd5b50610393611d5e565b34801561084157600080fd5b506103aa611da2565b34801561085657600080fd5b50610393610865366004613201565b611daf565b34801561087657600080fd5b506103aa610885366004613201565b611de4565b34801561089657600080fd5b506108aa6108a5366004613269565b611def565b60405161034a919061374b565b3480156108c357600080fd5b5061042060115481565b3480156108d957600080fd5b50610393611eb1565b3480156108ee57600080fd5b5061033e6108fd36600461378f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561093757600080fd5b5061095f610946366004613269565b6016602052600090815260409020805460019091015482565b6040805192835260208301919091520161034a565b34801561098057600080fd5b5061039361098f366004613269565b611fe4565b3480156109a057600080fd5b5061042060125481565b3480156109b657600080fd5b506104206109c5366004613269565b60196020526000908152604090205481565b60006109e2826120e0565b92915050565b60006001600160e01b0319821663152a902d60e11b14806109e257506109e2826120fd565b600b546001600160a01b03610100909104163314610a465760405162461bcd60e51b8152600401610a3d906137c2565b60405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610a77906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa3906137f7565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b5050505050905090565b6000610b05826120e0565b610b665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3d565b506000908152600460205260409020546001600160a01b031690565b6000610b8d82611426565b9050806001600160a01b0316836001600160a01b031603610bfa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a3d565b336001600160a01b0382161480610c165750610c1681336108fd565b610c885760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a3d565b610c928383612122565b505050565b610ca2335b82612190565b610cbe5760405162461bcd60e51b8152600401610a3d9061382b565b610c9283838361227a565b600b546001600160a01b03610100909104163314610cf95760405162461bcd60e51b8152600401610a3d906137c2565b60005b8251811015610c9257610d2882848381518110610d1b57610d1b61387c565b6020026020010151612425565b80610d32816138a8565b915050610cfc565b600e5460155460009182916001600160a01b039091169061271090610d5f90866138c1565b610d6991906138f6565b915091509250929050565b6000610d7f83611577565b8210610de15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a3d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610e3a5760405162461bcd60e51b8152600401610a3d906137c2565b6102ee8161ffff161115610ea65760405162461bcd60e51b815260206004820152602d60248201527f526f79616c7479206d7573742062652067726561746572207468616e206f722060448201526c657175616c20746f20372c352560981b6064820152608401610a3d565b61ffff16601555565b600b546001600160a01b03610100909104163314610edf5760405162461bcd60e51b8152600401610a3d906137c2565b6000815111610f275760405162461bcd60e51b81526020600482015260146024820152734572726f723a206c69737420697320656d70747960601b6044820152606401610a3d565b60005b8151811015610f8a57600060196000848481518110610f4b57610f4b61387c565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610f82906138a8565b915050610f2a565b5050565b33600090815260166020526040902054610ff85760405162461bcd60e51b815260206004820152602560248201527f446576204f6e6c793a2063616c6c6572206973206e6f742074686520646576656044820152643637b832b960d91b6064820152608401610a3d565b336000908152601660205260409020600101548061104c5760405162461bcd60e51b815260206004820152601160248201527008ae4e4dee47440dcde40cccacae640745607b1b6044820152606401610a3d565b604051339082156108fc029083906000818181858888f19350505050158015611079573d6000803e3d6000fd5b503360008181526016602052604080822060010191909155517f9bba815921f12cb7b1408e14b5ade745234397d39623ae5e7c82d693cb45815f906110c19084815260200190565b60405180910390a250565b600b546001600160a01b036101009091041633146110fc5760405162461bcd60e51b8152600401610a3d906137c2565b6111058161244b565b50565b610c9283838360405180602001604052806000815250611d2c565b61112c33610c9c565b6111915760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a3d565b6111058161246c565b600b546001600160a01b036101009091041633146111ca5760405162461bcd60e51b8152600401610a3d906137c2565b601355565b600b546001600160a01b036101009091041633146111ff5760405162461bcd60e51b8152600401610a3d906137c2565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611248573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126c919061390a565b9050816001600160a01b031663a9059cbb611295600b546001600160a01b036101009091041690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156112e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113069190613923565b50604080516001600160a01b03851681526020810183905233917f5aa586896a67fb05c3b86276f66eecee7da00719d0e7299c403596fa2ec58ca4910160405180910390a2505050565b600061135b60085490565b82106113be5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a3d565b600882815481106113d1576113d161387c565b90600052602060002001549050919050565b600b546001600160a01b036101009091041633146114135760405162461bcd60e51b8152600401610a3d906137c2565b8051610f8a90600f906020840190613132565b6000818152600260205260408120546001600160a01b0316806109e25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a3d565b600b546001600160a01b036101009091041633146114cd5760405162461bcd60e51b8152600401610a3d906137c2565b600b5460ff166114e1576114df612475565b565b6114df6124ea565b600f80546114f6906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611522906137f7565b801561156f5780601f106115445761010080835404028352916020019161156f565b820191906000526020600020905b81548152906001019060200180831161155257829003601f168201915b505050505081565b60006001600160a01b0382166115e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a3d565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b0361010090910416331461162e5760405162461bcd60e51b8152600401610a3d906137c2565b600b5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b8054610100600160a81b0319169055565b600b546001600160a01b036101009091041633146116ae5760405162461bcd60e51b8152600401610a3d906137c2565b60008251116116f65760405162461bcd60e51b81526020600482015260146024820152734572726f723a206c69737420697320656d70747960601b6044820152606401610a3d565b60005b8251811015610c925760006001600160a01b031683828151811061171f5761171f61387c565b60200260200101516001600160a01b0316036117745760405162461bcd60e51b815260206004820152601460248201527320b2323932b9b99031b0b73737ba10313290181760611b6044820152606401610a3d565b816019600085848151811061178b5761178b61387c565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806117c2906138a8565b9150506116f9565b600b546001600160a01b036101009091041633146117fa5760405162461bcd60e51b8152600401610a3d906137c2565b610f8a8282612564565b600b546001600160a01b036101009091041633146118345760405162461bcd60e51b8152600401610a3d906137c2565b601455565b606060018054610a77906137f7565b600b546001600160a01b036101009091041633146118785760405162461bcd60e51b8152600401610a3d906137c2565b8160005b82518110156119b357816001600160a01b03166342842e0e306118ad600b546001600160a01b036101009091041690565b8685815181106118bf576118bf61387c565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561191957600080fd5b505af115801561192d573d6000803e3d6000fd5b50505050336001600160a01b03167fb8dbf4ce06446b88ef02ffd28a948c2637ac80fb0bd4d3a31c70878c1046eb7f8585848151811061196f5761196f61387c565b60200260200101516040516119999291906001600160a01b03929092168252602082015260400190565b60405180910390a2806119ab816138a8565b91505061187c565b50505050565b600b5460ff16156119dc5760405162461bcd60e51b8152600401610a3d90613940565b60006119e760085490565b90506000821180156119fb57506012548211155b611a475760405162461bcd60e51b815260206004820152601760248201527f4572726f723a206d617820706172207478206c696d69740000000000000000006044820152606401610a3d565b601354611a5333611577565b611a5e90600161396a565b1115611aac5760405162461bcd60e51b815260206004820152601c60248201527f4572726f723a206d6178207065722061646472657373206c696d6974000000006044820152606401610a3d565b81601454611aba91906138c1565b3414611aff5760405162461bcd60e51b81526020600482015260146024820152734572726f723a20696e76616c696420707269636560601b6044820152606401610a3d565b6011546001611b0e848461396a565b611b189190613982565b10611b775760405162461bcd60e51b815260206004820152602960248201527f4572726f723a2063616e6e6f74206d696e74206d6f7265207468616e20746f74604482015268616c20737570706c7960b81b6064820152608401610a3d565b60185460ff1615611c075733600090815260196020526040902054821115611c075760405162461bcd60e51b815260206004820152603d60248201527f4572726f723a20796f7520617265206e6f742077686974656c6973746564206f60448201527f7220616d6f756e7420697320686967686572207468616e206c696d69740000006064820152608401610a3d565b60005b82811015611c5e57611c1b3361244b565b60185460ff1615611c4c57336000908152601960205260408120805460019290611c46908490613982565b90915550505b80611c56816138a8565b915050611c0a565b50610f8a346125ef565b336001600160a01b03831603611cc05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a3d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611d363383612190565b611d525760405162461bcd60e51b8152600401610a3d9061382b565b6119b3848484846126a2565b600b546001600160a01b03610100909104163314611d8e5760405162461bcd60e51b8152600401610a3d906137c2565b6018805460ff19811660ff90911615179055565b601080546114f6906137f7565b600b546001600160a01b03610100909104163314611ddf5760405162461bcd60e51b8152600401610a3d906137c2565b601255565b60606109e2826126d5565b60606000611dfc83611577565b905080600003611e205760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611e3b57611e3b613355565b604051908082528060200260200182016040528015611e64578160200160208202803683370190505b50905060005b82811015611e1857611e7c8582610d74565b828281518110611e8e57611e8e61387c565b602090810291909101015280611ea3816138a8565b915050611e6a565b50919050565b600b546001600160a01b03610100909104163314611ee15760405162461bcd60e51b8152600401610a3d906137c2565b4780611f235760405162461bcd60e51b815260206004820152601160248201527008ae4e4dee47440dcde40cccacae640745607b1b6044820152606401610a3d565b604051339082156108fc029083906000818181858888f19350505050158015611f50573d6000803e3d6000fd5b5060005b60175460ff82161015611fb157600060178260ff1681548110611f7957611f7961387c565b60009182526020808320909101546001600160a01b031682526016905260408120600101555080611fa981613999565b915050611f54565b5060405181815233907f9bba815921f12cb7b1408e14b5ade745234397d39623ae5e7c82d693cb45815f906020016110c1565b600b546001600160a01b036101009091041633146120145760405162461bcd60e51b8152600401610a3d906137c2565b6001600160a01b0381166120795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3d565b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000908152600260205260409020546001600160a01b0316151590565b60006001600160e01b0319821663780e9d6360e01b14806109e257506109e282612793565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061215782611426565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061219b826120e0565b6121fc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3d565b600061220783611426565b9050806001600160a01b0316846001600160a01b031614806122425750836001600160a01b031661223784610afa565b6001600160a01b0316145b8061227257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661228d82611426565b6001600160a01b0316146122f55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a3d565b6001600160a01b0382166123575760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3d565b6123628383836127e3565b61236d600082612122565b6001600160a01b0383166000908152600360205260408120805460019290612396908490613982565b90915550506001600160a01b03821660009081526003602052604081208054600192906123c490849061396a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b82811015610c92576124398261244b565b80612443816138a8565b915050612428565b6000612455612811565b61246090600161396a565b9050610f8a8282612919565b61110581612933565b600b5460ff16156124985760405162461bcd60e51b8152600401610a3d90613940565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124cd3390565b6040516001600160a01b03909116815260200160405180910390a1565b600b5460ff166125335760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a3d565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336124cd565b61256d826120e0565b6125d05760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610a3d565b6000828152600a602090815260409091208251610c9292840190613132565b60005b60175460ff82161015610f8a57600060178260ff16815481106126175761261761387c565b60009182526020808320909101546001600160a01b0316808352601690915260408220549092509061265561271061264f8785612973565b906129fc565b6001600160a01b03841660009081526016602052604081206001018054929350839290919061268590849061396a565b92505081905550505050808061269a90613999565b9150506125f2565b6126ad84848461227a565b6126b984848484612a3e565b6119b35760405162461bcd60e51b8152600401610a3d906139b8565b60606126e0826120e0565b6127465760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610a3d565b6000612750612b3f565b9050600061275c612b4e565b90508161276885612b5d565b8260405160200161277b93929190613a0a565b60405160208183030381529060405292505050919050565b60006001600160e01b031982166380ac58cd60e01b14806127c457506001600160e01b03198216635b5e139f60e01b145b806109e257506301ffc9a760e01b6001600160e01b03198316146109e2565b600b5460ff16156128065760405162461bcd60e51b8152600401610a3d90613940565b610c92838383612c5e565b600080600c547f00000000000000000000000000000000000000000000000000000000000015b36128429190613982565b9050600080600083612852612d16565b61285c9190613a4d565b9050600d600061286d600187613982565b8152602001908152602001600020546000036128955761288e600185613982565b92506128b6565b600d60006128a4600187613982565b81526020019081526020016000205492505b6000818152600d602052604081205490036128e4576000818152600d602052604090208390559050806128fb565b6000818152600d6020526040902080549084905591505b600c805490600061290b836138a8565b909155509195945050505050565b610f8a828260405180602001604052806000815250612d52565b61293c81612d85565b6000818152600a602052604090208054612955906137f7565b159050611105576000818152600a60205260408120611105916131b6565b600082600003612985575060006109e2565b600061299183856138c1565b90508261299e85836138f6565b146129f55760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a3d565b9392505050565b60006129f583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612e2c565b60006001600160a01b0384163b15612b3457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a82903390899088908890600401613a61565b6020604051808303816000875af1925050508015612abd575060408051601f3d908101601f19168201909252612aba91810190613a9e565b60015b612b1a573d808015612aeb576040519150601f19603f3d011682016040523d82523d6000602084013e612af0565b606091505b508051600003612b125760405162461bcd60e51b8152600401610a3d906139b8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612272565b506001949350505050565b6060600f8054610a77906137f7565b606060108054610a77906137f7565b606081600003612b845750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612bae5780612b98816138a8565b9150612ba79050600a836138f6565b9150612b88565b60008167ffffffffffffffff811115612bc957612bc9613355565b6040519080825280601f01601f191660200182016040528015612bf3576020820181803683370190505b5090505b841561227257612c08600183613982565b9150612c15600a86613a4d565b612c2090603061396a565b60f81b818381518110612c3557612c3561387c565b60200101906001600160f81b031916908160001a905350612c57600a866138f6565b9450612bf7565b6001600160a01b038316612cb957612cb481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612cdc565b816001600160a01b0316836001600160a01b031614612cdc57612cdc8382612e63565b6001600160a01b038216612cf357610c9281612f00565b826001600160a01b0316826001600160a01b031614610c9257610c928282612faf565b60004442604051602001612d34929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c905090565b612d5c8383612ff3565b612d696000848484612a3e565b610c925760405162461bcd60e51b8152600401610a3d906139b8565b6000612d9082611426565b9050612d9e816000846127e3565b612da9600083612122565b6001600160a01b0381166000908152600360205260408120805460019290612dd2908490613982565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008183612e4d5760405162461bcd60e51b8152600401610a3d91906132dc565b506000612e5a84866138f6565b95945050505050565b60006001612e7084611577565b612e7a9190613982565b600083815260076020526040902054909150808214612ecd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612f1290600190613982565b60008381526009602052604081205460088054939450909284908110612f3a57612f3a61387c565b906000526020600020015490508060088381548110612f5b57612f5b61387c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612f9357612f93613abb565b6001900381819060005260206000200160009055905550505050565b6000612fba83611577565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166130495760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a3d565b613052816120e0565b1561309f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a3d565b6130ab600083836127e3565b6001600160a01b03821660009081526003602052604081208054600192906130d490849061396a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461313e906137f7565b90600052602060002090601f01602090048101928261316057600085556131a6565b82601f1061317957805160ff19168380011785556131a6565b828001600101855582156131a6579182015b828111156131a657825182559160200191906001019061318b565b506131b29291506131ec565b5090565b5080546131c2906137f7565b6000825580601f106131d2575050565b601f01602090049060005260206000209081019061110591905b5b808211156131b257600081556001016131ed565b60006020828403121561321357600080fd5b5035919050565b6001600160e01b03198116811461110557600080fd5b60006020828403121561324257600080fd5b81356129f58161321a565b80356001600160a01b038116811461326457600080fd5b919050565b60006020828403121561327b57600080fd5b6129f58261324d565b60005b8381101561329f578181015183820152602001613287565b838111156119b35750506000910152565b600081518084526132c8816020860160208601613284565b601f01601f19169290920160200192915050565b6020815260006129f560208301846132b0565b6000806040838503121561330257600080fd5b61330b8361324d565b946020939093013593505050565b60008060006060848603121561332e57600080fd5b6133378461324d565b92506133456020850161324d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561339457613394613355565b604052919050565b600067ffffffffffffffff8211156133b6576133b6613355565b5060051b60200190565b600082601f8301126133d157600080fd5b813560206133e66133e18361339c565b61336b565b82815260059290921b8401810191818101908684111561340557600080fd5b8286015b848110156134275761341a8161324d565b8352918301918301613409565b509695505050505050565b6000806040838503121561344557600080fd5b823567ffffffffffffffff81111561345c57600080fd5b613468858286016133c0565b95602094909401359450505050565b6000806040838503121561348a57600080fd5b50508035926020909101359150565b6000602082840312156134ab57600080fd5b813561ffff811681146129f557600080fd5b6000602082840312156134cf57600080fd5b813567ffffffffffffffff8111156134e657600080fd5b612272848285016133c0565b600067ffffffffffffffff83111561350c5761350c613355565b61351f601f8401601f191660200161336b565b905082815283838301111561353357600080fd5b828260208301376000602084830101529392505050565b600082601f83011261355b57600080fd5b6129f5838335602085016134f2565b60006020828403121561357c57600080fd5b813567ffffffffffffffff81111561359357600080fd5b6122728482850161354a565b600080604083850312156135b257600080fd5b82359150602083013567ffffffffffffffff8111156135d057600080fd5b6135dc8582860161354a565b9150509250929050565b600080604083850312156135f957600080fd5b6136028361324d565b915060208084013567ffffffffffffffff81111561361f57600080fd5b8401601f8101861361363057600080fd5b803561363e6133e18261339c565b81815260059190911b8201830190838101908883111561365d57600080fd5b928401925b8284101561367b57833582529284019290840190613662565b80955050505050509250929050565b801515811461110557600080fd5b600080604083850312156136ab57600080fd5b6136b48361324d565b915060208301356136c48161368a565b809150509250929050565b600080600080608085870312156136e557600080fd5b6136ee8561324d565b93506136fc6020860161324d565b925060408501359150606085013567ffffffffffffffff81111561371f57600080fd5b8501601f8101871361373057600080fd5b61373f878235602084016134f2565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b8181101561378357835183529284019291840191600101613767565b50909695505050505050565b600080604083850312156137a257600080fd5b6137ab8361324d565b91506137b96020840161324d565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061380b57607f821691505b602082108103611eab57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016138ba576138ba613892565b5060010190565b60008160001904831182151516156138db576138db613892565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613905576139056138e0565b500490565b60006020828403121561391c57600080fd5b5051919050565b60006020828403121561393557600080fd5b81516129f58161368a565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6000821982111561397d5761397d613892565b500190565b60008282101561399457613994613892565b500390565b600060ff821660ff81036139af576139af613892565b60010192915050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008451613a1c818460208901613284565b845190830190613a30818360208901613284565b8451910190613a43818360208801613284565b0195945050505050565b600082613a5c57613a5c6138e0565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a94908301846132b0565b9695505050505050565b600060208284031215613ab057600080fd5b81516129f58161321a565b634e487b7160e01b600052603160045260246000fdfea26469706673582212206c73651311fea7cdedfa53cca7d4ae40f34e5ae99207315464640ad636599cde64736f6c634300080d0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000f72dc77ac3e6b5f904ade55dba0107e4a741481b00000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000002710
-----Decoded View---------------
Arg [0] : _devList (address[]): 0xF72dC77AC3E6B5F904aDE55Dba0107e4a741481b
Arg [1] : _fees (uint256[]): 10000
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [3] : 000000000000000000000000f72dc77ac3e6b5f904ade55dba0107e4a741481b
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 0000000000000000000000000000000000000000000000000000000000002710
Deployed Bytecode Sourcemap
56075:9321:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60220:103;;;;;;;;;;-1:-1:-1;60220:103:0;;;;;:::i;:::-;;:::i;:::-;;;364:14:1;;357:22;339:41;;327:2;312:18;60220:103:0;;;;;;;;62695:292;;;;;;;;;;-1:-1:-1;62695:292:0;;;;;:::i;:::-;;:::i;62293:122::-;;;;;;;;;;-1:-1:-1;62293:122:0;;;;;:::i;:::-;;:::i;:::-;;24289:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25979:308::-;;;;;;;;;;-1:-1:-1;25979:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2061:32:1;;;2043:51;;2031:2;2016:18;25979:308:0;1897:203:1;25502:411:0;;;;;;;;;;-1:-1:-1;25502:411:0;;;;;:::i;:::-;;:::i;39063:113::-;;;;;;;;;;-1:-1:-1;39151:10:0;:17;39063:113;;;2510:25:1;;;2498:2;2483:18;39063:113:0;2364:177:1;27038:376:0;;;;;;;;;;-1:-1:-1;27038:376:0;;;;;:::i;:::-;;:::i;64575:205::-;;;;;;;;;;-1:-1:-1;64575:205:0;;;;;:::i;:::-;;:::i;57180:28::-;;;;;;;;;;;;;;;;60331:238;;;;;;;;;;-1:-1:-1;60331:238:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5018:32:1;;;5000:51;;5082:2;5067:18;;5060:34;;;;4973:18;60331:238:0;4826:274:1;38644:343:0;;;;;;;;;;-1:-1:-1;38644:343:0;;;;;:::i;:::-;;:::i;62023:258::-;;;;;;;;;;-1:-1:-1;62023:258:0;;;;;:::i;:::-;;:::i;60981:242::-;;;;;;;;;;-1:-1:-1;60981:242:0;;;;;:::i;:::-;;:::i;63420:285::-;;;;;;;;;;;;;:::i;62595:82::-;;;;;;;;;;-1:-1:-1;62595:82:0;;;;;:::i;:::-;;:::i;27485:185::-;;;;;;;;;;-1:-1:-1;27485:185:0;;;;;:::i;:::-;;:::i;51515:282::-;;;;;;;;;;-1:-1:-1;51515:282:0;;;;;:::i;:::-;;:::i;61453:106::-;;;;;;;;;;-1:-1:-1;61453:106:0;;;;;:::i;:::-;;:::i;64244:319::-;;;;;;;;;;-1:-1:-1;64244:319:0;;;;;:::i;:::-;;:::i;39253:320::-;;;;;;;;;;-1:-1:-1;39253:320:0;;;;;:::i;:::-;;:::i;61673:104::-;;;;;;;;;;-1:-1:-1;61673:104:0;;;;;:::i;:::-;;:::i;47512:86::-;;;;;;;;;;-1:-1:-1;47583:7:0;;;;47512:86;;23896:326;;;;;;;;;;-1:-1:-1;23896:326:0;;;;;:::i;:::-;;:::i;61344:101::-;;;;;;;;;;;;;:::i;56934:21::-;;;;;;;;;;;;;:::i;23539:295::-;;;;;;;;;;-1:-1:-1;23539:295:0;;;;;:::i;:::-;;:::i;50469:148::-;;;;;;;;;;;;;:::i;57101:31::-;;;;;;;;;;;;;;;;60603:370;;;;;;;;;;-1:-1:-1;60603:370:0;;;;;:::i;:::-;;:::i;61893:116::-;;;;;;;;;;-1:-1:-1;61893:116:0;;;;;:::i;:::-;;:::i;49818:87::-;;;;;;;;;;-1:-1:-1;49891:6:0;;;;;-1:-1:-1;;;;;49891:6:0;49818:87;;57399:34;;;;;;;;;;-1:-1:-1;57399:34:0;;;;;;;;61785:90;;;;;;;;;;-1:-1:-1;61785:90:0;;;;;:::i;:::-;;:::i;24458:104::-;;;;;;;;;;;;;:::i;65030:363::-;;;;;;;;;;-1:-1:-1;65030:363:0;;;;;:::i;:::-;;:::i;57139:30::-;;;;;;;;;;;;;;;;58638:828;;;;;;:::i;:::-;;:::i;26359:327::-;;;;;;;;;;-1:-1:-1;26359:327:0;;;;;:::i;:::-;;:::i;56845:75::-;;;;;;;;;;-1:-1:-1;56845:75:0;;;;-1:-1:-1;;;;;56845:75:0;;;27741:365;;;;;;;;;;-1:-1:-1;27741:365:0;;;;;:::i;:::-;;:::i;61231:105::-;;;;;;;;;;;;;:::i;56962:37::-;;;;;;;;;;;;;:::i;61567:98::-;;;;;;;;;;-1:-1:-1;61567:98:0;;;;;:::i;:::-;;:::i;59482:196::-;;;;;;;;;;-1:-1:-1;59482:196:0;;;;;:::i;:::-;;:::i;59686:526::-;;;;;;;;;;-1:-1:-1;59686:526:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57029:31::-;;;;;;;;;;;;;;;;63785:403;;;;;;;;;;;;;:::i;26757:214::-;;;;;;;;;;-1:-1:-1;26757:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;26928:25:0;;;26899:4;26928:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26757:214;57317:41;;;;;;;;;;-1:-1:-1;57317:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;10257:25:1;;;10313:2;10298:18;;10291:34;;;;10230:18;57317:41:0;10083:248:1;50772:281:0;;;;;;;;;;-1:-1:-1;50772:281:0;;;;;:::i;:::-;;:::i;57067:27::-;;;;;;;;;;;;;;;;57440:46;;;;;;;;;;-1:-1:-1;57440:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;60220:103;60277:4;60302:12;60310:3;60302:7;:12::i;:::-;60294:21;60220:103;-1:-1:-1;;60220:103:0:o;62695:292::-;62843:4;-1:-1:-1;;;;;;62885:41:0;;-1:-1:-1;;;62885:41:0;;:94;;;62943:36;62967:11;62943:23;:36::i;62293:122::-;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;;;;;;;;;62375:14:::1;:32:::0;;-1:-1:-1;;;;;;62375:32:0::1;-1:-1:-1::0;;;;;62375:32:0;;;::::1;::::0;;;::::1;::::0;;62293:122::o;24289:100::-;24343:13;24376:5;24369:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24289:100;:::o;25979:308::-;26100:7;26147:16;26155:7;26147;:16::i;:::-;26125:110;;;;-1:-1:-1;;;26125:110:0;;11284:2:1;26125:110:0;;;11266:21:1;11323:2;11303:18;;;11296:30;11362:34;11342:18;;;11335:62;-1:-1:-1;;;11413:18:1;;;11406:42;11465:19;;26125:110:0;11082:408:1;26125:110:0;-1:-1:-1;26255:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26255:24:0;;25979:308::o;25502:411::-;25583:13;25599:23;25614:7;25599:14;:23::i;:::-;25583:39;;25647:5;-1:-1:-1;;;;;25641:11:0;:2;-1:-1:-1;;;;;25641:11:0;;25633:57;;;;-1:-1:-1;;;25633:57:0;;11697:2:1;25633:57:0;;;11679:21:1;11736:2;11716:18;;;11709:30;11775:34;11755:18;;;11748:62;-1:-1:-1;;;11826:18:1;;;11819:31;11867:19;;25633:57:0;11495:397:1;25633:57:0;18424:10;-1:-1:-1;;;;;25725:21:0;;;;:62;;-1:-1:-1;25750:37:0;25767:5;18424:10;26757:214;:::i;25750:37::-;25703:168;;;;-1:-1:-1;;;25703:168:0;;12099:2:1;25703:168:0;;;12081:21:1;12138:2;12118:18;;;12111:30;12177:34;12157:18;;;12150:62;12248:26;12228:18;;;12221:54;12292:19;;25703:168:0;11897:420:1;25703:168:0;25884:21;25893:2;25897:7;25884:8;:21::i;:::-;25572:341;25502:411;;:::o;27038:376::-;27247:41;18424:10;27266:12;27280:7;27247:18;:41::i;:::-;27225:140;;;;-1:-1:-1;;;27225:140:0;;;;;;;:::i;:::-;27378:28;27388:4;27394:2;27398:7;27378:9;:28::i;64575:205::-;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;64671:9:::1;64666:107;64690:5;:12;64686:1;:16;64666:107;;;64724:37;64745:6;64752:5;64758:1;64752:8;;;;;;;;:::i;:::-;;;;;;;64724:20;:37::i;:::-;64704:3:::0;::::1;::::0;::::1;:::i;:::-;;;;64666:107;;60331:238:::0;60514:14;;60544:7;;60449:16;;;;-1:-1:-1;;;;;60514:14:0;;;;60555:5;;60531:20;;:10;:20;:::i;:::-;60530:30;;;;:::i;:::-;60506:55;;;;60331:238;;;;;:::o;38644:343::-;38786:7;38841:23;38858:5;38841:16;:23::i;:::-;38833:5;:31;38811:124;;;;-1:-1:-1;;;38811:124:0;;13776:2:1;38811:124:0;;;13758:21:1;13815:2;13795:18;;;13788:30;13854:34;13834:18;;;13827:62;-1:-1:-1;;;13905:18:1;;;13898:41;13956:19;;38811:124:0;13574:407:1;38811:124:0;-1:-1:-1;;;;;;38953:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38644:343::o;62023:258::-;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;62190:3:::1;62178:8;:15;;;;62170:74;;;::::0;-1:-1:-1;;;62170:74:0;;14600:2:1;62170:74:0::1;::::0;::::1;14582:21:1::0;14639:2;14619:18;;;14612:30;14678:34;14658:18;;;14651:62;-1:-1:-1;;;14729:18:1;;;14722:43;14782:19;;62170:74:0::1;14398:409:1::0;62170:74:0::1;62255:18;;:7;:18:::0;62023:258::o;60981:242::-;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;61095:1:::1;61074:11;:18;:22;61066:54;;;::::0;-1:-1:-1;;;61066:54:0;;15014:2:1;61066:54:0::1;::::0;::::1;14996:21:1::0;15053:2;15033:18;;;15026:30;-1:-1:-1;;;15072:18:1;;;15065:50;15132:18;;61066:54:0::1;14812:344:1::0;61066:54:0::1;61135:9;61131:84;61151:11;:18;61149:1;:20;61131:84;;;61214:1;61184:11;:27;61196:11;61208:1;61196:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;61184:27:0::1;-1:-1:-1::0;;;;;61184:27:0::1;;;;;;;;;;;;:31;;;;61170:3;;;;;:::i;:::-;;;;61131:84;;;;60981:242:::0;:::o;63420:285::-;56298:10;56320:1;56290:19;;;:7;:19;;;;;:27;56282:82;;;;-1:-1:-1;;;56282:82:0;;15363:2:1;56282:82:0;;;15345:21:1;15402:2;15382:18;;;15375:30;15441:34;15421:18;;;15414:62;-1:-1:-1;;;15492:18:1;;;15485:35;15537:19;;56282:82:0;15161:401:1;56282:82:0;63494:10:::1;63469:14;63486:19:::0;;;:7:::1;:19;::::0;;;;:26:::1;;::::0;63531:10;63523:39:::1;;;::::0;-1:-1:-1;;;63523:39:0;;15769:2:1;63523:39:0::1;::::0;::::1;15751:21:1::0;15808:2;15788:18;;;15781:30;-1:-1:-1;;;15827:18:1;;;15820:47;15884:18;;63523:39:0::1;15567:341:1::0;63523:39:0::1;63573:36;::::0;63581:10:::1;::::0;63573:36;::::1;;;::::0;63602:6;;63573:36:::1;::::0;;;63602:6;63581:10;63573:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;63628:10:0::1;63649:1;63620:19:::0;;;:7:::1;:19;::::0;;;;;:26:::1;;:30:::0;;;;63666:31;::::1;::::0;::::1;::::0;63690:6;2510:25:1;;2498:2;2483:18;;2364:177;63666:31:0::1;;;;;;;;63458:247;63420:285::o:0;62595:82::-;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;62653:16:::1;62666:2;62653:12;:16::i;:::-;62595:82:::0;:::o;27485:185::-;27623:39;27640:4;27646:2;27650:7;27623:39;;;;;;;;;;;;:16;:39::i;51515:282::-;51647:41;18424:10;51666:12;18344:98;51647:41;51625:139;;;;-1:-1:-1;;;51625:139:0;;16115:2:1;51625:139:0;;;16097:21:1;16154:2;16134:18;;;16127:30;16193:34;16173:18;;;16166:62;-1:-1:-1;;;16244:18:1;;;16237:46;16300:19;;51625:139:0;15913:412:1;51625:139:0;51775:14;51781:7;51775:5;:14::i;61453:106::-;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;61527:12:::1;:24:::0;61453:106::o;64244:319::-;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;64396:38:::1;::::0;-1:-1:-1;;;64396:38:0;;64428:4:::1;64396:38;::::0;::::1;2043:51:1::0;64352:14:0;;64322:20:::1;::::0;-1:-1:-1;;;;;64396:23:0;::::1;::::0;::::1;::::0;2016:18:1;;64396:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64378:56;;64445:13;-1:-1:-1::0;;;;;64445:22:0::1;;64468:7;49891:6:::0;;-1:-1:-1;;;;;49891:6:0;;;;;;49818:87;64468:7:::1;64445:40;::::0;-1:-1:-1;;;;;;64445:40:0::1;::::0;;;;;;-1:-1:-1;;;;;5018:32:1;;;64445:40:0::1;::::0;::::1;5000:51:1::0;5067:18;;;5060:34;;;4973:18;;64445:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;64501:54:0::1;::::0;;-1:-1:-1;;;;;5018:32:1;;5000:51;;5082:2;5067:18;;5060:34;;;64521:10:0::1;::::0;64501:54:::1;::::0;4973:18:1;64501:54:0::1;;;;;;;64311:252;;64244:319:::0;:::o;39253:320::-;39373:7;39428:30;39151:10;:17;;39063:113;39428:30;39420:5;:38;39398:132;;;;-1:-1:-1;;;39398:132:0;;16971:2:1;39398:132:0;;;16953:21:1;17010:2;16990:18;;;16983:30;17049:34;17029:18;;;17022:62;-1:-1:-1;;;17100:18:1;;;17093:42;17152:19;;39398:132:0;16769:408:1;39398:132:0;39548:10;39559:5;39548:17;;;;;;;;:::i;:::-;;;;;;;;;39541:24;;39253:320;;;:::o;61673:104::-;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;61749:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;23896:326::-:0;24013:7;24054:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24054:16:0;;24081:110;;;;-1:-1:-1;;;24081:110:0;;17384:2:1;24081:110:0;;;17366:21:1;17423:2;17403:18;;;17396:30;17462:34;17442:18;;;17435:62;-1:-1:-1;;;17513:18:1;;;17506:39;17562:19;;24081:110:0;17182:405:1;61344:101:0;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;47583:7;;;;61404:33:::1;;61429:8;:6;:8::i;:::-;61344:101::o:0;61404:33::-:1;61416:10;:8;:10::i;56934:21::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23539:295::-;23656:7;-1:-1:-1;;;;;23703:19:0;;23681:111;;;;-1:-1:-1;;;23681:111:0;;17794:2:1;23681:111:0;;;17776:21:1;17833:2;17813:18;;;17806:30;17872:34;17852:18;;;17845:62;-1:-1:-1;;;17923:18:1;;;17916:40;17973:19;;23681:111:0;17592:406:1;23681:111:0;-1:-1:-1;;;;;;23810:16:0;;;;;:9;:16;;;;;;;23539:295::o;50469:148::-;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;50560:6:::1;::::0;50539:40:::1;::::0;50576:1:::1;::::0;50560:6:::1;::::0;::::1;-1:-1:-1::0;;;;;50560:6:0::1;::::0;50539:40:::1;::::0;50576:1;;50539:40:::1;50590:6;:19:::0;;-1:-1:-1;;;;;;50590:19:0::1;::::0;;50469:148::o;60603:370::-;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;60728:1:::1;60706:12;:19;:23;60698:55;;;::::0;-1:-1:-1;;;60698:55:0;;15014:2:1;60698:55:0::1;::::0;::::1;14996:21:1::0;15053:2;15033:18;;;15026:30;-1:-1:-1;;;15072:18:1;;;15065:50;15132:18;;60698:55:0::1;14812:344:1::0;60698:55:0::1;60770:9;60766:190;60788:12;:19;60784:1;:23;60766:190;;;60865:1;-1:-1:-1::0;;;;;60838:29:0::1;:12;60851:1;60838:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;60838:29:0::1;::::0;60830:62:::1;;;::::0;-1:-1:-1;;;60830:62:0;;18205:2:1;60830:62:0::1;::::0;::::1;18187:21:1::0;18244:2;18224:18;;;18217:30;-1:-1:-1;;;18263:18:1;;;18256:50;18323:18;;60830:62:0::1;18003:344:1::0;60830:62:0::1;60939:5;60908:11;:28;60920:12;60933:1;60920:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;60908:28:0::1;-1:-1:-1::0;;;;;60908:28:0::1;;;;;;;;;;;;:36;;;;60809:3;;;;;:::i;:::-;;;;60766:190;;61893:116:::0;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;61975:26:::1;61988:7;61997:3;61975:12;:26::i;61785:90::-:0;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;61851:5:::1;:16:::0;61785:90::o;24458:104::-;24514:13;24547:7;24540:14;;;;;:::i;65030:363::-;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;65159:14;65127:21:::1;65185:201;65209:3;:10;65205:1;:14;65185:201;;;65241:13;-1:-1:-1::0;;;;;65241:30:0::1;;65280:4;65287:7;49891:6:::0;;-1:-1:-1;;;;;49891:6:0;;;;;;49818:87;65287:7:::1;65296:3;65300:1;65296:6;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;65241:62:::1;::::0;-1:-1:-1;;;;;;65241:62:0::1;::::0;;;;;;-1:-1:-1;;;;;18610:15:1;;;65241:62:0::1;::::0;::::1;18592:34:1::0;18662:15;;;;18642:18;;;18635:43;18694:18;;;18687:34;18527:18;;65241:62:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;65341:10;-1:-1:-1::0;;;;;65323:51:0::1;;65352:14;65367:3;65371:1;65367:6;;;;;;;;:::i;:::-;;;;;;;65323:51;;;;;;-1:-1:-1::0;;;;;5018:32:1;;;;5000:51;;5082:2;5067:18;;5060:34;4988:2;4973:18;;4826:274;65323:51:0::1;;;;;;;;65221:3:::0;::::1;::::0;::::1;:::i;:::-;;;;65185:201;;;;65116:277;65030:363:::0;;:::o;58638:828::-;47583:7;;;;47837:9;47829:38;;;;-1:-1:-1;;;47829:38:0;;;;;;;:::i;:::-;58708:14:::1;58725:13;39151:10:::0;:17;;39063:113;58725:13:::1;58708:30;;58766:1;58757:6;:10;:32;;;;;58781:8;;58771:6;:18;;58757:32;58749:67;;;::::0;-1:-1:-1;;;58749:67:0;;19279:2:1;58749:67:0::1;::::0;::::1;19261:21:1::0;19318:2;19298:18;;;19291:30;19357:25;19337:18;;;19330:53;19400:18;;58749:67:0::1;19077:347:1::0;58749:67:0::1;58864:12;;58835:21;58845:10;58835:9;:21::i;:::-;:25;::::0;58859:1:::1;58835:25;:::i;:::-;:41;;58827:81;;;::::0;-1:-1:-1;;;58827:81:0;;19764:2:1;58827:81:0::1;::::0;::::1;19746:21:1::0;19803:2;19783:18;;;19776:30;19842;19822:18;;;19815:58;19890:18;;58827:81:0::1;19562:352:1::0;58827:81:0::1;58948:6;58940:5;;:14;;;;:::i;:::-;58927:9;:27;58919:60;;;::::0;-1:-1:-1;;;58919:60:0;;20121:2:1;58919:60:0::1;::::0;::::1;20103:21:1::0;20160:2;20140:18;;;20133:30;-1:-1:-1;;;20179:18:1;;;20172:50;20239:18;;58919:60:0::1;19919:344:1::0;58919:60:0::1;59020:9;::::0;59016:1:::1;58998:15;59007:6:::0;58998;:15:::1;:::i;:::-;:19;;;;:::i;:::-;:31;58990:85;;;::::0;-1:-1:-1;;;58990:85:0;;20600:2:1;58990:85:0::1;::::0;::::1;20582:21:1::0;20639:2;20619:18;;;20612:30;20678:34;20658:18;;;20651:62;-1:-1:-1;;;20729:18:1;;;20722:39;20778:19;;58990:85:0::1;20398:405:1::0;58990:85:0::1;59089:15;::::0;::::1;;59086:135;;;59135:10;59123:23;::::0;;;:11:::1;:23;::::0;;;;;:33;-1:-1:-1;59123:33:0::1;59115:106;;;::::0;-1:-1:-1;;;59115:106:0;;21010:2:1;59115:106:0::1;::::0;::::1;20992:21:1::0;21049:2;21029:18;;;21022:30;21088:34;21068:18;;;21061:62;21159:31;21139:18;;;21132:59;21208:19;;59115:106:0::1;20808:425:1::0;59115:106:0::1;59257:9;59252:164;59276:6;59272:1;:10;59252:164;;;59304:24;59317:10;59304:12;:24::i;:::-;59346:15;::::0;::::1;;59343:61;;;59388:10;59376:23;::::0;;;:11:::1;:23;::::0;;;;:28;;59403:1:::1;::::0;59376:23;:28:::1;::::0;59403:1;;59376:28:::1;:::i;:::-;::::0;;;-1:-1:-1;;59343:61:0::1;59284:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59252:164;;;;59438:20;59448:9;59438;:20::i;26359:327::-:0;18424:10;-1:-1:-1;;;;;26494:24:0;;;26486:62;;;;-1:-1:-1;;;26486:62:0;;21440:2:1;26486:62:0;;;21422:21:1;21479:2;21459:18;;;21452:30;21518:27;21498:18;;;21491:55;21563:18;;26486:62:0;21238:349:1;26486:62:0;18424:10;26561:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26561:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26561:53:0;;;;;;;;;;26630:48;;339:41:1;;;26561:42:0;;18424:10;26630:48;;312:18:1;26630:48:0;;;;;;;26359:327;;:::o;27741:365::-;27930:41;18424:10;27963:7;27930:18;:41::i;:::-;27908:140;;;;-1:-1:-1;;;27908:140:0;;;;;;;:::i;:::-;28059:39;28073:4;28079:2;28083:7;28092:5;28059:13;:39::i;61231:105::-;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;61313:15:::1;::::0;;-1:-1:-1;;61294:34:0;::::1;61313:15;::::0;;::::1;61312:16;61294:34;::::0;;61231:105::o;56962:37::-;;;;;;;:::i;61567:98::-;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;61637:8:::1;:20:::0;61567:98::o;59482:196::-;59609:13;59647:23;59662:7;59647:14;:23::i;59686:526::-;59767:16;59801:18;59822:17;59832:6;59822:9;:17::i;:::-;59801:38;;59854:10;59868:1;59854:15;59850:355;;59893:16;;;59907:1;59893:16;;;;;;;;;;;-1:-1:-1;59886:23:0;59686:526;-1:-1:-1;;;59686:526:0:o;59850:355::-;59942:23;59982:10;59968:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;59968:25:0;;59942:51;;60008:13;60036:130;60060:10;60052:5;:18;60036:130;;;60116:34;60136:6;60144:5;60116:19;:34::i;:::-;60100:6;60107:5;60100:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;60072:7;;;;:::i;:::-;;;;60036:130;;59850:355;59790:422;59686:526;;;:::o;63785:403::-;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;63861:21:::1;63901:10:::0;63893:39:::1;;;::::0;-1:-1:-1;;;63893:39:0;;15769:2:1;63893:39:0::1;::::0;::::1;15751:21:1::0;15808:2;15788:18;;;15781:30;-1:-1:-1;;;15827:18:1;;;15820:47;15884:18;;63893:39:0::1;15567:341:1::0;63893:39:0::1;63943:36;::::0;63951:10:::1;::::0;63943:36;::::1;;;::::0;63972:6;;63943:36:::1;::::0;;;63972:6;63951:10;63943:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;63994:7;63990:144;64010:7;:14:::0;64006:18:::1;::::0;::::1;;63990:144;;;64046:18;64067:7;64075:1;64067:10;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;64067:10:0::1;64092:19:::0;;:7:::1;:19:::0;;;;;64067:10;64092:26:::1;:30:::0;-1:-1:-1;64026:3:0;::::1;::::0;::::1;:::i;:::-;;;;63990:144;;;-1:-1:-1::0;64149:31:0::1;::::0;2510:25:1;;;64162:10:0::1;::::0;64149:31:::1;::::0;2498:2:1;2483:18;64149:31:0::1;2364:177:1::0;50772:281:0;49891:6;;-1:-1:-1;;;;;49891:6:0;;;;;18424:10;50038:23;50030:68;;;;-1:-1:-1;;;50030:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50875:22:0;::::1;50853:110;;;::::0;-1:-1:-1;;;50853:110:0;;21974:2:1;50853:110:0::1;::::0;::::1;21956:21:1::0;22013:2;21993:18;;;21986:30;22052:34;22032:18;;;22025:62;-1:-1:-1;;;22103:18:1;;;22096:36;22149:19;;50853:110:0::1;21772:402:1::0;50853:110:0::1;51000:6;::::0;50979:38:::1;::::0;-1:-1:-1;;;;;50979:38:0;;::::1;::::0;51000:6:::1;::::0;::::1;;::::0;50979:38:::1;::::0;;;::::1;51028:6;:17:::0;;-1:-1:-1;;;;;51028:17:0;;::::1;;;-1:-1:-1::0;;;;;;51028:17:0;;::::1;::::0;;;::::1;::::0;;50772:281::o;29653:127::-;29718:4;29742:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29742:16:0;:30;;;29653:127::o;38260:300::-;38407:4;-1:-1:-1;;;;;;38449:50:0;;-1:-1:-1;;;38449:50:0;;:103;;;38516:36;38540:11;38516:23;:36::i;33776:174::-;33851:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33851:29:0;-1:-1:-1;;;;;33851:29:0;;;;;;;;:24;;33905:23;33851:24;33905:14;:23::i;:::-;-1:-1:-1;;;;;33896:46:0;;;;;;;;;;;33776:174;;:::o;29947:452::-;30076:4;30120:16;30128:7;30120;:16::i;:::-;30098:110;;;;-1:-1:-1;;;30098:110:0;;22381:2:1;30098:110:0;;;22363:21:1;22420:2;22400:18;;;22393:30;22459:34;22439:18;;;22432:62;-1:-1:-1;;;22510:18:1;;;22503:42;22562:19;;30098:110:0;22179:408:1;30098:110:0;30219:13;30235:23;30250:7;30235:14;:23::i;:::-;30219:39;;30288:5;-1:-1:-1;;;;;30277:16:0;:7;-1:-1:-1;;;;;30277:16:0;;:64;;;;30334:7;-1:-1:-1;;;;;30310:31:0;:20;30322:7;30310:11;:20::i;:::-;-1:-1:-1;;;;;30310:31:0;;30277:64;:113;;;-1:-1:-1;;;;;;26928:25:0;;;26899:4;26928:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30358:32;30269:122;29947:452;-1:-1:-1;;;;29947:452:0:o;33043:615::-;33216:4;-1:-1:-1;;;;;33189:31:0;:23;33204:7;33189:14;:23::i;:::-;-1:-1:-1;;;;;33189:31:0;;33167:122;;;;-1:-1:-1;;;33167:122:0;;22794:2:1;33167:122:0;;;22776:21:1;22833:2;22813:18;;;22806:30;22872:34;22852:18;;;22845:62;-1:-1:-1;;;22923:18:1;;;22916:39;22972:19;;33167:122:0;22592:405:1;33167:122:0;-1:-1:-1;;;;;33308:16:0;;33300:65;;;;-1:-1:-1;;;33300:65:0;;23204:2:1;33300:65:0;;;23186:21:1;23243:2;23223:18;;;23216:30;23282:34;23262:18;;;23255:62;-1:-1:-1;;;23333:18:1;;;23326:34;23377:19;;33300:65:0;23002:400:1;33300:65:0;33378:39;33399:4;33405:2;33409:7;33378:20;:39::i;:::-;33482:29;33499:1;33503:7;33482:8;:29::i;:::-;-1:-1:-1;;;;;33524:15:0;;;;;;:9;:15;;;;;:20;;33543:1;;33524:15;:20;;33543:1;;33524:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33555:13:0;;;;;;:9;:13;;;;;:18;;33572:1;;33555:13;:18;;33572:1;;33555:18;:::i;:::-;;;;-1:-1:-1;;33584:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33584:21:0;-1:-1:-1;;;;;33584:21:0;;;;;;;;;33623:27;;33584:16;;33623:27;;;;;;;33043:615;;;:::o;64792:171::-;64878:9;64873:83;64897:6;64893:1;:10;64873:83;;;64925:19;64938:5;64925:12;:19::i;:::-;64905:3;;;;:::i;:::-;;;;64873:83;;62451:136;62506:15;62524:18;:16;:18::i;:::-;:22;;62545:1;62524:22;:::i;:::-;62506:40;;62557:22;62567:2;62571:7;62557:9;:22::i;63244:138::-;63354:20;63366:7;63354:11;:20::i;48312:118::-;47583:7;;;;47837:9;47829:38;;;;-1:-1:-1;;;47829:38:0;;;;;;;:::i;:::-;48372:7:::1;:14:::0;;-1:-1:-1;;48372:14:0::1;48382:4;48372:14;::::0;;48402:20:::1;48409:12;18424:10:::0;;18344:98;48409:12:::1;48402:20;::::0;-1:-1:-1;;;;;2061:32:1;;;2043:51;;2031:2;2016:18;48402:20:0::1;;;;;;;48312:118::o:0;48571:120::-;47583:7;;;;48107:41;;;;-1:-1:-1;;;48107:41:0;;23609:2:1;48107:41:0;;;23591:21:1;23648:2;23628:18;;;23621:30;-1:-1:-1;;;23667:18:1;;;23660:50;23727:18;;48107:41:0;23407:344:1;48107:41:0;48630:7:::1;:15:::0;;-1:-1:-1;;48630:15:0::1;::::0;;48661:22:::1;18424:10:::0;48670:12:::1;18344:98:::0;45719:277;45856:16;45864:7;45856;:16::i;:::-;45834:112;;;;-1:-1:-1;;;45834:112:0;;23958:2:1;45834:112:0;;;23940:21:1;23997:2;23977:18;;;23970:30;24036:34;24016:18;;;24009:62;-1:-1:-1;;;24087:18:1;;;24080:44;24141:19;;45834:112:0;23756:410:1;45834:112:0;45957:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;58267:357::-;58332:7;58328:287;58348:7;:14;58344:18;;;;58328:287;;;58384:18;58405:7;58413:1;58405:10;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;58405:10:0;58448:19;;;:7;:19;;;;;;:27;58405:10;;-1:-1:-1;58448:27:0;58513:33;58540:5;58513:22;:10;58448:27;58513:14;:22::i;:::-;:26;;:33::i;:::-;-1:-1:-1;;;;;58561:19:0;;;;;;:7;:19;;;;;:26;;:42;;58490:56;;-1:-1:-1;58490:56:0;;58561:26;;:19;:42;;58490:56;;58561:42;:::i;:::-;;;;;;;;58369:246;;;58364:3;;;;;:::i;:::-;;;;58328:287;;28988:352;29145:28;29155:4;29161:2;29165:7;29145:9;:28::i;:::-;29206:48;29229:4;29235:2;29239:7;29248:5;29206:22;:48::i;:::-;29184:148;;;;-1:-1:-1;;;29184:148:0;;;;;;;:::i;45102:461::-;45220:13;45273:16;45281:7;45273;:16::i;:::-;45251:115;;;;-1:-1:-1;;;45251:115:0;;24792:2:1;45251:115:0;;;24774:21:1;24831:2;24811:18;;;24804:30;24870:34;24850:18;;;24843:62;-1:-1:-1;;;24921:18:1;;;24914:47;24978:19;;45251:115:0;24590:413:1;45251:115:0;45379:18;45400:10;:8;:10::i;:::-;45379:31;;45421:17;45441:16;:14;:16::i;:::-;45421:36;;45520:4;45526:20;45527:7;45526:18;:20::i;:::-;45548:3;45503:49;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45489:64;;;;45102:461;;;:::o;23120:355::-;23267:4;-1:-1:-1;;;;;;23309:40:0;;-1:-1:-1;;;23309:40:0;;:105;;-1:-1:-1;;;;;;;23366:48:0;;-1:-1:-1;;;23366:48:0;23309:105;:158;;;-1:-1:-1;;;;;;;;;;21745:40:0;;;23431:36;21586:207;62999:229;47583:7;;;;47837:9;47829:38;;;;-1:-1:-1;;;47829:38:0;;;;;;;:::i;:::-;63175:45:::1;63202:4;63208:2;63212:7;63175:26;:45::i;542:775::-:0;595:7;615:13;641:11;;631:9;:21;;;;:::i;:::-;615:37;;663:12;686:14;713:9;742:5;725:14;:12;:14::i;:::-;:22;;;;:::i;:::-;713:34;-1:-1:-1;826:11:0;:20;838:7;844:1;838:5;:7;:::i;:::-;826:20;;;;;;;;;;;;850:1;826:25;822:131;;874:7;880:1;874:5;:7;:::i;:::-;867:14;;822:131;;;921:11;:20;933:7;939:1;933:5;:7;:::i;:::-;921:20;;;;;;;;;;;;914:27;;822:131;1077:14;;;;:11;:14;;;;;;:19;;1073:189;;1137:14;;;;:11;:14;;;;;:21;;;1121:1;-1:-1:-1;1121:1:0;1073:189;;;1200:14;;;;:11;:14;;;;;;;1229:21;;;;1200:14;-1:-1:-1;1073:189:0;1272:11;:13;;;:11;:13;;;:::i;:::-;;;;-1:-1:-1;1303:6:0;;542:775;-1:-1:-1;;;;;542:775:0:o;30741:110::-;30817:26;30827:2;30831:7;30817:26;;;;;;;;;;;;:9;:26::i;46225:206::-;46294:20;46306:7;46294:11;:20::i;:::-;46337:19;;;;:10;:19;;;;;46331:33;;;;;:::i;:::-;:38;;-1:-1:-1;46327:97:0;;46393:19;;;;:10;:19;;;;;46386:26;;;:::i;55051:250::-;55109:7;55133:1;55138;55133:6;55129:47;;-1:-1:-1;55163:1:0;55156:8;;55129:47;55188:9;55200:5;55204:1;55200;:5;:::i;:::-;55188:17;-1:-1:-1;55233:1:0;55224:5;55228:1;55188:17;55224:5;:::i;:::-;:10;55216:56;;;;-1:-1:-1;;;55216:56:0;;25996:2:1;55216:56:0;;;25978:21:1;26035:2;26015:18;;;26008:30;26074:34;26054:18;;;26047:62;-1:-1:-1;;;26125:18:1;;;26118:31;26166:19;;55216:56:0;25794:397:1;55216:56:0;55292:1;55051:250;-1:-1:-1;;;55051:250:0:o;55311:132::-;55369:7;55396:39;55400:1;55403;55396:39;;;;;;;;;;;;;;;;;:3;:39::i;34515:1053::-;34670:4;-1:-1:-1;;;;;34691:13:0;;10138:20;10186:8;34687:874;;34744:175;;-1:-1:-1;;;34744:175:0;;-1:-1:-1;;;;;34744:36:0;;;;;:175;;18424:10;;34838:4;;34865:7;;34895:5;;34744:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34744:175:0;;;;;;;;-1:-1:-1;;34744:175:0;;;;;;;;;;;;:::i;:::-;;;34723:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35106:6;:13;35123:1;35106:18;35102:389;;35149:108;;-1:-1:-1;;;35149:108:0;;;;;;;:::i;35102:389::-;35441:6;35435:13;35426:6;35422:2;35418:15;35411:38;34723:783;-1:-1:-1;;;;;;34983:55:0;-1:-1:-1;;;34983:55:0;;-1:-1:-1;34976:62:0;;34687:874;-1:-1:-1;35545:4:0;34515:1053;;;;;;:::o;58154:100::-;58206:13;58239:7;58232:14;;;;;:::i;58032:112::-;58090:13;58123;58116:20;;;;;:::i;19001:723::-;19057:13;19278:5;19287:1;19278:10;19274:53;;-1:-1:-1;;19305:10:0;;;;;;;;;;;;-1:-1:-1;;;19305:10:0;;;;;19001:723::o;19274:53::-;19352:5;19337:12;19393:78;19400:9;;19393:78;;19426:8;;;;:::i;:::-;;-1:-1:-1;19449:10:0;;-1:-1:-1;19457:2:0;19449:10;;:::i;:::-;;;19393:78;;;19481:19;19513:6;19503:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19503:17:0;;19481:39;;19531:154;19538:10;;19531:154;;19565:11;19575:1;19565:11;;:::i;:::-;;-1:-1:-1;19634:10:0;19642:2;19634:5;:10;:::i;:::-;19621:24;;:2;:24;:::i;:::-;19608:39;;19591:6;19598;19591:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19591:56:0;;;;;;;;-1:-1:-1;19662:11:0;19671:2;19662:11;;:::i;:::-;;;19531:154;;40186:589;-1:-1:-1;;;;;40392:18:0;;40388:187;;40427:40;40459:7;41602:10;:17;;41575:24;;;;:15;:24;;;;;:44;;;41630:24;;;;;;;;;;;;41498:164;40427:40;40388:187;;;40497:2;-1:-1:-1;;;;;40489:10:0;:4;-1:-1:-1;;;;;40489:10:0;;40485:90;;40516:47;40549:4;40555:7;40516:32;:47::i;:::-;-1:-1:-1;;;;;40589:16:0;;40585:183;;40622:45;40659:7;40622:36;:45::i;40585:183::-;40695:4;-1:-1:-1;;;;;40689:10:0;:2;-1:-1:-1;;;;;40689:10:0;;40685:83;;40716:40;40744:2;40748:7;40716:27;:40::i;1325:151::-;1371:7;1432:16;1450:15;1415:51;;;;;;;;27101:19:1;;;27145:2;27136:12;;27129:28;27182:2;27173:12;;26944:247;1415:51:0;;;;;;;;;;;;;1405:62;;;;;;1397:71;;1390:78;;1325:151;:::o;31078:321::-;31208:18;31214:2;31218:7;31208:5;:18::i;:::-;31259:54;31290:1;31294:2;31298:7;31307:5;31259:22;:54::i;:::-;31237:154;;;;-1:-1:-1;;;31237:154:0;;;;;;;:::i;32346:360::-;32406:13;32422:23;32437:7;32422:14;:23::i;:::-;32406:39;;32458:48;32479:5;32494:1;32498:7;32458:20;:48::i;:::-;32547:29;32564:1;32568:7;32547:8;:29::i;:::-;-1:-1:-1;;;;;32589:16:0;;;;;;:9;:16;;;;;:21;;32609:1;;32589:16;:21;;32609:1;;32589:21;:::i;:::-;;;;-1:-1:-1;;32628:16:0;;;;:7;:16;;;;;;32621:23;;-1:-1:-1;;;;;;32621:23:0;;;32662:36;32636:7;;32628:16;-1:-1:-1;;;;;32662:36:0;;;;;32628:16;;32662:36;32395:311;32346:360;:::o;55451:278::-;55537:7;55572:12;55565:5;55557:28;;;;-1:-1:-1;;;55557:28:0;;;;;;;;:::i;:::-;-1:-1:-1;55596:9:0;55608:5;55612:1;55608;:5;:::i;:::-;55596:17;55451:278;-1:-1:-1;;;;;55451:278:0:o;42289:1002::-;42569:22;42619:1;42594:22;42611:4;42594:16;:22::i;:::-;:26;;;;:::i;:::-;42631:18;42652:26;;;:17;:26;;;;;;42569:51;;-1:-1:-1;42785:28:0;;;42781:328;;-1:-1:-1;;;;;42852:18:0;;42830:19;42852:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42903:30;;;;;;:44;;;43020:30;;:17;:30;;;;;:43;;;42781:328;-1:-1:-1;43205:26:0;;;;:17;:26;;;;;;;;43198:33;;;-1:-1:-1;;;;;43249:18:0;;;;;:12;:18;;;;;:34;;;;;;;43242:41;42289:1002::o;43586:1079::-;43864:10;:17;43839:22;;43864:21;;43884:1;;43864:21;:::i;:::-;43896:18;43917:24;;;:15;:24;;;;;;44290:10;:26;;43839:46;;-1:-1:-1;43917:24:0;;43839:46;;44290:26;;;;;;:::i;:::-;;;;;;;;;44268:48;;44354:11;44329:10;44340;44329:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44434:28;;;:15;:28;;;;;;;:41;;;44606:24;;;;;44599:31;44641:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43657:1008;;;43586:1079;:::o;41076:221::-;41161:14;41178:20;41195:2;41178:16;:20::i;:::-;-1:-1:-1;;;;;41209:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41254:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41076:221:0:o;31735:382::-;-1:-1:-1;;;;;31815:16:0;;31807:61;;;;-1:-1:-1;;;31807:61:0;;27530:2:1;31807:61:0;;;27512:21:1;;;27549:18;;;27542:30;27608:34;27588:18;;;27581:62;27660:18;;31807:61:0;27328:356:1;31807:61:0;31888:16;31896:7;31888;:16::i;:::-;31887:17;31879:58;;;;-1:-1:-1;;;31879:58:0;;27891:2:1;31879:58:0;;;27873:21:1;27930:2;27910:18;;;27903:30;27969;27949:18;;;27942:58;28017:18;;31879:58:0;27689:352:1;31879:58:0;31950:45;31979:1;31983:2;31987:7;31950:20;:45::i;:::-;-1:-1:-1;;;;;32008:13:0;;;;;;:9;:13;;;;;:18;;32025:1;;32008:13;:18;;32025:1;;32008:18;:::i;:::-;;;;-1:-1:-1;;32037:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32037:21:0;-1:-1:-1;;;;;32037:21:0;;;;;;;;32076:33;;32037:16;;;32076:33;;32037:16;;32076:33;31735:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:180:1;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;-1:-1:-1;165:23:1;;14:180;-1:-1:-1;14:180:1:o;391:131::-;-1:-1:-1;;;;;;465:32:1;;455:43;;445:71;;512:1;509;502:12;527:245;585:6;638:2;626:9;617:7;613:23;609:32;606:52;;;654:1;651;644:12;606:52;693:9;680:23;712:30;736:5;712:30;:::i;777:173::-;845:20;;-1:-1:-1;;;;;894:31:1;;884:42;;874:70;;940:1;937;930:12;874:70;777:173;;;:::o;955:186::-;1014:6;1067:2;1055:9;1046:7;1042:23;1038:32;1035:52;;;1083:1;1080;1073:12;1035:52;1106:29;1125:9;1106:29;:::i;1146:258::-;1218:1;1228:113;1242:6;1239:1;1236:13;1228:113;;;1318:11;;;1312:18;1299:11;;;1292:39;1264:2;1257:10;1228:113;;;1359:6;1356:1;1353:13;1350:48;;;-1:-1:-1;;1394:1:1;1376:16;;1369:27;1146:258::o;1409:::-;1451:3;1489:5;1483:12;1516:6;1511:3;1504:19;1532:63;1588:6;1581:4;1576:3;1572:14;1565:4;1558:5;1554:16;1532:63;:::i;:::-;1649:2;1628:15;-1:-1:-1;;1624:29:1;1615:39;;;;1656:4;1611:50;;1409:258;-1:-1:-1;;1409:258:1:o;1672:220::-;1821:2;1810:9;1803:21;1784:4;1841:45;1882:2;1871:9;1867:18;1859:6;1841:45;:::i;2105:254::-;2173:6;2181;2234:2;2222:9;2213:7;2209:23;2205:32;2202:52;;;2250:1;2247;2240:12;2202:52;2273:29;2292:9;2273:29;:::i;:::-;2263:39;2349:2;2334:18;;;;2321:32;;-1:-1:-1;;;2105:254:1:o;2546:328::-;2623:6;2631;2639;2692:2;2680:9;2671:7;2667:23;2663:32;2660:52;;;2708:1;2705;2698:12;2660:52;2731:29;2750:9;2731:29;:::i;:::-;2721:39;;2779:38;2813:2;2802:9;2798:18;2779:38;:::i;:::-;2769:48;;2864:2;2853:9;2849:18;2836:32;2826:42;;2546:328;;;;;:::o;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:275;3082:2;3076:9;3147:2;3128:13;;-1:-1:-1;;3124:27:1;3112:40;;3182:18;3167:34;;3203:22;;;3164:62;3161:88;;;3229:18;;:::i;:::-;3265:2;3258:22;3011:275;;-1:-1:-1;3011:275:1:o;3291:183::-;3351:4;3384:18;3376:6;3373:30;3370:56;;;3406:18;;:::i;:::-;-1:-1:-1;3451:1:1;3447:14;3463:4;3443:25;;3291:183::o;3479:668::-;3533:5;3586:3;3579:4;3571:6;3567:17;3563:27;3553:55;;3604:1;3601;3594:12;3553:55;3640:6;3627:20;3666:4;3690:60;3706:43;3746:2;3706:43;:::i;:::-;3690:60;:::i;:::-;3784:15;;;3870:1;3866:10;;;;3854:23;;3850:32;;;3815:12;;;;3894:15;;;3891:35;;;3922:1;3919;3912:12;3891:35;3958:2;3950:6;3946:15;3970:148;3986:6;3981:3;3978:15;3970:148;;;4052:23;4071:3;4052:23;:::i;:::-;4040:36;;4096:12;;;;4003;;3970:148;;;-1:-1:-1;4136:5:1;3479:668;-1:-1:-1;;;;;;3479:668:1:o;4152:416::-;4245:6;4253;4306:2;4294:9;4285:7;4281:23;4277:32;4274:52;;;4322:1;4319;4312:12;4274:52;4362:9;4349:23;4395:18;4387:6;4384:30;4381:50;;;4427:1;4424;4417:12;4381:50;4450:61;4503:7;4494:6;4483:9;4479:22;4450:61;:::i;:::-;4440:71;4558:2;4543:18;;;;4530:32;;-1:-1:-1;;;;4152:416:1:o;4573:248::-;4641:6;4649;4702:2;4690:9;4681:7;4677:23;4673:32;4670:52;;;4718:1;4715;4708:12;4670:52;-1:-1:-1;;4741:23:1;;;4811:2;4796:18;;;4783:32;;-1:-1:-1;4573:248:1:o;5105:272::-;5163:6;5216:2;5204:9;5195:7;5191:23;5187:32;5184:52;;;5232:1;5229;5222:12;5184:52;5271:9;5258:23;5321:6;5314:5;5310:18;5303:5;5300:29;5290:57;;5343:1;5340;5333:12;5382:348;5466:6;5519:2;5507:9;5498:7;5494:23;5490:32;5487:52;;;5535:1;5532;5525:12;5487:52;5575:9;5562:23;5608:18;5600:6;5597:30;5594:50;;;5640:1;5637;5630:12;5594:50;5663:61;5716:7;5707:6;5696:9;5692:22;5663:61;:::i;5735:407::-;5800:5;5834:18;5826:6;5823:30;5820:56;;;5856:18;;:::i;:::-;5894:57;5939:2;5918:15;;-1:-1:-1;;5914:29:1;5945:4;5910:40;5894:57;:::i;:::-;5885:66;;5974:6;5967:5;5960:21;6014:3;6005:6;6000:3;5996:16;5993:25;5990:45;;;6031:1;6028;6021:12;5990:45;6080:6;6075:3;6068:4;6061:5;6057:16;6044:43;6134:1;6127:4;6118:6;6111:5;6107:18;6103:29;6096:40;5735:407;;;;;:::o;6147:222::-;6190:5;6243:3;6236:4;6228:6;6224:17;6220:27;6210:55;;6261:1;6258;6251:12;6210:55;6283:80;6359:3;6350:6;6337:20;6330:4;6322:6;6318:17;6283:80;:::i;6374:322::-;6443:6;6496:2;6484:9;6475:7;6471:23;6467:32;6464:52;;;6512:1;6509;6502:12;6464:52;6552:9;6539:23;6585:18;6577:6;6574:30;6571:50;;;6617:1;6614;6607:12;6571:50;6640;6682:7;6673:6;6662:9;6658:22;6640:50;:::i;6701:390::-;6779:6;6787;6840:2;6828:9;6819:7;6815:23;6811:32;6808:52;;;6856:1;6853;6846:12;6808:52;6892:9;6879:23;6869:33;;6953:2;6942:9;6938:18;6925:32;6980:18;6972:6;6969:30;6966:50;;;7012:1;7009;7002:12;6966:50;7035;7077:7;7068:6;7057:9;7053:22;7035:50;:::i;:::-;7025:60;;;6701:390;;;;;:::o;7096:965::-;7189:6;7197;7250:2;7238:9;7229:7;7225:23;7221:32;7218:52;;;7266:1;7263;7256:12;7218:52;7289:29;7308:9;7289:29;:::i;:::-;7279:39;;7337:2;7390;7379:9;7375:18;7362:32;7417:18;7409:6;7406:30;7403:50;;;7449:1;7446;7439:12;7403:50;7472:22;;7525:4;7517:13;;7513:27;-1:-1:-1;7503:55:1;;7554:1;7551;7544:12;7503:55;7590:2;7577:16;7613:60;7629:43;7669:2;7629:43;:::i;7613:60::-;7707:15;;;7789:1;7785:10;;;;7777:19;;7773:28;;;7738:12;;;;7813:19;;;7810:39;;;7845:1;7842;7835:12;7810:39;7869:11;;;;7889:142;7905:6;7900:3;7897:15;7889:142;;;7971:17;;7959:30;;7922:12;;;;8009;;;;7889:142;;;8050:5;8040:15;;;;;;;7096:965;;;;;:::o;8066:118::-;8152:5;8145:13;8138:21;8131:5;8128:32;8118:60;;8174:1;8171;8164:12;8189:315;8254:6;8262;8315:2;8303:9;8294:7;8290:23;8286:32;8283:52;;;8331:1;8328;8321:12;8283:52;8354:29;8373:9;8354:29;:::i;:::-;8344:39;;8433:2;8422:9;8418:18;8405:32;8446:28;8468:5;8446:28;:::i;:::-;8493:5;8483:15;;;8189:315;;;;;:::o;8509:667::-;8604:6;8612;8620;8628;8681:3;8669:9;8660:7;8656:23;8652:33;8649:53;;;8698:1;8695;8688:12;8649:53;8721:29;8740:9;8721:29;:::i;:::-;8711:39;;8769:38;8803:2;8792:9;8788:18;8769:38;:::i;:::-;8759:48;;8854:2;8843:9;8839:18;8826:32;8816:42;;8909:2;8898:9;8894:18;8881:32;8936:18;8928:6;8925:30;8922:50;;;8968:1;8965;8958:12;8922:50;8991:22;;9044:4;9036:13;;9032:27;-1:-1:-1;9022:55:1;;9073:1;9070;9063:12;9022:55;9096:74;9162:7;9157:2;9144:16;9139:2;9135;9131:11;9096:74;:::i;:::-;9086:84;;;8509:667;;;;;;;:::o;9181:632::-;9352:2;9404:21;;;9474:13;;9377:18;;;9496:22;;;9323:4;;9352:2;9575:15;;;;9549:2;9534:18;;;9323:4;9618:169;9632:6;9629:1;9626:13;9618:169;;;9693:13;;9681:26;;9762:15;;;;9727:12;;;;9654:1;9647:9;9618:169;;;-1:-1:-1;9804:3:1;;9181:632;-1:-1:-1;;;;;;9181:632:1:o;9818:260::-;9886:6;9894;9947:2;9935:9;9926:7;9922:23;9918:32;9915:52;;;9963:1;9960;9953:12;9915:52;9986:29;10005:9;9986:29;:::i;:::-;9976:39;;10034:38;10068:2;10057:9;10053:18;10034:38;:::i;:::-;10024:48;;9818:260;;;;;:::o;10336:356::-;10538:2;10520:21;;;10557:18;;;10550:30;10616:34;10611:2;10596:18;;10589:62;10683:2;10668:18;;10336:356::o;10697:380::-;10776:1;10772:12;;;;10819;;;10840:61;;10894:4;10886:6;10882:17;10872:27;;10840:61;10947:2;10939:6;10936:14;10916:18;10913:38;10910:161;;10993:10;10988:3;10984:20;10981:1;10974:31;11028:4;11025:1;11018:15;11056:4;11053:1;11046:15;12322:413;12524:2;12506:21;;;12563:2;12543:18;;;12536:30;12602:34;12597:2;12582:18;;12575:62;-1:-1:-1;;;12668:2:1;12653:18;;12646:47;12725:3;12710:19;;12322:413::o;12740:127::-;12801:10;12796:3;12792:20;12789:1;12782:31;12832:4;12829:1;12822:15;12856:4;12853:1;12846:15;12872:127;12933:10;12928:3;12924:20;12921:1;12914:31;12964:4;12961:1;12954:15;12988:4;12985:1;12978:15;13004:135;13043:3;13064:17;;;13061:43;;13084:18;;:::i;:::-;-1:-1:-1;13131:1:1;13120:13;;13004:135::o;13144:168::-;13184:7;13250:1;13246;13242:6;13238:14;13235:1;13232:21;13227:1;13220:9;13213:17;13209:45;13206:71;;;13257:18;;:::i;:::-;-1:-1:-1;13297:9:1;;13144:168::o;13317:127::-;13378:10;13373:3;13369:20;13366:1;13359:31;13409:4;13406:1;13399:15;13433:4;13430:1;13423:15;13449:120;13489:1;13515;13505:35;;13520:18;;:::i;:::-;-1:-1:-1;13554:9:1;;13449:120::o;16330:184::-;16400:6;16453:2;16441:9;16432:7;16428:23;16424:32;16421:52;;;16469:1;16466;16459:12;16421:52;-1:-1:-1;16492:16:1;;16330:184;-1:-1:-1;16330:184:1:o;16519:245::-;16586:6;16639:2;16627:9;16618:7;16614:23;16610:32;16607:52;;;16655:1;16652;16645:12;16607:52;16687:9;16681:16;16706:28;16728:5;16706:28;:::i;18732:340::-;18934:2;18916:21;;;18973:2;18953:18;;;18946:30;-1:-1:-1;;;19007:2:1;18992:18;;18985:46;19063:2;19048:18;;18732:340::o;19429:128::-;19469:3;19500:1;19496:6;19493:1;19490:13;19487:39;;;19506:18;;:::i;:::-;-1:-1:-1;19542:9:1;;19429:128::o;20268:125::-;20308:4;20336:1;20333;20330:8;20327:34;;;20341:18;;:::i;:::-;-1:-1:-1;20378:9:1;;20268:125::o;21592:175::-;21629:3;21673:4;21666:5;21662:16;21702:4;21693:7;21690:17;21687:43;;21710:18;;:::i;:::-;21759:1;21746:15;;21592:175;-1:-1:-1;;21592:175:1:o;24171:414::-;24373:2;24355:21;;;24412:2;24392:18;;;24385:30;24451:34;24446:2;24431:18;;24424:62;-1:-1:-1;;;24517:2:1;24502:18;;24495:48;24575:3;24560:19;;24171:414::o;25008:664::-;25235:3;25273:6;25267:13;25289:53;25335:6;25330:3;25323:4;25315:6;25311:17;25289:53;:::i;:::-;25405:13;;25364:16;;;;25427:57;25405:13;25364:16;25461:4;25449:17;;25427:57;:::i;:::-;25551:13;;25506:20;;;25573:57;25551:13;25506:20;25607:4;25595:17;;25573:57;:::i;:::-;25646:20;;25008:664;-1:-1:-1;;;;;25008:664:1:o;25677:112::-;25709:1;25735;25725:35;;25740:18;;:::i;:::-;-1:-1:-1;25774:9:1;;25677:112::o;26196:489::-;-1:-1:-1;;;;;26465:15:1;;;26447:34;;26517:15;;26512:2;26497:18;;26490:43;26564:2;26549:18;;26542:34;;;26612:3;26607:2;26592:18;;26585:31;;;26390:4;;26633:46;;26659:19;;26651:6;26633:46;:::i;:::-;26625:54;26196:489;-1:-1:-1;;;;;;26196:489:1:o;26690:249::-;26759:6;26812:2;26800:9;26791:7;26787:23;26783:32;26780:52;;;26828:1;26825;26818:12;26780:52;26860:9;26854:16;26879:30;26903:5;26879:30;:::i;27196:127::-;27257:10;27252:3;27248:20;27245:1;27238:31;27288:4;27285:1;27278:15;27312:4;27309:1;27302:15
Swarm Source
ipfs://6c73651311fea7cdedfa53cca7d4ae40f34e5ae99207315464640ad636599cde
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.