Token COTC Evolved FTM
Overview ERC-721
Total Supply:
127 CEVF
Holders:
43 addresses
Transfers:
-
Contract:
[ Download CSV Export ]
[ Download CSV Export ]
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
COTCEvolvedFTM
Compiler Version
v0.8.13+commit.abaa5c0e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-12-28 */ // File: contracts/ClampedRandomizer.sol //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 COTCEvolvedFTM 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 = 0x7cbfC3642263D04D5ea850001C5205A611CEfb00; string public baseURI; string public baseExtension = ".json"; // VARIABLES uint256 public maxSupply = 200; uint256 public maxPerTx = 1; uint256 public maxPerPerson = 10; uint256 public price = 45 ether; uint256 public royalty = 800; // 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("COTC Evolved FTM", "CEVF") 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
6000600c55600e80546001600160a01b031916737cbfc3642263d04d5ea850001c5205a611cefb0017905560e0604052600560a081905264173539b7b760d91b60c090815262000053916010919062000409565b5060c860115560016012819055600a601355680270801d946c9400006014556103206015556018805460ff191690911790553480156200009257600080fd5b506040516200423738038062004237833981016040819052620000b59162000591565b601154604080518082018252601081526f434f54432045766f6c7665642046544d60801b60208083019182528351808501909452600484526321a2ab2360e11b9084015281519192916200010c9160009162000409565b5080516200012290600190602084019062000409565b5050600b80546001600160a81b0319163361010081029190911790915560405190915081906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506080528051825114620001ca5760405162461bcd60e51b815260206004820152601360248201527f4572726f723a20696e76616c696420646174610000000000000000000000000060448201526064015b60405180910390fd5b6000805b83518160ff16101562000307576017848260ff1681518110620001f557620001f56200066f565b60209081029190910181015182546001810184556000938452919092200180546001600160a01b0319166001600160a01b039092169190911790556040805180820190915283518190859060ff85169081106200025657620002566200066f565b60200260200101518152602001600081525060166000868460ff16815181106200028457620002846200066f565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000206000820151816000015560208201518160010155905050828160ff1681518110620002db57620002db6200066f565b602002602001015182620002f091906200069b565b915080620002fe81620006b6565b915050620001ce565b5080612710146200035b5760405162461bcd60e51b815260206004820152601860248201527f4572726f723a20696e76616c696420746f74616c2066656500000000000000006044820152606401620001c1565b620003656200036e565b50505062000714565b600b5460ff1615620003b65760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620001c1565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620003ec3390565b6040516001600160a01b03909116815260200160405180910390a1565b8280546200041790620006d8565b90600052602060002090601f0160209004810192826200043b576000855562000486565b82601f106200045657805160ff191683800117855562000486565b8280016001018555821562000486579182015b828111156200048657825182559160200191906001019062000469565b506200049492915062000498565b5090565b5b8082111562000494576000815560010162000499565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715620004f057620004f0620004af565b604052919050565b60006001600160401b03821115620005145762000514620004af565b5060051b60200190565b600082601f8301126200053057600080fd5b81516020620005496200054383620004f8565b620004c5565b82815260059290921b840181019181810190868411156200056957600080fd5b8286015b848110156200058657805183529183019183016200056d565b509695505050505050565b60008060408385031215620005a557600080fd5b82516001600160401b0380821115620005bd57600080fd5b818501915085601f830112620005d257600080fd5b81516020620005e56200054383620004f8565b82815260059290921b840181019181810190898411156200060557600080fd5b948201945b838610156200063c5785516001600160a01b03811681146200062c5760008081fd5b825294820194908201906200060a565b918801519196509093505050808211156200065657600080fd5b5062000665858286016200051e565b9150509250929050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60008219821115620006b157620006b162000685565b500190565b600060ff821660ff8103620006cf57620006cf62000685565b60010192915050565b600181811c90821680620006ed57607f821691505b6020821081036200070e57634e487b7160e01b600052602260045260246000fd5b50919050565b608051613b076200073060003960006128190152613b076000f3fe6080604052600436106103195760003560e01c806370a08231116101ab578063ad2f852a116100f7578063d5abeb0111610095578063f147efeb1161006f578063f147efeb1461092b578063f2fde38b14610974578063f968adbe14610994578063fa0fca84146109aa57600080fd5b8063d5abeb01146108b7578063db2e21bc146108cd578063e985e9c5146108e257600080fd5b8063c6682862116100d1578063c668286214610835578063c6f6f2161461084a578063c87b56dd1461086a578063d2f8dd451461088a57600080fd5b8063ad2f852a146107e0578063b88d4fde14610800578063b9bfa0bc1461082057600080fd5b80639186b425116101645780639bdedea51161013e5780639bdedea514610777578063a035b1fe14610797578063a0712d68146107ad578063a22cb465146107c057600080fd5b80639186b4251461072857806391b7f5ed1461074257806395d89b411461076257600080fd5b806370a082311461067a578063715018a61461069a578063768d7138146106af5780637e0586f1146106c5578063862440e2146106e55780638da5cb5b1461070557600080fd5b8063397457911161026a57806349df728c116102235780635c975abb116101fd5780635c975abb146106185780636352211e1461063057806367dded4d146106505780636c0360eb1461066557600080fd5b806349df728c146105b85780634f6ccce7146105d857806355f804b3146105f857600080fd5b806339745791146105035780633ccfd60b1461052357806340d097c31461053857806342842e0e1461055857806342966c6814610578578063483efda21461059857600080fd5b806318160ddd116102d757806329ee566c116102b157806329ee566c1461046e5780632a55205a146104845780632f745c59146104c357806336e79a5a146104e357600080fd5b806318160ddd1461040f57806323b872dd1461042e57806329413b121461044e57600080fd5b8062923f9e1461031e57806301ffc9a71461035357806306d254da1461037357806306fdde0314610395578063081812fc146103b7578063095ea7b3146103ef575b600080fd5b34801561032a57600080fd5b5061033e610339366004613201565b6109d7565b60405190151581526020015b60405180910390f35b34801561035f57600080fd5b5061033e61036e366004613230565b6109e8565b34801561037f57600080fd5b5061039361038e366004613269565b610a0d565b005b3480156103a157600080fd5b506103aa610a68565b60405161034a91906132dc565b3480156103c357600080fd5b506103d76103d2366004613201565b610afa565b6040516001600160a01b03909116815260200161034a565b3480156103fb57600080fd5b5061039361040a3660046132ef565b610b82565b34801561041b57600080fd5b506008545b60405190815260200161034a565b34801561043a57600080fd5b50610393610449366004613319565b610c97565b34801561045a57600080fd5b50610393610469366004613432565b610cc9565b34801561047a57600080fd5b5061042060155481565b34801561049057600080fd5b506104a461049f366004613477565b610d3a565b604080516001600160a01b03909316835260208301919091520161034a565b3480156104cf57600080fd5b506104206104de3660046132ef565b610d74565b3480156104ef57600080fd5b506103936104fe366004613499565b610e0a565b34801561050f57600080fd5b5061039361051e3660046134bd565b610eaf565b34801561052f57600080fd5b50610393610f8e565b34801561054457600080fd5b50610393610553366004613269565b6110cc565b34801561056457600080fd5b50610393610573366004613319565b611108565b34801561058457600080fd5b50610393610593366004613201565b611123565b3480156105a457600080fd5b506103936105b3366004613201565b61119a565b3480156105c457600080fd5b506103936105d3366004613269565b6111cf565b3480156105e457600080fd5b506104206105f3366004613201565b611350565b34801561060457600080fd5b5061039361061336600461356a565b6113e3565b34801561062457600080fd5b50600b5460ff1661033e565b34801561063c57600080fd5b506103d761064b366004613201565b611426565b34801561065c57600080fd5b5061039361149d565b34801561067157600080fd5b506103aa6114e9565b34801561068657600080fd5b50610420610695366004613269565b611577565b3480156106a657600080fd5b506103936115fe565b3480156106bb57600080fd5b5061042060135481565b3480156106d157600080fd5b506103936106e0366004613432565b61167e565b3480156106f157600080fd5b5061039361070036600461359f565b6117ca565b34801561071157600080fd5b50600b5461010090046001600160a01b03166103d7565b34801561073457600080fd5b5060185461033e9060ff1681565b34801561074e57600080fd5b5061039361075d366004613201565b611804565b34801561076e57600080fd5b506103aa611839565b34801561078357600080fd5b506103936107923660046135e6565b611848565b3480156107a357600080fd5b5061042060145481565b6103936107bb366004613201565b6119b9565b3480156107cc57600080fd5b506103936107db366004613698565b611c68565b3480156107ec57600080fd5b50600e546103d7906001600160a01b031681565b34801561080c57600080fd5b5061039361081b3660046136cf565b611d2c565b34801561082c57600080fd5b50610393611d5e565b34801561084157600080fd5b506103aa611da2565b34801561085657600080fd5b50610393610865366004613201565b611daf565b34801561087657600080fd5b506103aa610885366004613201565b611de4565b34801561089657600080fd5b506108aa6108a5366004613269565b611def565b60405161034a919061374b565b3480156108c357600080fd5b5061042060115481565b3480156108d957600080fd5b50610393611eb1565b3480156108ee57600080fd5b5061033e6108fd36600461378f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561093757600080fd5b5061095f610946366004613269565b6016602052600090815260409020805460019091015482565b6040805192835260208301919091520161034a565b34801561098057600080fd5b5061039361098f366004613269565b611fe4565b3480156109a057600080fd5b5061042060125481565b3480156109b657600080fd5b506104206109c5366004613269565b60196020526000908152604090205481565b60006109e2826120e0565b92915050565b60006001600160e01b0319821663152a902d60e11b14806109e257506109e2826120fd565b600b546001600160a01b03610100909104163314610a465760405162461bcd60e51b8152600401610a3d906137c2565b60405180910390fd5b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b606060008054610a77906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610aa3906137f7565b8015610af05780601f10610ac557610100808354040283529160200191610af0565b820191906000526020600020905b815481529060010190602001808311610ad357829003601f168201915b5050505050905090565b6000610b05826120e0565b610b665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3d565b506000908152600460205260409020546001600160a01b031690565b6000610b8d82611426565b9050806001600160a01b0316836001600160a01b031603610bfa5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610a3d565b336001600160a01b0382161480610c165750610c1681336108fd565b610c885760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610a3d565b610c928383612122565b505050565b610ca2335b82612190565b610cbe5760405162461bcd60e51b8152600401610a3d9061382b565b610c9283838361227a565b600b546001600160a01b03610100909104163314610cf95760405162461bcd60e51b8152600401610a3d906137c2565b60005b8251811015610c9257610d2882848381518110610d1b57610d1b61387c565b6020026020010151612425565b80610d32816138a8565b915050610cfc565b600e5460155460009182916001600160a01b039091169061271090610d5f90866138c1565b610d6991906138f6565b915091509250929050565b6000610d7f83611577565b8210610de15760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610a3d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b03610100909104163314610e3a5760405162461bcd60e51b8152600401610a3d906137c2565b6102ee8161ffff161115610ea65760405162461bcd60e51b815260206004820152602d60248201527f526f79616c7479206d7573742062652067726561746572207468616e206f722060448201526c657175616c20746f20372c352560981b6064820152608401610a3d565b61ffff16601555565b600b546001600160a01b03610100909104163314610edf5760405162461bcd60e51b8152600401610a3d906137c2565b6000815111610f275760405162461bcd60e51b81526020600482015260146024820152734572726f723a206c69737420697320656d70747960601b6044820152606401610a3d565b60005b8151811015610f8a57600060196000848481518110610f4b57610f4b61387c565b60200260200101516001600160a01b03166001600160a01b03168152602001908152602001600020819055508080610f82906138a8565b915050610f2a565b5050565b33600090815260166020526040902054610ff85760405162461bcd60e51b815260206004820152602560248201527f446576204f6e6c793a2063616c6c6572206973206e6f742074686520646576656044820152643637b832b960d91b6064820152608401610a3d565b336000908152601660205260409020600101548061104c5760405162461bcd60e51b815260206004820152601160248201527008ae4e4dee47440dcde40cccacae640745607b1b6044820152606401610a3d565b604051339082156108fc029083906000818181858888f19350505050158015611079573d6000803e3d6000fd5b503360008181526016602052604080822060010191909155517f9bba815921f12cb7b1408e14b5ade745234397d39623ae5e7c82d693cb45815f906110c19084815260200190565b60405180910390a250565b600b546001600160a01b036101009091041633146110fc5760405162461bcd60e51b8152600401610a3d906137c2565b6111058161244b565b50565b610c9283838360405180602001604052806000815250611d2c565b61112c33610c9c565b6111915760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610a3d565b6111058161246c565b600b546001600160a01b036101009091041633146111ca5760405162461bcd60e51b8152600401610a3d906137c2565b601355565b600b546001600160a01b036101009091041633146111ff5760405162461bcd60e51b8152600401610a3d906137c2565b6040516370a0823160e01b815230600482015281906000906001600160a01b038316906370a0823190602401602060405180830381865afa158015611248573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061126c919061390a565b9050816001600160a01b031663a9059cbb611295600b546001600160a01b036101009091041690565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602481018490526044016020604051808303816000875af11580156112e2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113069190613923565b50604080516001600160a01b03851681526020810183905233917f5aa586896a67fb05c3b86276f66eecee7da00719d0e7299c403596fa2ec58ca4910160405180910390a2505050565b600061135b60085490565b82106113be5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610a3d565b600882815481106113d1576113d161387c565b90600052602060002001549050919050565b600b546001600160a01b036101009091041633146114135760405162461bcd60e51b8152600401610a3d906137c2565b8051610f8a90600f906020840190613132565b6000818152600260205260408120546001600160a01b0316806109e25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610a3d565b600b546001600160a01b036101009091041633146114cd5760405162461bcd60e51b8152600401610a3d906137c2565b600b5460ff166114e1576114df612475565b565b6114df6124ea565b600f80546114f6906137f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611522906137f7565b801561156f5780601f106115445761010080835404028352916020019161156f565b820191906000526020600020905b81548152906001019060200180831161155257829003601f168201915b505050505081565b60006001600160a01b0382166115e25760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610a3d565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b0361010090910416331461162e5760405162461bcd60e51b8152600401610a3d906137c2565b600b5460405160009161010090046001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600b8054610100600160a81b0319169055565b600b546001600160a01b036101009091041633146116ae5760405162461bcd60e51b8152600401610a3d906137c2565b60008251116116f65760405162461bcd60e51b81526020600482015260146024820152734572726f723a206c69737420697320656d70747960601b6044820152606401610a3d565b60005b8251811015610c925760006001600160a01b031683828151811061171f5761171f61387c565b60200260200101516001600160a01b0316036117745760405162461bcd60e51b815260206004820152601460248201527320b2323932b9b99031b0b73737ba10313290181760611b6044820152606401610a3d565b816019600085848151811061178b5761178b61387c565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806117c2906138a8565b9150506116f9565b600b546001600160a01b036101009091041633146117fa5760405162461bcd60e51b8152600401610a3d906137c2565b610f8a8282612564565b600b546001600160a01b036101009091041633146118345760405162461bcd60e51b8152600401610a3d906137c2565b601455565b606060018054610a77906137f7565b600b546001600160a01b036101009091041633146118785760405162461bcd60e51b8152600401610a3d906137c2565b8160005b82518110156119b357816001600160a01b03166342842e0e306118ad600b546001600160a01b036101009091041690565b8685815181106118bf576118bf61387c565b60209081029190910101516040516001600160e01b031960e086901b1681526001600160a01b0393841660048201529290911660248301526044820152606401600060405180830381600087803b15801561191957600080fd5b505af115801561192d573d6000803e3d6000fd5b50505050336001600160a01b03167fb8dbf4ce06446b88ef02ffd28a948c2637ac80fb0bd4d3a31c70878c1046eb7f8585848151811061196f5761196f61387c565b60200260200101516040516119999291906001600160a01b03929092168252602082015260400190565b60405180910390a2806119ab816138a8565b91505061187c565b50505050565b600b5460ff16156119dc5760405162461bcd60e51b8152600401610a3d90613940565b60006119e760085490565b90506000821180156119fb57506012548211155b611a475760405162461bcd60e51b815260206004820152601760248201527f4572726f723a206d617820706172207478206c696d69740000000000000000006044820152606401610a3d565b601354611a5333611577565b611a5e90600161396a565b1115611aac5760405162461bcd60e51b815260206004820152601c60248201527f4572726f723a206d6178207065722061646472657373206c696d6974000000006044820152606401610a3d565b81601454611aba91906138c1565b3414611aff5760405162461bcd60e51b81526020600482015260146024820152734572726f723a20696e76616c696420707269636560601b6044820152606401610a3d565b6011546001611b0e848461396a565b611b189190613982565b10611b775760405162461bcd60e51b815260206004820152602960248201527f4572726f723a2063616e6e6f74206d696e74206d6f7265207468616e20746f74604482015268616c20737570706c7960b81b6064820152608401610a3d565b60185460ff1615611c075733600090815260196020526040902054821115611c075760405162461bcd60e51b815260206004820152603d60248201527f4572726f723a20796f7520617265206e6f742077686974656c6973746564206f60448201527f7220616d6f756e7420697320686967686572207468616e206c696d69740000006064820152608401610a3d565b60005b82811015611c5e57611c1b3361244b565b60185460ff1615611c4c57336000908152601960205260408120805460019290611c46908490613982565b90915550505b80611c56816138a8565b915050611c0a565b50610f8a346125ef565b336001600160a01b03831603611cc05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610a3d565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611d363383612190565b611d525760405162461bcd60e51b8152600401610a3d9061382b565b6119b3848484846126a2565b600b546001600160a01b03610100909104163314611d8e5760405162461bcd60e51b8152600401610a3d906137c2565b6018805460ff19811660ff90911615179055565b601080546114f6906137f7565b600b546001600160a01b03610100909104163314611ddf5760405162461bcd60e51b8152600401610a3d906137c2565b601255565b60606109e2826126d5565b60606000611dfc83611577565b905080600003611e205760408051600080825260208201909252905b509392505050565b60008167ffffffffffffffff811115611e3b57611e3b613355565b604051908082528060200260200182016040528015611e64578160200160208202803683370190505b50905060005b82811015611e1857611e7c8582610d74565b828281518110611e8e57611e8e61387c565b602090810291909101015280611ea3816138a8565b915050611e6a565b50919050565b600b546001600160a01b03610100909104163314611ee15760405162461bcd60e51b8152600401610a3d906137c2565b4780611f235760405162461bcd60e51b815260206004820152601160248201527008ae4e4dee47440dcde40cccacae640745607b1b6044820152606401610a3d565b604051339082156108fc029083906000818181858888f19350505050158015611f50573d6000803e3d6000fd5b5060005b60175460ff82161015611fb157600060178260ff1681548110611f7957611f7961387c565b60009182526020808320909101546001600160a01b031682526016905260408120600101555080611fa981613999565b915050611f54565b5060405181815233907f9bba815921f12cb7b1408e14b5ade745234397d39623ae5e7c82d693cb45815f906020016110c1565b600b546001600160a01b036101009091041633146120145760405162461bcd60e51b8152600401610a3d906137c2565b6001600160a01b0381166120795760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a3d565b600b546040516001600160a01b0380841692610100900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600b80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6000908152600260205260409020546001600160a01b0316151590565b60006001600160e01b0319821663780e9d6360e01b14806109e257506109e282612793565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061215782611426565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600061219b826120e0565b6121fc5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610a3d565b600061220783611426565b9050806001600160a01b0316846001600160a01b031614806122425750836001600160a01b031661223784610afa565b6001600160a01b0316145b8061227257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661228d82611426565b6001600160a01b0316146122f55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610a3d565b6001600160a01b0382166123575760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610a3d565b6123628383836127e3565b61236d600082612122565b6001600160a01b0383166000908152600360205260408120805460019290612396908490613982565b90915550506001600160a01b03821660009081526003602052604081208054600192906123c490849061396a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60005b82811015610c92576124398261244b565b80612443816138a8565b915050612428565b6000612455612811565b61246090600161396a565b9050610f8a8282612919565b61110581612933565b600b5460ff16156124985760405162461bcd60e51b8152600401610a3d90613940565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124cd3390565b6040516001600160a01b03909116815260200160405180910390a1565b600b5460ff166125335760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610a3d565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa336124cd565b61256d826120e0565b6125d05760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610a3d565b6000828152600a602090815260409091208251610c9292840190613132565b60005b60175460ff82161015610f8a57600060178260ff16815481106126175761261761387c565b60009182526020808320909101546001600160a01b0316808352601690915260408220549092509061265561271061264f8785612973565b906129fc565b6001600160a01b03841660009081526016602052604081206001018054929350839290919061268590849061396a565b92505081905550505050808061269a90613999565b9150506125f2565b6126ad84848461227a565b6126b984848484612a3e565b6119b35760405162461bcd60e51b8152600401610a3d906139b8565b60606126e0826120e0565b6127465760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610a3d565b6000612750612b3f565b9050600061275c612b4e565b90508161276885612b5d565b8260405160200161277b93929190613a0a565b60405160208183030381529060405292505050919050565b60006001600160e01b031982166380ac58cd60e01b14806127c457506001600160e01b03198216635b5e139f60e01b145b806109e257506301ffc9a760e01b6001600160e01b03198316146109e2565b600b5460ff16156128065760405162461bcd60e51b8152600401610a3d90613940565b610c92838383612c5e565b600080600c547f00000000000000000000000000000000000000000000000000000000000000006128429190613982565b9050600080600083612852612d16565b61285c9190613a4d565b9050600d600061286d600187613982565b8152602001908152602001600020546000036128955761288e600185613982565b92506128b6565b600d60006128a4600187613982565b81526020019081526020016000205492505b6000818152600d602052604081205490036128e4576000818152600d602052604090208390559050806128fb565b6000818152600d6020526040902080549084905591505b600c805490600061290b836138a8565b909155509195945050505050565b610f8a828260405180602001604052806000815250612d52565b61293c81612d85565b6000818152600a602052604090208054612955906137f7565b159050611105576000818152600a60205260408120611105916131b6565b600082600003612985575060006109e2565b600061299183856138c1565b90508261299e85836138f6565b146129f55760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610a3d565b9392505050565b60006129f583836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612e2c565b60006001600160a01b0384163b15612b3457604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612a82903390899088908890600401613a61565b6020604051808303816000875af1925050508015612abd575060408051601f3d908101601f19168201909252612aba91810190613a9e565b60015b612b1a573d808015612aeb576040519150601f19603f3d011682016040523d82523d6000602084013e612af0565b606091505b508051600003612b125760405162461bcd60e51b8152600401610a3d906139b8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612272565b506001949350505050565b6060600f8054610a77906137f7565b606060108054610a77906137f7565b606081600003612b845750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612bae5780612b98816138a8565b9150612ba79050600a836138f6565b9150612b88565b60008167ffffffffffffffff811115612bc957612bc9613355565b6040519080825280601f01601f191660200182016040528015612bf3576020820181803683370190505b5090505b841561227257612c08600183613982565b9150612c15600a86613a4d565b612c2090603061396a565b60f81b818381518110612c3557612c3561387c565b60200101906001600160f81b031916908160001a905350612c57600a866138f6565b9450612bf7565b6001600160a01b038316612cb957612cb481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612cdc565b816001600160a01b0316836001600160a01b031614612cdc57612cdc8382612e63565b6001600160a01b038216612cf357610c9281612f00565b826001600160a01b0316826001600160a01b031614610c9257610c928282612faf565b60004442604051602001612d34929190918252602082015260400190565b6040516020818303038152906040528051906020012060001c905090565b612d5c8383612ff3565b612d696000848484612a3e565b610c925760405162461bcd60e51b8152600401610a3d906139b8565b6000612d9082611426565b9050612d9e816000846127e3565b612da9600083612122565b6001600160a01b0381166000908152600360205260408120805460019290612dd2908490613982565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b60008183612e4d5760405162461bcd60e51b8152600401610a3d91906132dc565b506000612e5a84866138f6565b95945050505050565b60006001612e7084611577565b612e7a9190613982565b600083815260076020526040902054909150808214612ecd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612f1290600190613982565b60008381526009602052604081205460088054939450909284908110612f3a57612f3a61387c565b906000526020600020015490508060088381548110612f5b57612f5b61387c565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612f9357612f93613abb565b6001900381819060005260206000200160009055905550505050565b6000612fba83611577565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166130495760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610a3d565b613052816120e0565b1561309f5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610a3d565b6130ab600083836127e3565b6001600160a01b03821660009081526003602052604081208054600192906130d490849061396a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461313e906137f7565b90600052602060002090601f01602090048101928261316057600085556131a6565b82601f1061317957805160ff19168380011785556131a6565b828001600101855582156131a6579182015b828111156131a657825182559160200191906001019061318b565b506131b29291506131ec565b5090565b5080546131c2906137f7565b6000825580601f106131d2575050565b601f01602090049060005260206000209081019061110591905b5b808211156131b257600081556001016131ed565b60006020828403121561321357600080fd5b5035919050565b6001600160e01b03198116811461110557600080fd5b60006020828403121561324257600080fd5b81356129f58161321a565b80356001600160a01b038116811461326457600080fd5b919050565b60006020828403121561327b57600080fd5b6129f58261324d565b60005b8381101561329f578181015183820152602001613287565b838111156119b35750506000910152565b600081518084526132c8816020860160208601613284565b601f01601f19169290920160200192915050565b6020815260006129f560208301846132b0565b6000806040838503121561330257600080fd5b61330b8361324d565b946020939093013593505050565b60008060006060848603121561332e57600080fd5b6133378461324d565b92506133456020850161324d565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561339457613394613355565b604052919050565b600067ffffffffffffffff8211156133b6576133b6613355565b5060051b60200190565b600082601f8301126133d157600080fd5b813560206133e66133e18361339c565b61336b565b82815260059290921b8401810191818101908684111561340557600080fd5b8286015b848110156134275761341a8161324d565b8352918301918301613409565b509695505050505050565b6000806040838503121561344557600080fd5b823567ffffffffffffffff81111561345c57600080fd5b613468858286016133c0565b95602094909401359450505050565b6000806040838503121561348a57600080fd5b50508035926020909101359150565b6000602082840312156134ab57600080fd5b813561ffff811681146129f557600080fd5b6000602082840312156134cf57600080fd5b813567ffffffffffffffff8111156134e657600080fd5b612272848285016133c0565b600067ffffffffffffffff83111561350c5761350c613355565b61351f601f8401601f191660200161336b565b905082815283838301111561353357600080fd5b828260208301376000602084830101529392505050565b600082601f83011261355b57600080fd5b6129f5838335602085016134f2565b60006020828403121561357c57600080fd5b813567ffffffffffffffff81111561359357600080fd5b6122728482850161354a565b600080604083850312156135b257600080fd5b82359150602083013567ffffffffffffffff8111156135d057600080fd5b6135dc8582860161354a565b9150509250929050565b600080604083850312156135f957600080fd5b6136028361324d565b915060208084013567ffffffffffffffff81111561361f57600080fd5b8401601f8101861361363057600080fd5b803561363e6133e18261339c565b81815260059190911b8201830190838101908883111561365d57600080fd5b928401925b8284101561367b57833582529284019290840190613662565b80955050505050509250929050565b801515811461110557600080fd5b600080604083850312156136ab57600080fd5b6136b48361324d565b915060208301356136c48161368a565b809150509250929050565b600080600080608085870312156136e557600080fd5b6136ee8561324d565b93506136fc6020860161324d565b925060408501359150606085013567ffffffffffffffff81111561371f57600080fd5b8501601f8101871361373057600080fd5b61373f878235602084016134f2565b91505092959194509250565b6020808252825182820181905260009190848201906040850190845b8181101561378357835183529284019291840191600101613767565b50909695505050505050565b600080604083850312156137a257600080fd5b6137ab8361324d565b91506137b96020840161324d565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061380b57607f821691505b602082108103611eab57634e487b7160e01b600052602260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016138ba576138ba613892565b5060010190565b60008160001904831182151516156138db576138db613892565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613905576139056138e0565b500490565b60006020828403121561391c57600080fd5b5051919050565b60006020828403121561393557600080fd5b81516129f58161368a565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b6000821982111561397d5761397d613892565b500190565b60008282101561399457613994613892565b500390565b600060ff821660ff81036139af576139af613892565b60010192915050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008451613a1c818460208901613284565b845190830190613a30818360208901613284565b8451910190613a43818360208801613284565b0195945050505050565b600082613a5c57613a5c6138e0565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613a94908301846132b0565b9695505050505050565b600060208284031215613ab057600080fd5b81516129f58161321a565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220d52a00dcc931d254c995dabc0e30a437c4f6cc45b69f924dacce040b210af93b64736f6c634300080d0033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000020000000000000000000000007cbfc3642263d04d5ea850001c5205a611cefb00000000000000000000000000f60b7751b3227b4a34477ab144358d44f21d6fc0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000001388
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000020000000000000000000000007cbfc3642263d04d5ea850001c5205a611cefb00000000000000000000000000f60b7751b3227b4a34477ab144358d44f21d6fc0000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000013880000000000000000000000000000000000000000000000000000000000001388
-----Decoded View---------------
Arg [0] : _devList (address[]): 0x7cbfc3642263d04d5ea850001c5205a611cefb00,0xf60b7751b3227b4a34477ab144358d44f21d6fc0
Arg [1] : _fees (uint256[]): 5000,5000
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [3] : 0000000000000000000000007cbfc3642263d04d5ea850001c5205a611cefb00
Arg [4] : 000000000000000000000000f60b7751b3227b4a34477ab144358d44f21d6fc0
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [6] : 0000000000000000000000000000000000000000000000000000000000001388
Arg [7] : 0000000000000000000000000000000000000000000000000000000000001388
Deployed ByteCode Sourcemap
56096:9333:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;60253:103;;;;;;;;;;-1:-1:-1;60253:103:0;;;;;:::i;:::-;;:::i;:::-;;;364:14:1;;357:22;339:41;;327:2;312:18;60253:103:0;;;;;;;;62728:292;;;;;;;;;;-1:-1:-1;62728:292:0;;;;;:::i;:::-;;:::i;62326:122::-;;;;;;;;;;-1:-1:-1;62326:122:0;;;;;:::i;:::-;;:::i;:::-;;24310:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26000:308::-;;;;;;;;;;-1:-1:-1;26000:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2061:32:1;;;2043:51;;2031:2;2016:18;26000:308:0;1897:203:1;25523:411:0;;;;;;;;;;-1:-1:-1;25523:411:0;;;;;:::i;:::-;;:::i;39084:113::-;;;;;;;;;;-1:-1:-1;39172:10:0;:17;39084:113;;;2510:25:1;;;2498:2;2483:18;39084:113:0;2364:177:1;27059:376:0;;;;;;;;;;-1:-1:-1;27059:376:0;;;;;:::i;:::-;;:::i;64608:205::-;;;;;;;;;;-1:-1:-1;64608:205:0;;;;;:::i;:::-;;:::i;57207:28::-;;;;;;;;;;;;;;;;60364:238;;;;;;;;;;-1:-1:-1;60364:238:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;5018:32:1;;;5000:51;;5082:2;5067:18;;5060:34;;;;4973:18;60364:238:0;4826:274:1;38665:343:0;;;;;;;;;;-1:-1:-1;38665:343:0;;;;;:::i;:::-;;:::i;62056:258::-;;;;;;;;;;-1:-1:-1;62056:258:0;;;;;:::i;:::-;;:::i;61014:242::-;;;;;;;;;;-1:-1:-1;61014:242:0;;;;;:::i;:::-;;:::i;63453:285::-;;;;;;;;;;;;;:::i;62628:82::-;;;;;;;;;;-1:-1:-1;62628:82:0;;;;;:::i;:::-;;:::i;27506:185::-;;;;;;;;;;-1:-1:-1;27506:185:0;;;;;:::i;:::-;;:::i;51536:282::-;;;;;;;;;;-1:-1:-1;51536:282:0;;;;;:::i;:::-;;:::i;61486:106::-;;;;;;;;;;-1:-1:-1;61486:106:0;;;;;:::i;:::-;;:::i;64277:319::-;;;;;;;;;;-1:-1:-1;64277:319:0;;;;;:::i;:::-;;:::i;39274:320::-;;;;;;;;;;-1:-1:-1;39274:320:0;;;;;:::i;:::-;;:::i;61706:104::-;;;;;;;;;;-1:-1:-1;61706:104:0;;;;;:::i;:::-;;:::i;47533:86::-;;;;;;;;;;-1:-1:-1;47604:7:0;;;;47533:86;;23917:326;;;;;;;;;;-1:-1:-1;23917:326:0;;;;;:::i;:::-;;:::i;61377:101::-;;;;;;;;;;;;;:::i;56960:21::-;;;;;;;;;;;;;:::i;23560:295::-;;;;;;;;;;-1:-1:-1;23560:295:0;;;;;:::i;:::-;;:::i;50490:148::-;;;;;;;;;;;;;:::i;57126:32::-;;;;;;;;;;;;;;;;60636:370;;;;;;;;;;-1:-1:-1;60636:370:0;;;;;:::i;:::-;;:::i;61926:116::-;;;;;;;;;;-1:-1:-1;61926:116:0;;;;;:::i;:::-;;:::i;49839:87::-;;;;;;;;;;-1:-1:-1;49912:6:0;;;;;-1:-1:-1;;;;;49912:6:0;49839:87;;57426:34;;;;;;;;;;-1:-1:-1;57426:34:0;;;;;;;;61818:90;;;;;;;;;;-1:-1:-1;61818:90:0;;;;;:::i;:::-;;:::i;24479:104::-;;;;;;;;;;;;;:::i;65063:363::-;;;;;;;;;;-1:-1:-1;65063:363:0;;;;;:::i;:::-;;:::i;57165:31::-;;;;;;;;;;;;;;;;58671:828;;;;;;:::i;:::-;;:::i;26380:327::-;;;;;;;;;;-1:-1:-1;26380:327:0;;;;;:::i;:::-;;:::i;56871:75::-;;;;;;;;;;-1:-1:-1;56871:75:0;;;;-1:-1:-1;;;;;56871:75:0;;;27762:365;;;;;;;;;;-1:-1:-1;27762:365:0;;;;;:::i;:::-;;:::i;61264:105::-;;;;;;;;;;;;;:::i;56988:37::-;;;;;;;;;;;;;:::i;61600:98::-;;;;;;;;;;-1:-1:-1;61600:98:0;;;;;:::i;:::-;;:::i;59515:196::-;;;;;;;;;;-1:-1:-1;59515:196:0;;;;;:::i;:::-;;:::i;59719:526::-;;;;;;;;;;-1:-1:-1;59719:526:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;57055:30::-;;;;;;;;;;;;;;;;63818:403;;;;;;;;;;;;;:::i;26778:214::-;;;;;;;;;;-1:-1:-1;26778:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;26949:25:0;;;26920:4;26949:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26778:214;57344:41;;;;;;;;;;-1:-1:-1;57344:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;10257:25:1;;;10313:2;10298:18;;10291:34;;;;10230:18;57344:41:0;10083:248:1;50793:281:0;;;;;;;;;;-1:-1:-1;50793:281:0;;;;;:::i;:::-;;:::i;57092:27::-;;;;;;;;;;;;;;;;57467:46;;;;;;;;;;-1:-1:-1;57467:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;60253:103;60310:4;60335:12;60343:3;60335:7;:12::i;:::-;60327:21;60253:103;-1:-1:-1;;60253:103:0:o;62728:292::-;62876:4;-1:-1:-1;;;;;;62918:41:0;;-1:-1:-1;;;62918:41:0;;:94;;;62976:36;63000:11;62976:23;:36::i;62326:122::-;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;;;;;;;;;62408:14:::1;:32:::0;;-1:-1:-1;;;;;;62408:32:0::1;-1:-1:-1::0;;;;;62408:32:0;;;::::1;::::0;;;::::1;::::0;;62326:122::o;24310:100::-;24364:13;24397:5;24390:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24310:100;:::o;26000:308::-;26121:7;26168:16;26176:7;26168;:16::i;:::-;26146:110;;;;-1:-1:-1;;;26146:110:0;;11284:2:1;26146: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;;26146:110:0;11082:408:1;26146:110:0;-1:-1:-1;26276:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26276:24:0;;26000:308::o;25523:411::-;25604:13;25620:23;25635:7;25620:14;:23::i;:::-;25604:39;;25668:5;-1:-1:-1;;;;;25662:11:0;:2;-1:-1:-1;;;;;25662:11:0;;25654:57;;;;-1:-1:-1;;;25654:57:0;;11697:2:1;25654: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;;25654:57:0;11495:397:1;25654:57:0;18445:10;-1:-1:-1;;;;;25746:21:0;;;;:62;;-1:-1:-1;25771:37:0;25788:5;18445:10;26778:214;:::i;25771:37::-;25724:168;;;;-1:-1:-1;;;25724:168:0;;12099:2:1;25724: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;;25724:168:0;11897:420:1;25724:168:0;25905:21;25914:2;25918:7;25905:8;:21::i;:::-;25593:341;25523:411;;:::o;27059:376::-;27268:41;18445:10;27287:12;27301:7;27268:18;:41::i;:::-;27246:140;;;;-1:-1:-1;;;27246:140:0;;;;;;;:::i;:::-;27399:28;27409:4;27415:2;27419:7;27399:9;:28::i;64608:205::-;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;64704:9:::1;64699:107;64723:5;:12;64719:1;:16;64699:107;;;64757:37;64778:6;64785:5;64791:1;64785:8;;;;;;;;:::i;:::-;;;;;;;64757:20;:37::i;:::-;64737:3:::0;::::1;::::0;::::1;:::i;:::-;;;;64699:107;;60364:238:::0;60547:14;;60577:7;;60482:16;;;;-1:-1:-1;;;;;60547:14:0;;;;60588:5;;60564:20;;:10;:20;:::i;:::-;60563:30;;;;:::i;:::-;60539:55;;;;60364:238;;;;;:::o;38665:343::-;38807:7;38862:23;38879:5;38862:16;:23::i;:::-;38854:5;:31;38832:124;;;;-1:-1:-1;;;38832:124:0;;13776:2:1;38832: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;;38832:124:0;13574:407:1;38832:124:0;-1:-1:-1;;;;;;38974:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38665:343::o;62056:258::-;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;62223:3:::1;62211:8;:15;;;;62203:74;;;::::0;-1:-1:-1;;;62203:74:0;;14600:2:1;62203: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;;62203:74:0::1;14398:409:1::0;62203:74:0::1;62288:18;;:7;:18:::0;62056:258::o;61014:242::-;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;61128:1:::1;61107:11;:18;:22;61099:54;;;::::0;-1:-1:-1;;;61099:54:0;;15014:2:1;61099: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;;61099:54:0::1;14812:344:1::0;61099:54:0::1;61168:9;61164:84;61184:11;:18;61182:1;:20;61164:84;;;61247:1;61217:11;:27;61229:11;61241:1;61229:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;61217:27:0::1;-1:-1:-1::0;;;;;61217:27:0::1;;;;;;;;;;;;:31;;;;61203:3;;;;;:::i;:::-;;;;61164:84;;;;61014:242:::0;:::o;63453:285::-;56324:10;56346:1;56316:19;;;:7;:19;;;;;:27;56308:82;;;;-1:-1:-1;;;56308:82:0;;15363:2:1;56308: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;;56308:82:0;15161:401:1;56308:82:0;63527:10:::1;63502:14;63519:19:::0;;;:7:::1;:19;::::0;;;;:26:::1;;::::0;63564:10;63556:39:::1;;;::::0;-1:-1:-1;;;63556:39:0;;15769:2:1;63556: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;;63556:39:0::1;15567:341:1::0;63556:39:0::1;63606:36;::::0;63614:10:::1;::::0;63606:36;::::1;;;::::0;63635:6;;63606:36:::1;::::0;;;63635:6;63614:10;63606:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;63661:10:0::1;63682:1;63653:19:::0;;;:7:::1;:19;::::0;;;;;:26:::1;;:30:::0;;;;63699:31;::::1;::::0;::::1;::::0;63723:6;2510:25:1;;2498:2;2483:18;;2364:177;63699:31:0::1;;;;;;;;63491:247;63453:285::o:0;62628:82::-;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;62686:16:::1;62699:2;62686:12;:16::i;:::-;62628:82:::0;:::o;27506:185::-;27644:39;27661:4;27667:2;27671:7;27644:39;;;;;;;;;;;;:16;:39::i;51536:282::-;51668:41;18445:10;51687:12;18365:98;51668:41;51646:139;;;;-1:-1:-1;;;51646:139:0;;16115:2:1;51646: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;;51646:139:0;15913:412:1;51646:139:0;51796:14;51802:7;51796:5;:14::i;61486:106::-;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;61560:12:::1;:24:::0;61486:106::o;64277:319::-;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;64429:38:::1;::::0;-1:-1:-1;;;64429:38:0;;64461:4:::1;64429:38;::::0;::::1;2043:51:1::0;64385:14:0;;64355:20:::1;::::0;-1:-1:-1;;;;;64429:23:0;::::1;::::0;::::1;::::0;2016:18:1;;64429:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;64411:56;;64478:13;-1:-1:-1::0;;;;;64478:22:0::1;;64501:7;49912:6:::0;;-1:-1:-1;;;;;49912:6:0;;;;;;49839:87;64501:7:::1;64478:40;::::0;-1:-1:-1;;;;;;64478:40:0::1;::::0;;;;;;-1:-1:-1;;;;;5018:32:1;;;64478:40:0::1;::::0;::::1;5000:51:1::0;5067:18;;;5060:34;;;4973:18;;64478:40:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;64534:54:0::1;::::0;;-1:-1:-1;;;;;5018:32:1;;5000:51;;5082:2;5067:18;;5060:34;;;64554:10:0::1;::::0;64534:54:::1;::::0;4973:18:1;64534:54:0::1;;;;;;;64344:252;;64277:319:::0;:::o;39274:320::-;39394:7;39449:30;39172:10;:17;;39084:113;39449:30;39441:5;:38;39419:132;;;;-1:-1:-1;;;39419:132:0;;16971:2:1;39419: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;;39419:132:0;16769:408:1;39419:132:0;39569:10;39580:5;39569:17;;;;;;;;:::i;:::-;;;;;;;;;39562:24;;39274:320;;;:::o;61706:104::-;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;61782:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;23917:326::-:0;24034:7;24075:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24075:16:0;;24102:110;;;;-1:-1:-1;;;24102:110:0;;17384:2:1;24102: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;;24102:110:0;17182:405:1;61377:101:0;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;47604:7;;;;61437:33:::1;;61462:8;:6;:8::i;:::-;61377:101::o:0;61437:33::-:1;61449:10;:8;:10::i;56960:21::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23560:295::-;23677:7;-1:-1:-1;;;;;23724:19:0;;23702:111;;;;-1:-1:-1;;;23702:111:0;;17794:2:1;23702: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;;23702:111:0;17592:406:1;23702:111:0;-1:-1:-1;;;;;;23831:16:0;;;;;:9;:16;;;;;;;23560:295::o;50490:148::-;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;50581:6:::1;::::0;50560:40:::1;::::0;50597:1:::1;::::0;50581:6:::1;::::0;::::1;-1:-1:-1::0;;;;;50581:6:0::1;::::0;50560:40:::1;::::0;50597:1;;50560:40:::1;50611:6;:19:::0;;-1:-1:-1;;;;;;50611:19:0::1;::::0;;50490:148::o;60636:370::-;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;60761:1:::1;60739:12;:19;:23;60731:55;;;::::0;-1:-1:-1;;;60731:55:0;;15014:2:1;60731: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;;60731:55:0::1;14812:344:1::0;60731:55:0::1;60803:9;60799:190;60821:12;:19;60817:1;:23;60799:190;;;60898:1;-1:-1:-1::0;;;;;60871:29:0::1;:12;60884:1;60871:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;60871:29:0::1;::::0;60863:62:::1;;;::::0;-1:-1:-1;;;60863:62:0;;18205:2:1;60863: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;;60863:62:0::1;18003:344:1::0;60863:62:0::1;60972:5;60941:11;:28;60953:12;60966:1;60953:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;60941:28:0::1;-1:-1:-1::0;;;;;60941:28:0::1;;;;;;;;;;;;:36;;;;60842:3;;;;;:::i;:::-;;;;60799:190;;61926:116:::0;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;62008:26:::1;62021:7;62030:3;62008:12;:26::i;61818:90::-:0;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;61884:5:::1;:16:::0;61818:90::o;24479:104::-;24535:13;24568:7;24561:14;;;;;:::i;65063:363::-;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;65192:14;65160:21:::1;65218:201;65242:3;:10;65238:1;:14;65218:201;;;65274:13;-1:-1:-1::0;;;;;65274:30:0::1;;65313:4;65320:7;49912:6:::0;;-1:-1:-1;;;;;49912:6:0;;;;;;49839:87;65320:7:::1;65329:3;65333:1;65329:6;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;65274:62:::1;::::0;-1:-1:-1;;;;;;65274:62:0::1;::::0;;;;;;-1:-1:-1;;;;;18610:15:1;;;65274:62:0::1;::::0;::::1;18592:34:1::0;18662:15;;;;18642:18;;;18635:43;18694:18;;;18687:34;18527:18;;65274:62:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;65374:10;-1:-1:-1::0;;;;;65356:51:0::1;;65385:14;65400:3;65404:1;65400:6;;;;;;;;:::i;:::-;;;;;;;65356:51;;;;;;-1:-1:-1::0;;;;;5018:32:1;;;;5000:51;;5082:2;5067:18;;5060:34;4988:2;4973:18;;4826:274;65356:51:0::1;;;;;;;;65254:3:::0;::::1;::::0;::::1;:::i;:::-;;;;65218:201;;;;65149:277;65063:363:::0;;:::o;58671:828::-;47604:7;;;;47858:9;47850:38;;;;-1:-1:-1;;;47850:38:0;;;;;;;:::i;:::-;58741:14:::1;58758:13;39172:10:::0;:17;;39084:113;58758:13:::1;58741:30;;58799:1;58790:6;:10;:32;;;;;58814:8;;58804:6;:18;;58790:32;58782:67;;;::::0;-1:-1:-1;;;58782:67:0;;19279:2:1;58782:67:0::1;::::0;::::1;19261:21:1::0;19318:2;19298:18;;;19291:30;19357:25;19337:18;;;19330:53;19400:18;;58782:67:0::1;19077:347:1::0;58782:67:0::1;58897:12;;58868:21;58878:10;58868:9;:21::i;:::-;:25;::::0;58892:1:::1;58868:25;:::i;:::-;:41;;58860:81;;;::::0;-1:-1:-1;;;58860:81:0;;19764:2:1;58860:81:0::1;::::0;::::1;19746:21:1::0;19803:2;19783:18;;;19776:30;19842;19822:18;;;19815:58;19890:18;;58860:81:0::1;19562:352:1::0;58860:81:0::1;58981:6;58973:5;;:14;;;;:::i;:::-;58960:9;:27;58952:60;;;::::0;-1:-1:-1;;;58952:60:0;;20121:2:1;58952: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;;58952:60:0::1;19919:344:1::0;58952:60:0::1;59053:9;::::0;59049:1:::1;59031:15;59040:6:::0;59031;:15:::1;:::i;:::-;:19;;;;:::i;:::-;:31;59023:85;;;::::0;-1:-1:-1;;;59023:85:0;;20600:2:1;59023: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;;59023:85:0::1;20398:405:1::0;59023:85:0::1;59122:15;::::0;::::1;;59119:135;;;59168:10;59156:23;::::0;;;:11:::1;:23;::::0;;;;;:33;-1:-1:-1;59156:33:0::1;59148:106;;;::::0;-1:-1:-1;;;59148:106:0;;21010:2:1;59148: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;;59148:106:0::1;20808:425:1::0;59148:106:0::1;59290:9;59285:164;59309:6;59305:1;:10;59285:164;;;59337:24;59350:10;59337:12;:24::i;:::-;59379:15;::::0;::::1;;59376:61;;;59421:10;59409:23;::::0;;;:11:::1;:23;::::0;;;;:28;;59436:1:::1;::::0;59409:23;:28:::1;::::0;59436:1;;59409:28:::1;:::i;:::-;::::0;;;-1:-1:-1;;59376:61:0::1;59317:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59285:164;;;;59471:20;59481:9;59471;:20::i;26380:327::-:0;18445:10;-1:-1:-1;;;;;26515:24:0;;;26507:62;;;;-1:-1:-1;;;26507:62:0;;21440:2:1;26507:62:0;;;21422:21:1;21479:2;21459:18;;;21452:30;21518:27;21498:18;;;21491:55;21563:18;;26507:62:0;21238:349:1;26507:62:0;18445:10;26582:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26582:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26582:53:0;;;;;;;;;;26651:48;;339:41:1;;;26582:42:0;;18445:10;26651:48;;312:18:1;26651:48:0;;;;;;;26380:327;;:::o;27762:365::-;27951:41;18445:10;27984:7;27951:18;:41::i;:::-;27929:140;;;;-1:-1:-1;;;27929:140:0;;;;;;;:::i;:::-;28080:39;28094:4;28100:2;28104:7;28113:5;28080:13;:39::i;61264:105::-;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;61346:15:::1;::::0;;-1:-1:-1;;61327:34:0;::::1;61346:15;::::0;;::::1;61345:16;61327:34;::::0;;61264:105::o;56988:37::-;;;;;;;:::i;61600:98::-;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;61670:8:::1;:20:::0;61600:98::o;59515:196::-;59642:13;59680:23;59695:7;59680:14;:23::i;59719:526::-;59800:16;59834:18;59855:17;59865:6;59855:9;:17::i;:::-;59834:38;;59887:10;59901:1;59887:15;59883:355;;59926:16;;;59940:1;59926:16;;;;;;;;;;;-1:-1:-1;59919:23:0;59719:526;-1:-1:-1;;;59719:526:0:o;59883:355::-;59975:23;60015:10;60001:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;60001:25:0;;59975:51;;60041:13;60069:130;60093:10;60085:5;:18;60069:130;;;60149:34;60169:6;60177:5;60149:19;:34::i;:::-;60133:6;60140:5;60133:13;;;;;;;;:::i;:::-;;;;;;;;;;:50;60105:7;;;;:::i;:::-;;;;60069:130;;59883:355;59823:422;59719:526;;;:::o;63818:403::-;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;63894:21:::1;63934:10:::0;63926:39:::1;;;::::0;-1:-1:-1;;;63926:39:0;;15769:2:1;63926: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;;63926:39:0::1;15567:341:1::0;63926:39:0::1;63976:36;::::0;63984:10:::1;::::0;63976:36;::::1;;;::::0;64005:6;;63976:36:::1;::::0;;;64005:6;63984:10;63976:36;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;64027:7;64023:144;64043:7;:14:::0;64039:18:::1;::::0;::::1;;64023:144;;;64079:18;64100:7;64108:1;64100:10;;;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;;::::1;::::0;-1:-1:-1;;;;;64100:10:0::1;64125:19:::0;;:7:::1;:19:::0;;;;;64100:10;64125:26:::1;:30:::0;-1:-1:-1;64059:3:0;::::1;::::0;::::1;:::i;:::-;;;;64023:144;;;-1:-1:-1::0;64182:31:0::1;::::0;2510:25:1;;;64195:10:0::1;::::0;64182:31:::1;::::0;2498:2:1;2483:18;64182:31:0::1;2364:177:1::0;50793:281:0;49912:6;;-1:-1:-1;;;;;49912:6:0;;;;;18445:10;50059:23;50051:68;;;;-1:-1:-1;;;50051:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;50896:22:0;::::1;50874:110;;;::::0;-1:-1:-1;;;50874:110:0;;21974:2:1;50874: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;;50874:110:0::1;21772:402:1::0;50874:110:0::1;51021:6;::::0;51000:38:::1;::::0;-1:-1:-1;;;;;51000:38:0;;::::1;::::0;51021:6:::1;::::0;::::1;;::::0;51000:38:::1;::::0;;;::::1;51049:6;:17:::0;;-1:-1:-1;;;;;51049:17:0;;::::1;;;-1:-1:-1::0;;;;;;51049:17:0;;::::1;::::0;;;::::1;::::0;;50793:281::o;29674:127::-;29739:4;29763:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29763:16:0;:30;;;29674:127::o;38281:300::-;38428:4;-1:-1:-1;;;;;;38470:50:0;;-1:-1:-1;;;38470:50:0;;:103;;;38537:36;38561:11;38537:23;:36::i;33797:174::-;33872:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33872:29:0;-1:-1:-1;;;;;33872:29:0;;;;;;;;:24;;33926:23;33872:24;33926:14;:23::i;:::-;-1:-1:-1;;;;;33917:46:0;;;;;;;;;;;33797:174;;:::o;29968:452::-;30097:4;30141:16;30149:7;30141;:16::i;:::-;30119:110;;;;-1:-1:-1;;;30119:110:0;;22381:2:1;30119: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;;30119:110:0;22179:408:1;30119:110:0;30240:13;30256:23;30271:7;30256:14;:23::i;:::-;30240:39;;30309:5;-1:-1:-1;;;;;30298:16:0;:7;-1:-1:-1;;;;;30298:16:0;;:64;;;;30355:7;-1:-1:-1;;;;;30331:31:0;:20;30343:7;30331:11;:20::i;:::-;-1:-1:-1;;;;;30331:31:0;;30298:64;:113;;;-1:-1:-1;;;;;;26949:25:0;;;26920:4;26949:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30379:32;30290:122;29968:452;-1:-1:-1;;;;29968:452:0:o;33064:615::-;33237:4;-1:-1:-1;;;;;33210:31:0;:23;33225:7;33210:14;:23::i;:::-;-1:-1:-1;;;;;33210:31:0;;33188:122;;;;-1:-1:-1;;;33188:122:0;;22794:2:1;33188: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;;33188:122:0;22592:405:1;33188:122:0;-1:-1:-1;;;;;33329:16:0;;33321:65;;;;-1:-1:-1;;;33321:65:0;;23204:2:1;33321: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;;33321:65:0;23002:400:1;33321:65:0;33399:39;33420:4;33426:2;33430:7;33399:20;:39::i;:::-;33503:29;33520:1;33524:7;33503:8;:29::i;:::-;-1:-1:-1;;;;;33545:15:0;;;;;;:9;:15;;;;;:20;;33564:1;;33545:15;:20;;33564:1;;33545:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33576:13:0;;;;;;:9;:13;;;;;:18;;33593:1;;33576:13;:18;;33593:1;;33576:18;:::i;:::-;;;;-1:-1:-1;;33605:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33605:21:0;-1:-1:-1;;;;;33605:21:0;;;;;;;;;33644:27;;33605:16;;33644:27;;;;;;;33064:615;;;:::o;64825:171::-;64911:9;64906:83;64930:6;64926:1;:10;64906:83;;;64958:19;64971:5;64958:12;:19::i;:::-;64938:3;;;;:::i;:::-;;;;64906:83;;62484:136;62539:15;62557:18;:16;:18::i;:::-;:22;;62578:1;62557:22;:::i;:::-;62539:40;;62590:22;62600:2;62604:7;62590:9;:22::i;63277:138::-;63387:20;63399:7;63387:11;:20::i;48333:118::-;47604:7;;;;47858:9;47850:38;;;;-1:-1:-1;;;47850:38:0;;;;;;;:::i;:::-;48393:7:::1;:14:::0;;-1:-1:-1;;48393:14:0::1;48403:4;48393:14;::::0;;48423:20:::1;48430:12;18445:10:::0;;18365:98;48430:12:::1;48423:20;::::0;-1:-1:-1;;;;;2061:32:1;;;2043:51;;2031:2;2016:18;48423:20:0::1;;;;;;;48333:118::o:0;48592:120::-;47604:7;;;;48128:41;;;;-1:-1:-1;;;48128:41:0;;23609:2:1;48128:41:0;;;23591:21:1;23648:2;23628:18;;;23621:30;-1:-1:-1;;;23667:18:1;;;23660:50;23727:18;;48128:41:0;23407:344:1;48128:41:0;48651:7:::1;:15:::0;;-1:-1:-1;;48651:15:0::1;::::0;;48682:22:::1;18445:10:::0;48691:12:::1;18365:98:::0;45740:277;45877:16;45885:7;45877;:16::i;:::-;45855:112;;;;-1:-1:-1;;;45855:112:0;;23958:2:1;45855: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;;45855:112:0;23756:410:1;45855:112:0;45978:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;58300:357::-;58365:7;58361:287;58381:7;:14;58377:18;;;;58361:287;;;58417:18;58438:7;58446:1;58438:10;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;-1:-1:-1;;;;;58438:10:0;58481:19;;;:7;:19;;;;;;:27;58438:10;;-1:-1:-1;58481:27:0;58546:33;58573:5;58546:22;:10;58481:27;58546:14;:22::i;:::-;:26;;:33::i;:::-;-1:-1:-1;;;;;58594:19:0;;;;;;:7;:19;;;;;:26;;:42;;58523:56;;-1:-1:-1;58523:56:0;;58594:26;;:19;:42;;58523:56;;58594:42;:::i;:::-;;;;;;;;58402:246;;;58397:3;;;;;:::i;:::-;;;;58361:287;;29009:352;29166:28;29176:4;29182:2;29186:7;29166:9;:28::i;:::-;29227:48;29250:4;29256:2;29260:7;29269:5;29227:22;:48::i;:::-;29205:148;;;;-1:-1:-1;;;29205:148:0;;;;;;;:::i;45123:461::-;45241:13;45294:16;45302:7;45294;:16::i;:::-;45272:115;;;;-1:-1:-1;;;45272:115:0;;24792:2:1;45272: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;;45272:115:0;24590:413:1;45272:115:0;45400:18;45421:10;:8;:10::i;:::-;45400:31;;45442:17;45462:16;:14;:16::i;:::-;45442:36;;45541:4;45547:20;45548:7;45547:18;:20::i;:::-;45569:3;45524:49;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45510:64;;;;45123:461;;;:::o;23141:355::-;23288:4;-1:-1:-1;;;;;;23330:40:0;;-1:-1:-1;;;23330:40:0;;:105;;-1:-1:-1;;;;;;;23387:48:0;;-1:-1:-1;;;23387:48:0;23330:105;:158;;;-1:-1:-1;;;;;;;;;;21766:40:0;;;23452:36;21607:207;63032:229;47604:7;;;;47858:9;47850:38;;;;-1:-1:-1;;;47850:38:0;;;;;;;:::i;:::-;63208:45:::1;63235:4;63241:2;63245:7;63208:26;:45::i;563:775::-:0;616:7;636:13;662:11;;652:9;:21;;;;:::i;:::-;636:37;;684:12;707:14;734:9;763:5;746:14;:12;:14::i;:::-;:22;;;;:::i;:::-;734:34;-1:-1:-1;847:11:0;:20;859:7;865:1;859:5;:7;:::i;:::-;847:20;;;;;;;;;;;;871:1;847:25;843:131;;895:7;901:1;895:5;:7;:::i;:::-;888:14;;843:131;;;942:11;:20;954:7;960:1;954:5;:7;:::i;:::-;942:20;;;;;;;;;;;;935:27;;843:131;1098:14;;;;:11;:14;;;;;;:19;;1094:189;;1158:14;;;;:11;:14;;;;;:21;;;1142:1;-1:-1:-1;1142:1:0;1094:189;;;1221:14;;;;:11;:14;;;;;;;1250:21;;;;1221:14;-1:-1:-1;1094:189:0;1293:11;:13;;;:11;:13;;;:::i;:::-;;;;-1:-1:-1;1324:6:0;;563:775;-1:-1:-1;;;;;563:775:0:o;30762:110::-;30838:26;30848:2;30852:7;30838:26;;;;;;;;;;;;:9;:26::i;46246:206::-;46315:20;46327:7;46315:11;:20::i;:::-;46358:19;;;;:10;:19;;;;;46352:33;;;;;:::i;:::-;:38;;-1:-1:-1;46348:97:0;;46414:19;;;;:10;:19;;;;;46407:26;;;:::i;55072:250::-;55130:7;55154:1;55159;55154:6;55150:47;;-1:-1:-1;55184:1:0;55177:8;;55150:47;55209:9;55221:5;55225:1;55221;:5;:::i;:::-;55209:17;-1:-1:-1;55254:1:0;55245:5;55249:1;55209:17;55245:5;:::i;:::-;:10;55237:56;;;;-1:-1:-1;;;55237:56:0;;25996:2:1;55237: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;;55237:56:0;25794:397:1;55237:56:0;55313:1;55072:250;-1:-1:-1;;;55072:250:0:o;55332:132::-;55390:7;55417:39;55421:1;55424;55417:39;;;;;;;;;;;;;;;;;:3;:39::i;34536:1053::-;34691:4;-1:-1:-1;;;;;34712:13:0;;10159:20;10207:8;34708:874;;34765:175;;-1:-1:-1;;;34765:175:0;;-1:-1:-1;;;;;34765:36:0;;;;;:175;;18445:10;;34859:4;;34886:7;;34916:5;;34765:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34765:175:0;;;;;;;;-1:-1:-1;;34765:175:0;;;;;;;;;;;;:::i;:::-;;;34744:783;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35127:6;:13;35144:1;35127:18;35123:389;;35170:108;;-1:-1:-1;;;35170:108:0;;;;;;;:::i;35123:389::-;35462:6;35456:13;35447:6;35443:2;35439:15;35432:38;34744:783;-1:-1:-1;;;;;;35004:55:0;-1:-1:-1;;;35004:55:0;;-1:-1:-1;34997:62:0;;34708:874;-1:-1:-1;35566:4:0;34536:1053;;;;;;:::o;58187:100::-;58239:13;58272:7;58265:14;;;;;:::i;58065:112::-;58123:13;58156;58149:20;;;;;:::i;19022:723::-;19078:13;19299:5;19308:1;19299:10;19295:53;;-1:-1:-1;;19326:10:0;;;;;;;;;;;;-1:-1:-1;;;19326:10:0;;;;;19022:723::o;19295:53::-;19373:5;19358:12;19414:78;19421:9;;19414:78;;19447:8;;;;:::i;:::-;;-1:-1:-1;19470:10:0;;-1:-1:-1;19478:2:0;19470:10;;:::i;:::-;;;19414:78;;;19502:19;19534:6;19524:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19524:17:0;;19502:39;;19552:154;19559:10;;19552:154;;19586:11;19596:1;19586:11;;:::i;:::-;;-1:-1:-1;19655:10:0;19663:2;19655:5;:10;:::i;:::-;19642:24;;:2;:24;:::i;:::-;19629:39;;19612:6;19619;19612:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19612:56:0;;;;;;;;-1:-1:-1;19683:11:0;19692:2;19683:11;;:::i;:::-;;;19552:154;;40207:589;-1:-1:-1;;;;;40413:18:0;;40409:187;;40448:40;40480:7;41623:10;:17;;41596:24;;;;:15;:24;;;;;:44;;;41651:24;;;;;;;;;;;;41519:164;40448:40;40409:187;;;40518:2;-1:-1:-1;;;;;40510:10:0;:4;-1:-1:-1;;;;;40510:10:0;;40506:90;;40537:47;40570:4;40576:7;40537:32;:47::i;:::-;-1:-1:-1;;;;;40610:16:0;;40606:183;;40643:45;40680:7;40643:36;:45::i;40606:183::-;40716:4;-1:-1:-1;;;;;40710:10:0;:2;-1:-1:-1;;;;;40710:10:0;;40706:83;;40737:40;40765:2;40769:7;40737:27;:40::i;1346:151::-;1392:7;1453:16;1471:15;1436:51;;;;;;;;27101:19:1;;;27145:2;27136:12;;27129:28;27182:2;27173:12;;26944:247;1436:51:0;;;;;;;;;;;;;1426:62;;;;;;1418:71;;1411:78;;1346:151;:::o;31099:321::-;31229:18;31235:2;31239:7;31229:5;:18::i;:::-;31280:54;31311:1;31315:2;31319:7;31328:5;31280:22;:54::i;:::-;31258:154;;;;-1:-1:-1;;;31258:154:0;;;;;;;:::i;32367:360::-;32427:13;32443:23;32458:7;32443:14;:23::i;:::-;32427:39;;32479:48;32500:5;32515:1;32519:7;32479:20;:48::i;:::-;32568:29;32585:1;32589:7;32568:8;:29::i;:::-;-1:-1:-1;;;;;32610:16:0;;;;;;:9;:16;;;;;:21;;32630:1;;32610:16;:21;;32630:1;;32610:21;:::i;:::-;;;;-1:-1:-1;;32649:16:0;;;;:7;:16;;;;;;32642:23;;-1:-1:-1;;;;;;32642:23:0;;;32683:36;32657:7;;32649:16;-1:-1:-1;;;;;32683:36:0;;;;;32649:16;;32683:36;32416:311;32367:360;:::o;55472:278::-;55558:7;55593:12;55586:5;55578:28;;;;-1:-1:-1;;;55578:28:0;;;;;;;;:::i;:::-;-1:-1:-1;55617:9:0;55629:5;55633:1;55629;:5;:::i;:::-;55617:17;55472:278;-1:-1:-1;;;;;55472:278:0:o;42310:1002::-;42590:22;42640:1;42615:22;42632:4;42615:16;:22::i;:::-;:26;;;;:::i;:::-;42652:18;42673:26;;;:17;:26;;;;;;42590:51;;-1:-1:-1;42806:28:0;;;42802:328;;-1:-1:-1;;;;;42873:18:0;;42851:19;42873:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42924:30;;;;;;:44;;;43041:30;;:17;:30;;;;;:43;;;42802:328;-1:-1:-1;43226:26:0;;;;:17;:26;;;;;;;;43219:33;;;-1:-1:-1;;;;;43270:18:0;;;;;:12;:18;;;;;:34;;;;;;;43263:41;42310:1002::o;43607:1079::-;43885:10;:17;43860:22;;43885:21;;43905:1;;43885:21;:::i;:::-;43917:18;43938:24;;;:15;:24;;;;;;44311:10;:26;;43860:46;;-1:-1:-1;43938:24:0;;43860:46;;44311:26;;;;;;:::i;:::-;;;;;;;;;44289:48;;44375:11;44350:10;44361;44350:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44455:28;;;:15;:28;;;;;;;:41;;;44627:24;;;;;44620:31;44662:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43678:1008;;;43607:1079;:::o;41097:221::-;41182:14;41199:20;41216:2;41199:16;:20::i;:::-;-1:-1:-1;;;;;41230:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41275:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41097:221:0:o;31756:382::-;-1:-1:-1;;;;;31836:16:0;;31828:61;;;;-1:-1:-1;;;31828:61:0;;27530:2:1;31828:61:0;;;27512:21:1;;;27549:18;;;27542:30;27608:34;27588:18;;;27581:62;27660:18;;31828:61:0;27328:356:1;31828:61:0;31909:16;31917:7;31909;:16::i;:::-;31908:17;31900:58;;;;-1:-1:-1;;;31900:58:0;;27891:2:1;31900:58:0;;;27873:21:1;27930:2;27910:18;;;27903:30;27969;27949:18;;;27942:58;28017:18;;31900:58:0;27689:352:1;31900:58:0;31971:45;32000:1;32004:2;32008:7;31971:20;:45::i;:::-;-1:-1:-1;;;;;32029:13:0;;;;;;:9;:13;;;;;:18;;32046:1;;32029:13;:18;;32046:1;;32029:18;:::i;:::-;;;;-1:-1:-1;;32058:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32058:21:0;-1:-1:-1;;;;;32058:21:0;;;;;;;;32097:33;;32058:16;;;32097:33;;32058:16;;32097:33;31756: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://d52a00dcc931d254c995dabc0e30a437c4f6cc45b69f924dacce040b210af93b